|
|
|
@ -20,6 +20,7 @@ import com.glxp.api.req.inout.InspectionPDFTemplateRequest;
|
|
|
|
|
import com.glxp.api.req.purchase.FilterSupManufacturerRequest;
|
|
|
|
|
import com.glxp.api.req.purchase.purPlanPrintRequest;
|
|
|
|
|
import com.glxp.api.req.system.FilterPdfTemplateRequest;
|
|
|
|
|
import com.glxp.api.res.inout.IoOrderInvoiceResponse;
|
|
|
|
|
import com.glxp.api.res.inout.IoOrderResponse;
|
|
|
|
|
import com.glxp.api.res.system.SystemPDFTemplateRelevanceResponse;
|
|
|
|
|
import com.glxp.api.service.basic.IBasicBussinessTypeService;
|
|
|
|
@ -122,6 +123,7 @@ public class BasicOrderPrintController {
|
|
|
|
|
for (IoOrderDetailBizEntity obj : ioOrderDetailBizEntityList) {
|
|
|
|
|
//查询产品表
|
|
|
|
|
UdiProductEntity udiProductEntity = udiProductService.findByUuid(obj.getUuidFk());
|
|
|
|
|
List<IoOrderInvoiceResponse> ioOrderInvoiceResponses = ioOrderDetailBizService.selectByorderIdFk(obj.getOrderIdFk());
|
|
|
|
|
//组装数据
|
|
|
|
|
Map<String, Object> bizData = new HashMap<>();
|
|
|
|
|
bizData.put("index", i);
|
|
|
|
@ -144,6 +146,19 @@ public class BasicOrderPrintController {
|
|
|
|
|
bizData.put("manufactor", obj.getManufacturer());
|
|
|
|
|
bizData.put("zczbhhzbapzbh", obj.getCertCode() == null ? ' ' : obj.getCertCode());
|
|
|
|
|
bizData.put("ylqxzcrbarmc", udiProductEntity.getYlqxzcrbarmc() == null ? ' ' : udiProductEntity.getYlqxzcrbarmc());
|
|
|
|
|
bizData.put("cplb", udiProductEntity.getCplb() == null ? ' ' : udiProductEntity.getCplb());
|
|
|
|
|
if(ioOrderInvoiceResponses != null && ioOrderInvoiceResponses.size()>0){
|
|
|
|
|
String encode="";
|
|
|
|
|
for (IoOrderInvoiceResponse respons : ioOrderInvoiceResponses) {
|
|
|
|
|
encode+=respons.getInvoiceEncode()+",";
|
|
|
|
|
}
|
|
|
|
|
encode = encode.substring(0,encode.length()-1);
|
|
|
|
|
bizData.put("invoiceEncode", encode == null ? ' ' : encode);
|
|
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
|
|
String dateStr = sdf.format(ioOrderInvoiceResponses.get(0).getCreateTime());
|
|
|
|
|
bizData.put("createTime", dateStr == null ? ' ' : dateStr);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
list.add(bizData);
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
@ -170,7 +185,7 @@ public class BasicOrderPrintController {
|
|
|
|
|
}
|
|
|
|
|
//查询产品表
|
|
|
|
|
UdiProductEntity udiProductEntity = udiProductService.findByUuid(ioOrderDetailBizEntity.getUuidFk());
|
|
|
|
|
|
|
|
|
|
List<IoOrderInvoiceResponse> ioOrderInvoiceResponses = ioOrderDetailBizService.selectByorderIdFk(ioOrderDetailBizEntity.getOrderIdFk());
|
|
|
|
|
//组装数据
|
|
|
|
|
Map<String, Object> bizData = new HashMap<>();
|
|
|
|
|
bizData.put("index", i);
|
|
|
|
@ -193,6 +208,18 @@ public class BasicOrderPrintController {
|
|
|
|
|
bizData.put("manufactor", ioOrderDetailBizEntity.getManufacturer());
|
|
|
|
|
bizData.put("zczbhhzbapzbh", ioOrderDetailBizEntity.getCertCode() == null ? ' ' : ioOrderDetailBizEntity.getCertCode());
|
|
|
|
|
bizData.put("ylqxzcrbarmc", udiProductEntity.getYlqxzcrbarmc() == null ? ' ' : udiProductEntity.getYlqxzcrbarmc());
|
|
|
|
|
bizData.put("cplb", udiProductEntity.getCplb() == null ? ' ' : udiProductEntity.getCplb());
|
|
|
|
|
if(ioOrderInvoiceResponses != null && ioOrderInvoiceResponses.size()>0){
|
|
|
|
|
String encode="";
|
|
|
|
|
for (IoOrderInvoiceResponse respons : ioOrderInvoiceResponses) {
|
|
|
|
|
encode+=respons.getInvoiceEncode()+",";
|
|
|
|
|
}
|
|
|
|
|
encode = encode.substring(0,encode.length()-1);
|
|
|
|
|
bizData.put("invoiceEncode", encode == null ? ' ' : encode);
|
|
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
|
|
String dateStr = sdf.format(ioOrderInvoiceResponses.get(0).getCreateTime());
|
|
|
|
|
bizData.put("createTime", dateStr == null ? ' ' : dateStr);
|
|
|
|
|
}
|
|
|
|
|
list.add(bizData);
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|