|
|
|
@ -19,10 +19,12 @@ import com.glxp.api.dao.system.ClassifyCodeDao;
|
|
|
|
|
import com.glxp.api.entity.auth.AuthAdmin;
|
|
|
|
|
import com.glxp.api.entity.basic.*;
|
|
|
|
|
import com.glxp.api.entity.system.ClassifyCodeEntity;
|
|
|
|
|
import com.glxp.api.entity.thrsys.CodeRel;
|
|
|
|
|
import com.glxp.api.entity.thrsys.ThrProductsAddDiEntity;
|
|
|
|
|
import com.glxp.api.entity.thrsys.ThrProductsEntity;
|
|
|
|
|
import com.glxp.api.entity.thrsys.ThrSystemEntity;
|
|
|
|
|
import com.glxp.api.exception.JsonException;
|
|
|
|
|
import com.glxp.api.http.ErpBasicClient;
|
|
|
|
|
import com.glxp.api.req.basic.SupplementRequest;
|
|
|
|
|
import com.glxp.api.req.basic.UdiCombineRequest;
|
|
|
|
|
import com.glxp.api.req.system.DeleteRequest;
|
|
|
|
@ -92,6 +94,8 @@ public class ThrProductsAddDiController {
|
|
|
|
|
GennerOrderUtils gennerOrderUtils;
|
|
|
|
|
@Resource
|
|
|
|
|
SystemParamConfigService systemParamConfigService;
|
|
|
|
|
@Resource
|
|
|
|
|
ErpBasicClient erpBasicClient;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询DI产品信息列表
|
|
|
|
@ -488,6 +492,24 @@ public class ThrProductsAddDiController {
|
|
|
|
|
thrProductsAdddiEntity.setCustomerId(Long.parseLong(customerId));
|
|
|
|
|
thrProductsAddDiService.insertThrProducts(thrProductsAdddiEntity);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
CodeRel codeRel = new CodeRel();
|
|
|
|
|
if(thrProductsAdddiEntity.getProductsType() == 1){
|
|
|
|
|
codeRel.setDinamecode(thrProductsAdddiEntity.getNameCode());
|
|
|
|
|
}else {
|
|
|
|
|
codeRel.setDrugcode(thrProductsAdddiEntity.getNameCode());
|
|
|
|
|
}
|
|
|
|
|
codeRel.setYbbm(thrProductsAdddiEntity.getYbbm());
|
|
|
|
|
codeRel.setSptm(thrProductsAdddiEntity.getSptm());
|
|
|
|
|
codeRel.setTyshxyh(thrProductsAdddiEntity.getTyshxydm());
|
|
|
|
|
codeRel.setUpdatetime(new Date());
|
|
|
|
|
erpBasicClient.updateCodeRelDetail(codeRel);
|
|
|
|
|
}catch (Exception e){
|
|
|
|
|
System.out.println("上传多码融合:"+e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|