|
|
|
@ -123,17 +123,46 @@ public class SubmitOrderUtil {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
item.setProductName(thrProductsEntity.getName()); //产品名称
|
|
|
|
|
item.setBindRlFk(detailBizEntity.getBindRlFk());
|
|
|
|
|
// item.setBindRlFk(detailBizEntity.getBindRlFk());
|
|
|
|
|
item.setStandard(detailBizEntity.getSpec()); //规格型号
|
|
|
|
|
item.setBillNo(detailBizEntity.getOrderIdFk()); //单据号
|
|
|
|
|
item.setRegisterNo(detailBizEntity.getCertCode()); //注册/备案证号
|
|
|
|
|
item.setManufactory(basicProducts.getManufactory()); //生产厂家
|
|
|
|
|
item.setMeasname(basicProducts.getMeasname()); //计量单位
|
|
|
|
|
item.setAllowNoBatch(IntUtil.value(basicProducts.getAllowNoBatch())); //是否允许无批次号
|
|
|
|
|
item.setManufactoryCode(thrProductsEntity.getManufactoryCode());
|
|
|
|
|
item.setSupCode(thrProductsEntity.getSupCode());
|
|
|
|
|
item.setCplb(thrProductsEntity.getFlbm());
|
|
|
|
|
item.setHslb(thrProductsEntity.getCplb());
|
|
|
|
|
if (StrUtil.isEmpty(detailBizEntity.getRemark())){
|
|
|
|
|
item.setRemark("");
|
|
|
|
|
}else {
|
|
|
|
|
item.setRemark(detailBizEntity.getRemark());
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isEmpty(detailBizEntity.getRemark1())){
|
|
|
|
|
item.setRemark1("");
|
|
|
|
|
}else {
|
|
|
|
|
item.setRemark1(detailBizEntity.getRemark1());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (StrUtil.isEmpty(detailBizEntity.getRemark2())){
|
|
|
|
|
item.setRemark2("");
|
|
|
|
|
}else {
|
|
|
|
|
item.setRemark2(detailBizEntity.getRemark2());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (StrUtil.isEmpty(detailBizEntity.getRemark3())){
|
|
|
|
|
item.setRemark3("");
|
|
|
|
|
}else {
|
|
|
|
|
item.setRemark3(detailBizEntity.getRemark3());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (StrUtil.isEmpty(basicProducts.getYbbm())){
|
|
|
|
|
item.setYbbm("");
|
|
|
|
|
}else {
|
|
|
|
|
item.setYbbm(basicProducts.getYbbm());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// item.setAllowNoBatch(IntUtil.value(basicProducts.getAllowNoBatch())); //是否允许无批次号
|
|
|
|
|
// item.setManufactoryCode(thrProductsEntity.getManufactoryCode());
|
|
|
|
|
// item.setSupCode(thrProductsEntity.getSupCode());
|
|
|
|
|
// item.setCplb(thrProductsEntity.getFlbm());
|
|
|
|
|
// item.setHslb(thrProductsEntity.getCplb());
|
|
|
|
|
item.setCount(detailBizEntity.getCount());
|
|
|
|
|
return item;
|
|
|
|
|
}
|
|
|
|
|