|
@@ -414,7 +414,10 @@ public class SupplyChainServiceImpl implements ISupplyChainService {
|
|
|
JSONObject info = eventJSon.getJSONObject("info");
|
|
|
if (!Check.isNull(info)) {
|
|
|
Long oid = info.getLong("oid");
|
|
|
- Long cpsOrderStatus = info.getLong("cpsOrderStatus");
|
|
|
+ Integer cpsOrderStatus = info.getInteger("cpsOrderStatus");
|
|
|
+ if (cpsOrderStatus == 30) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
supplyChainMapper.updateOrder(oid, cpsOrderStatus);
|
|
|
log.info("订单ID:{},状态:{} 修改成功", oid, cpsOrderStatus);
|
|
|
}
|