back_recharge
parent
9c4b21e7ef
commit
f32826aa3e
|
@ -179,7 +179,7 @@ public class BuyGoodsNewLogic {
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
private static boolean isRmbBuy(String orderId){
|
private static boolean isRmbBuy(String orderId){
|
||||||
return !gm_modifier.equals(orderId);
|
return !gm_modifier.equals(orderId) && !test_buy_order.equals(orderId) && !support_order.equals(orderId);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -299,7 +299,7 @@ public class BuyGoodsNewLogic {
|
||||||
// 更新入库
|
// 更新入库
|
||||||
MongoUtil.getLjsdMongoTemplate().lastUpdate();
|
MongoUtil.getLjsdMongoTemplate().lastUpdate();
|
||||||
// 扶持订单不需要上报
|
// 扶持订单不需要上报
|
||||||
if(price>0 && !orderId.equals(support_order)) {
|
if(price>0 && isRmbBuy(orderId)) {
|
||||||
MessageUtil.sendIndicationMessage(session, 1, MessageTypeProto.MessageType.RECHARGE_SUCCESS_INDICATION_VALUE,
|
MessageUtil.sendIndicationMessage(session, 1, MessageTypeProto.MessageType.RECHARGE_SUCCESS_INDICATION_VALUE,
|
||||||
PlayerInfoProto.RechargeSuccessIndication.newBuilder().setOrderId(orderId).build(), true);
|
PlayerInfoProto.RechargeSuccessIndication.newBuilder().setOrderId(orderId).build(), true);
|
||||||
// 开天上报
|
// 开天上报
|
||||||
|
|
Loading…
Reference in New Issue