|
|
|
@ -39,6 +39,7 @@ import com.glxp.mipsdl.entity.ctqyy.PriceClassEntity;
|
|
|
|
|
import com.glxp.mipsdl.entity.ctqyy.ThrHslbEntity;
|
|
|
|
|
import com.glxp.mipsdl.entity.inout.*;
|
|
|
|
|
import com.glxp.mipsdl.entity.system.SysParamConfigEntity;
|
|
|
|
|
import com.glxp.mipsdl.entity.thrsys.ThrCorpEntity;
|
|
|
|
|
import com.glxp.mipsdl.entity.thrsys.ThrInvWarehouseEntity;
|
|
|
|
|
import com.glxp.mipsdl.entity.thrsys.ThrProductsEntity;
|
|
|
|
|
import com.glxp.mipsdl.entity.thrsys.ThrSystemBusApiEntity;
|
|
|
|
@ -553,7 +554,7 @@ public class CtqyyClient extends CommonHttpClient {
|
|
|
|
|
//查询业务单据详情
|
|
|
|
|
List<IoOrderDetailBizEntity> detailBizEntities = orderDetailBizDao.selectList(new QueryWrapper<IoOrderDetailBizEntity>().eq("orderIdFk", orderEntity.getBillNo()));
|
|
|
|
|
setOrderDetailList(ioCodeEntities, items, detailBizEntities);
|
|
|
|
|
zaxzyyOrderRequest.setItems(items);
|
|
|
|
|
zaxzyyOrderRequest.setItem(items);
|
|
|
|
|
if (CollUtil.isEmpty(items)) {
|
|
|
|
|
log.error("\"产品信息对照异常,无法上传\"");
|
|
|
|
|
return ResultVOUtils.error(500, "产品信息对照异常,无法上传");
|
|
|
|
@ -601,7 +602,7 @@ public class CtqyyClient extends CommonHttpClient {
|
|
|
|
|
int index = 1;
|
|
|
|
|
if (splitMap.size() > 1) {
|
|
|
|
|
for (List<UdiwmsOrderDetailRequest> splitItems : splitMap.values()) {
|
|
|
|
|
zaxzyyOrderRequest.setItems(splitItems);
|
|
|
|
|
zaxzyyOrderRequest.setItem(splitItems);
|
|
|
|
|
zaZyRequest.setMsgHeader(getMsgHeader("saveMasterialInput"));
|
|
|
|
|
zaZyRequest.setMsgBody(JSONUtil.toJsonStr(zaxzyyOrderRequest));
|
|
|
|
|
orderEntity.setBillNo(orderEntity.getBillNo() + "-" + index);
|
|
|
|
@ -809,7 +810,11 @@ public class CtqyyClient extends CommonHttpClient {
|
|
|
|
|
item.setManufactory(basicProducts.getManufactory()); //生产厂家
|
|
|
|
|
item.setMeasname(basicProducts.getMeasname()); //计量单位
|
|
|
|
|
item.setAllowNoBatch(IntUtil.value(basicProducts.getAllowNoBatch())); //是否允许无批次号
|
|
|
|
|
// item.setManufactoryCode(thrProductsEntity.getManufactoryCode());
|
|
|
|
|
if (StrUtil.isNotEmpty(item.getManufactory())) {
|
|
|
|
|
ThrCorpEntity thrCorpEntity = thrCorpService.getThrCorpByName(item.getManufactory());
|
|
|
|
|
if (thrCorpEntity != null)
|
|
|
|
|
item.setManufactoryCode(thrCorpEntity.getUnitId());
|
|
|
|
|
}
|
|
|
|
|
item.setSupCode(thrProductsEntity.getSupCode());
|
|
|
|
|
item.setCplb(thrProductsEntity.getFlbm());
|
|
|
|
|
item.setHslb(thrProductsEntity.getCplb());
|
|
|
|
@ -925,13 +930,17 @@ public class CtqyyClient extends CommonHttpClient {
|
|
|
|
|
udiwmsPreInOrderRequest.setActor(authUser.getEmployeeName());
|
|
|
|
|
}
|
|
|
|
|
List<UdiwmsPreInOrderRequest.ItemDTO> itemDTOS = new ArrayList<>();
|
|
|
|
|
if (CollUtil.isNotEmpty(udiwmsOrderRequest.getItems())) {
|
|
|
|
|
for (UdiwmsOrderDetailRequest udiwmsOrderDetail : udiwmsOrderRequest.getItems()) {
|
|
|
|
|
if (CollUtil.isNotEmpty(udiwmsOrderRequest.getItem())) {
|
|
|
|
|
for (UdiwmsOrderDetailRequest udiwmsOrderDetail : udiwmsOrderRequest.getItem()) {
|
|
|
|
|
if (CollUtil.isNotEmpty(udiwmsOrderDetail.getCodeList())) {
|
|
|
|
|
for (UdiwmsOrderDetailRequest.CodeDetailEntity codeDetaiEntity : udiwmsOrderDetail.getCodeList()) {
|
|
|
|
|
UdiwmsPreInOrderRequest.ItemDTO itemDTO = new UdiwmsPreInOrderRequest.ItemDTO();
|
|
|
|
|
BeanUtils.copyProperties(udiwmsOrderDetail, itemDTO);
|
|
|
|
|
|
|
|
|
|
if (StrUtil.isNotEmpty(itemDTO.getManufactory())) {
|
|
|
|
|
ThrCorpEntity thrCorpEntity = thrCorpService.getThrCorpByName(itemDTO.getManufactory());
|
|
|
|
|
if (thrCorpEntity != null)
|
|
|
|
|
itemDTO.setManufactoryCode(thrCorpEntity.getUnitId());
|
|
|
|
|
}
|
|
|
|
|
String code = codeDetaiEntity.getCode();
|
|
|
|
|
if (code.contains("\u001D")) {
|
|
|
|
|
code = code.replace("\u001D", "zysoft");
|
|
|
|
|