|
@@ -423,7 +423,11 @@ public class StoreTask {
|
|
|
public void updateOrderItem() throws ParseException {
|
|
|
List<Long> ids = itemMapper.selectOrderIdByNoErp();
|
|
|
for (Long id : ids) {
|
|
|
- fsStoreOrderService.createOmsOrder(id);
|
|
|
+ try{
|
|
|
+ fsStoreOrderService.createOmsOrder(id);
|
|
|
+ }catch (Exception e){
|
|
|
+ logger.error("推送管易失败 {}",id,e);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|