|
|
|
@ -645,18 +645,21 @@ public class SpsSyncDownloadController {
|
|
|
|
|
orderEntity.setFromType(ConstantStatus.FROM_UDISP);
|
|
|
|
|
orderEntity.setProcessStatus(ConstantStatus.ORDER_DEAL_POST);
|
|
|
|
|
orderEntity.setStatus(ConstantStatus.ORDER_STATUS_PROCESS);
|
|
|
|
|
if (syncDataBustypeEntity != null) {
|
|
|
|
|
if (IntUtil.value(syncDataBustypeEntity.getSyncStatus()) == 1) {
|
|
|
|
|
orderEntity.setProcessStatus(ConstantStatus.ORDER_DEAL_DRAFT);
|
|
|
|
|
orderEntity.setStatus(ConstantStatus.ORDER_STATUS_TEMP_SAVE);
|
|
|
|
|
}
|
|
|
|
|
if (syncDataBustypeEntity.isSyncChange()) {
|
|
|
|
|
orderEntity.setOutChangeEnable(syncDataBustypeEntity.isSyncChange());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IoOrderEntity temp = orderService.findByBillNo(orderEntity.getBillNo());
|
|
|
|
|
if (temp == null) {
|
|
|
|
|
|
|
|
|
|
if (syncDataBustypeEntity != null) {
|
|
|
|
|
if (IntUtil.value(syncDataBustypeEntity.getSyncStatus()) == 1) {
|
|
|
|
|
orderEntity.setProcessStatus(ConstantStatus.ORDER_DEAL_DRAFT);
|
|
|
|
|
orderEntity.setStatus(ConstantStatus.ORDER_STATUS_TEMP_SAVE);
|
|
|
|
|
}
|
|
|
|
|
// 同步单据设置需要自动补单
|
|
|
|
|
if (syncDataBustypeEntity.isSyncChange()) {
|
|
|
|
|
orderEntity.setOutChangeEnable(syncDataBustypeEntity.isSyncChange());
|
|
|
|
|
// 平衡补单(只有补单单号为空才会补单)
|
|
|
|
|
orderEntity.setSupplementNo(null);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//过滤使用出库单,转换成一级库出库单(条件:往来类型为客户信息,出入库类型为出库,仓库类型为入账库,是否更改库存为是
|
|
|
|
|
BasicBussinessTypeEntity basicBussinessTypeEntity = basicBussinessTypeService.findByAction(orderEntity.getAction());
|
|
|
|
|
if (basicBussinessTypeEntity.getCorpType() == ConstantStatus.CORP_TYPE_INPUT
|
|
|
|
@ -746,6 +749,29 @@ public class SpsSyncDownloadController {
|
|
|
|
|
ioCheckInoutService.check(orderEntity.getBillNo());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// 更新业务详情
|
|
|
|
|
if (orderEntity.getCheckStatus() != null)
|
|
|
|
|
orderService.update(orderEntity);
|
|
|
|
|
//更新业务详情
|
|
|
|
|
if (CollUtil.isNotEmpty(syncDataResponse.getOrderDetailBizEntities())) {
|
|
|
|
|
List<IoOrderDetailBizEntity> orderDetailBizEntities = syncDataResponse.getOrderDetailBizEntities();
|
|
|
|
|
for (IoOrderDetailBizEntity bizEntity : orderDetailBizEntities) {
|
|
|
|
|
if (bizEntity.getOrderIdFk().equals(orderEntity.getBillNo())) {
|
|
|
|
|
orderDetailBizDao.insertOrUpdate(bizEntity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//更新码详情
|
|
|
|
|
if (CollUtil.isNotEmpty(syncDataResponse.getOrderDetailCodeEntities())) {
|
|
|
|
|
List<IoOrderDetailCodeEntity> orderDetailCodeEntities = syncDataResponse.getOrderDetailCodeEntities();
|
|
|
|
|
for (IoOrderDetailCodeEntity codeEntity : orderDetailCodeEntities) {
|
|
|
|
|
if (codeEntity.getOrderIdFk().equals(orderEntity.getBillNo())) {
|
|
|
|
|
orderDetailCodeDao.insertOrUpdate(codeEntity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|