|
|
|
@ -504,12 +504,15 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (StatisticsOrderInfoEntity orderInfoEntity : orderInfoEntities) { |
|
|
|
|
if (orderInfoEntity.getTypeService() != null && orderInfoEntity.getTypeService() != 2) { |
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
Integer syncFeeStatus = orderInfoEntity.getSyncFeeStatus(); |
|
|
|
|
Long orderId = orderInfoEntity.getId(); |
|
|
|
|
String orderCode = orderInfoEntity.getOrderCode(); |
|
|
|
|
if(syncFeeStatus == 0){ |
|
|
|
|
log.warn("############createReconciliationOrder: 订单还未同步数据 orderId={}",orderId); |
|
|
|
|
return R.fail(405,"订单["+orderCode+"]还未同步数据"); |
|
|
|
|
log.warn("############createReconciliationOrder: 订单还未计算价格的数据 orderId={}",orderId); |
|
|
|
|
return R.fail(405,"订单["+orderCode+"]未计算价格的数据"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|