|
|
|
@ -1294,7 +1294,6 @@ public class HeartService {
|
|
|
|
|
if (CollUtil.isNotEmpty(syncDataResponse.getDeptUserEntities()))
|
|
|
|
|
logs = logs + "部门用户信息:" + syncDataResponse.getDeptUserEntities().size() + "条\n";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (CollUtil.isNotEmpty(syncDataResponse.getInvSpaces()))
|
|
|
|
|
logs = logs + "货位信息:" + syncDataResponse.getInvSpaces().size() + "条\n";
|
|
|
|
|
|
|
|
|
@ -1341,10 +1340,6 @@ public class HeartService {
|
|
|
|
|
for (IoOrderEntity orderEntity : orderEntities) {
|
|
|
|
|
SyncDataBustypeEntity syncDataBustypeEntity = syncDataBustypeService.findByAction(orderEntity.getAction(), 2);
|
|
|
|
|
orderEntity.setUpdateTime(null);
|
|
|
|
|
orderEntity.setFromType(ConstantStatus.FROM_UDISP);
|
|
|
|
|
orderEntity.setProcessStatus(ConstantStatus.ORDER_DEAL_POST);
|
|
|
|
|
orderEntity.setOrderType(ConstantStatus.ORDER_TYPE_SCAN);
|
|
|
|
|
orderEntity.setStatus(ConstantStatus.ORDER_STATUS_PROCESS);
|
|
|
|
|
if (syncDataBustypeEntity != null) {
|
|
|
|
|
if (syncDataBustypeEntity.getSyncStatus() != null && syncDataBustypeEntity.getSyncStatus().compareTo(1) == 0) {
|
|
|
|
|
orderEntity.setProcessStatus(ConstantStatus.ORDER_DEAL_DRAFT);
|
|
|
|
@ -1356,6 +1351,10 @@ public class HeartService {
|
|
|
|
|
}
|
|
|
|
|
IoOrderEntity temp = orderService.findByBillNo(orderEntity.getBillNo());
|
|
|
|
|
if (temp == null) {
|
|
|
|
|
orderEntity.setFromType(ConstantStatus.FROM_UDISP);
|
|
|
|
|
orderEntity.setProcessStatus(ConstantStatus.ORDER_DEAL_POST);
|
|
|
|
|
orderEntity.setOrderType(ConstantStatus.ORDER_TYPE_SCAN);
|
|
|
|
|
orderEntity.setStatus(ConstantStatus.ORDER_STATUS_PROCESS);
|
|
|
|
|
orderEntity.setId(null);
|
|
|
|
|
orderService.insertOrder(orderEntity);
|
|
|
|
|
insetOrderDb(syncDataResponse, orderEntity);
|
|
|
|
|