|
|
@ -31,7 +31,9 @@ import com.glxp.api.entity.thrsys.*;
|
|
|
|
import com.glxp.api.req.sync.SpsSyncDataRequest;
|
|
|
|
import com.glxp.api.req.sync.SpsSyncDataRequest;
|
|
|
|
import com.glxp.api.req.sync.SyncUpLoadRequest;
|
|
|
|
import com.glxp.api.req.sync.SyncUpLoadRequest;
|
|
|
|
import com.glxp.api.res.sync.*;
|
|
|
|
import com.glxp.api.res.sync.*;
|
|
|
|
|
|
|
|
import com.glxp.api.service.auth.InvWarehouseService;
|
|
|
|
import com.glxp.api.service.basic.IBasicBusTypeChangeService;
|
|
|
|
import com.glxp.api.service.basic.IBasicBusTypeChangeService;
|
|
|
|
|
|
|
|
import com.glxp.api.service.basic.IBasicBussinessTypeService;
|
|
|
|
import com.glxp.api.service.inout.IoAddInoutService;
|
|
|
|
import com.glxp.api.service.inout.IoAddInoutService;
|
|
|
|
import com.glxp.api.service.inout.IoCheckInoutService;
|
|
|
|
import com.glxp.api.service.inout.IoCheckInoutService;
|
|
|
|
import com.glxp.api.service.inout.IoOrderService;
|
|
|
|
import com.glxp.api.service.inout.IoOrderService;
|
|
|
@ -603,6 +605,10 @@ public class SpsSyncDownloadController {
|
|
|
|
IoOrderDetailResultDao orderDetailResultDao;
|
|
|
|
IoOrderDetailResultDao orderDetailResultDao;
|
|
|
|
@Resource
|
|
|
|
@Resource
|
|
|
|
IoOrderInvoiceMapper orderInvoiceMapper;
|
|
|
|
IoOrderInvoiceMapper orderInvoiceMapper;
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
|
|
|
IBasicBussinessTypeService basicBussinessTypeService;
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
|
|
|
InvWarehouseService invWarehouseService;
|
|
|
|
|
|
|
|
|
|
|
|
//接收中继服务、UDI管理系统上传单据
|
|
|
|
//接收中继服务、UDI管理系统上传单据
|
|
|
|
@AuthRuleAnnotation("sps/sync/order/upload")
|
|
|
|
@AuthRuleAnnotation("sps/sync/order/upload")
|
|
|
@ -619,7 +625,6 @@ public class SpsSyncDownloadController {
|
|
|
|
basicDownloadService.insertDownloadStatus(basicDownloadStatusEntity);
|
|
|
|
basicDownloadService.insertDownloadStatus(basicDownloadStatusEntity);
|
|
|
|
StringBuffer remark = new StringBuffer();
|
|
|
|
StringBuffer remark = new StringBuffer();
|
|
|
|
if (CollUtil.isNotEmpty(syncDataResponse.getOrderEntities())) {
|
|
|
|
if (CollUtil.isNotEmpty(syncDataResponse.getOrderEntities())) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
List<IoOrderEntity> orderEntities = syncDataResponse.getOrderEntities();
|
|
|
|
List<IoOrderEntity> orderEntities = syncDataResponse.getOrderEntities();
|
|
|
|
for (IoOrderEntity orderEntity : orderEntities) {
|
|
|
|
for (IoOrderEntity orderEntity : orderEntities) {
|
|
|
|
orderEntity.setUpdateTime(null);
|
|
|
|
orderEntity.setUpdateTime(null);
|
|
|
@ -627,10 +632,29 @@ public class SpsSyncDownloadController {
|
|
|
|
orderEntity.setProcessStatus(ConstantStatus.ORDER_DEAL_POST);
|
|
|
|
orderEntity.setProcessStatus(ConstantStatus.ORDER_DEAL_POST);
|
|
|
|
orderEntity.setStatus(ConstantStatus.ORDER_STATUS_PROCESS);
|
|
|
|
orderEntity.setStatus(ConstantStatus.ORDER_STATUS_PROCESS);
|
|
|
|
IoOrderEntity temp = orderService.findById(orderEntity.getBillNo());
|
|
|
|
IoOrderEntity temp = orderService.findById(orderEntity.getBillNo());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (temp == null) {
|
|
|
|
if (temp == null) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 过滤使用出库单,转换成一级库出库单(条件:往来类型为客户信息,出入库类型为出库,仓库类型为入账库,是否更改库存为是
|
|
|
|
|
|
|
|
BasicBussinessTypeEntity basicBussinessTypeEntity = basicBussinessTypeService.findByAction(orderEntity.getAction());
|
|
|
|
|
|
|
|
if (basicBussinessTypeEntity.getCorpType() == ConstantStatus.CORP_TYPE_INPUT
|
|
|
|
|
|
|
|
&& basicBussinessTypeEntity.getMainAction().equals(ConstantType.TYPE_OUT)
|
|
|
|
|
|
|
|
&& basicBussinessTypeEntity.isInStock() && basicBussinessTypeEntity.getActionType() == 1) {
|
|
|
|
|
|
|
|
// orderEntity.getInvCode()
|
|
|
|
|
|
|
|
InvWarehouseEntity invWarehouseEntity = invWarehouseService.findByInvSubByCode(orderEntity.getInvCode());
|
|
|
|
|
|
|
|
InvWarehouseEntity parentInv = invWarehouseService.findOneLevel(invWarehouseEntity.getParentCode());
|
|
|
|
|
|
|
|
if (parentInv == null)
|
|
|
|
|
|
|
|
parentInv = invWarehouseEntity;
|
|
|
|
|
|
|
|
orderEntity.setInvCode(parentInv.getCode());
|
|
|
|
|
|
|
|
orderEntity.setDeptCode(parentInv.getParentId());
|
|
|
|
|
|
|
|
orderEntity.setFromCorp("科室使用出库");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
orderEntity.setId(null);
|
|
|
|
orderEntity.setId(null);
|
|
|
|
orderDao.insert(orderEntity);
|
|
|
|
orderDao.insert(orderEntity);
|
|
|
|
|
|
|
|
|
|
|
|
//更新码详情
|
|
|
|
//更新码详情
|
|
|
|
if (CollUtil.isNotEmpty(syncDataResponse.getOrderDetailCodeEntities())) {
|
|
|
|
if (CollUtil.isNotEmpty(syncDataResponse.getOrderDetailCodeEntities())) {
|
|
|
|
List<IoCodeEntity> warehouseEntityList = syncDataResponse.getCodeEntities();
|
|
|
|
List<IoCodeEntity> warehouseEntityList = syncDataResponse.getCodeEntities();
|
|
|
@ -711,9 +735,6 @@ public class SpsSyncDownloadController {
|
|
|
|
if (CollUtil.isNotEmpty(syncDataResponse.getCodeEntities()))
|
|
|
|
if (CollUtil.isNotEmpty(syncDataResponse.getCodeEntities()))
|
|
|
|
logs = logs + "单据条码信息:" + syncDataResponse.getCodeEntities().size() + "条\n";
|
|
|
|
logs = logs + "单据条码信息:" + syncDataResponse.getCodeEntities().size() + "条\n";
|
|
|
|
remark.append(logs);
|
|
|
|
remark.append(logs);
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
String fileFullPath = null;
|
|
|
|
String fileFullPath = null;
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|