@ -32,11 +32,14 @@ public class BillOrderCheckTask {
if(CollectionUtils.isEmpty(orderIds)){
return;
}
orderIds.forEach((p) -> {
for (String p : orderIds) {
if (p==null){
continue;
JSONObject order = orderMapper.find(p);
if(order.getIntValue("status")==3||order.getIntValue("status")==1){
billOrderMapper.updateStatusByOrderId(p,"2");
});