|
|
@ -274,7 +274,7 @@ public class SupCertController {
|
|
|
|
supData.put("code", obj.getCode() == null ? ' ' : obj.getCode());
|
|
|
|
supData.put("code", obj.getCode() == null ? ' ' : obj.getCode());
|
|
|
|
supData.put("vaiDate", formatter.format(obj.getVailDate()));
|
|
|
|
supData.put("vaiDate", formatter.format(obj.getVailDate()));
|
|
|
|
supData.put("expireDate", formatter.format(obj.getExpireDate()));
|
|
|
|
supData.put("expireDate", formatter.format(obj.getExpireDate()));
|
|
|
|
supData.put("status", obj.getStatus() == 0 ? "启用" : "禁用");
|
|
|
|
supData.put("status", obj.getStatus() == 0 ? "有效" : "失效");
|
|
|
|
supData.put("auditStatus", getAuditStatus(obj.getAuditStatus()));
|
|
|
|
supData.put("auditStatus", getAuditStatus(obj.getAuditStatus()));
|
|
|
|
supData.put("remark", obj.getRemark() == null ? ' ' : obj.getRemark());
|
|
|
|
supData.put("remark", obj.getRemark() == null ? ' ' : obj.getRemark());
|
|
|
|
supData.put("filePath", "d:/1s/udiwms/register/file/image2/" + obj.getFilePath());
|
|
|
|
supData.put("filePath", "d:/1s/udiwms/register/file/image2/" + obj.getFilePath());
|
|
|
@ -325,6 +325,7 @@ public class SupCertController {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getRegisterStatus(String type) {
|
|
|
|
public String getRegisterStatus(String type) {
|
|
|
|
|
|
|
|
|
|
|
|
if (type.equals("1")) {
|
|
|
|
if (type.equals("1")) {
|
|
|
@ -340,7 +341,6 @@ public class SupCertController {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 打印生产企业模板单号标签
|
|
|
|
* 打印生产企业模板单号标签
|
|
|
|
*
|
|
|
|
*
|
|
|
@ -386,7 +386,69 @@ public class SupCertController {
|
|
|
|
supData.put("code", obj.getCode() == null ? ' ' : obj.getCode());
|
|
|
|
supData.put("code", obj.getCode() == null ? ' ' : obj.getCode());
|
|
|
|
supData.put("vaiDate", formatter.format(obj.getVailDate()));
|
|
|
|
supData.put("vaiDate", formatter.format(obj.getVailDate()));
|
|
|
|
supData.put("expireDate", formatter.format(obj.getExpireDate()));
|
|
|
|
supData.put("expireDate", formatter.format(obj.getExpireDate()));
|
|
|
|
supData.put("status", obj.getStatus() == 0 ? "启用" : "禁用");
|
|
|
|
supData.put("status", obj.getStatus() == 0 ? "有效" : "失效");
|
|
|
|
|
|
|
|
supData.put("auditStatus", getAuditStatus(obj.getAuditStatus()));
|
|
|
|
|
|
|
|
supData.put("remark2", obj.getRemark() == null ? ' ' : obj.getRemark());
|
|
|
|
|
|
|
|
supData.put("filePath", "d:/1s/udiwms/register/file/image2/" + obj.getFilePath());
|
|
|
|
|
|
|
|
list.add(supData);
|
|
|
|
|
|
|
|
i++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String param = JSON.toJSONString(list);
|
|
|
|
|
|
|
|
JasperUtils.jasperReport(request, response, param, systemPDFTemplateEntity.getPath(), "pdf");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 打印生产企业模板单号标签
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @param purPlanPrintRequest
|
|
|
|
|
|
|
|
* @param request
|
|
|
|
|
|
|
|
* @param response
|
|
|
|
|
|
|
|
* @throws Exception
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
|
|
|
@PostMapping("/sup/info/printSupCertProduction")
|
|
|
|
|
|
|
|
public void printSupCertProduction(@RequestBody purPlanPrintRequest purPlanPrintRequest, HttpServletRequest request, HttpServletResponse response) throws Exception {
|
|
|
|
|
|
|
|
SystemPDFTemplateEntity systemPDFTemplateEntity = systemPDFTemplateService.selectById(purPlanPrintRequest.getTemplateId());
|
|
|
|
|
|
|
|
//打印单号标签
|
|
|
|
|
|
|
|
Map<String, Object> data = new HashMap<>(1);
|
|
|
|
|
|
|
|
List<Object> list = new ArrayList<>();
|
|
|
|
|
|
|
|
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");//定义新的日期格式
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//查询配送产品信息
|
|
|
|
|
|
|
|
SupProductEntity supProductEntity = supProductService.findRegistration(purPlanPrintRequest.getId());
|
|
|
|
|
|
|
|
//查询生产企业信息
|
|
|
|
|
|
|
|
FilterSupManufacturerRequest filterSupManufacturerRequest = new FilterSupManufacturerRequest();
|
|
|
|
|
|
|
|
filterSupManufacturerRequest.setManufacturerId(supProductEntity.getManufacturerIdFk());
|
|
|
|
|
|
|
|
List<SupManufacturerEntity> supManufacturerEntityList = supManufacturerService.getCompanyByNameAndCode(filterSupManufacturerRequest);
|
|
|
|
|
|
|
|
SupManufacturerEntity supManufacturerEntity = supManufacturerEntityList.get(0);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//查询详情
|
|
|
|
|
|
|
|
List<SupCertEntity> selectSupCertList = supCertService.selectSupCertList(purPlanPrintRequest);
|
|
|
|
|
|
|
|
int i = 1;
|
|
|
|
|
|
|
|
if (selectSupCertList != null && selectSupCertList.size() > 0) {
|
|
|
|
|
|
|
|
for (SupCertEntity obj : selectSupCertList) {
|
|
|
|
|
|
|
|
//组装数据
|
|
|
|
|
|
|
|
Map<String, Object> supData = new HashMap<>();
|
|
|
|
|
|
|
|
supData.put("customerName", supManufacturerEntity.getSupName() == null ? ' ' : supManufacturerEntity.getSupName());
|
|
|
|
|
|
|
|
supData.put("manufacturerldFk", supManufacturerEntity.getCompanyName() == null ? ' ' : supManufacturerEntity.getCompanyName());
|
|
|
|
|
|
|
|
supData.put("recordProductName", supProductEntity.getRecordProductName() == null ? ' ' : supProductEntity.getRecordProductName());
|
|
|
|
|
|
|
|
supData.put("recordCode", supProductEntity.getRecordCode() == null ? ' ' : supProductEntity.getRecordCode());
|
|
|
|
|
|
|
|
supData.put("recordPeopleName", supProductEntity.getRecordPeopleName() == null ? ' ' : supProductEntity.getRecordPeopleName());
|
|
|
|
|
|
|
|
supData.put("hchzsb", supProductEntity.getHchzsb() == null ? ' ' : supProductEntity.getHchzsb());
|
|
|
|
|
|
|
|
supData.put("productType", supProductEntity.getProductType() == null ? ' ' : supProductEntity.getProductType());
|
|
|
|
|
|
|
|
supData.put("productDirectoryCode", supProductEntity.getProductDirectoryCode() == null ? ' ' : supProductEntity.getProductDirectoryCode());
|
|
|
|
|
|
|
|
supData.put("specification", supProductEntity.getSpecification() == null ? ' ' : supProductEntity.getSpecification());
|
|
|
|
|
|
|
|
supData.put("cpms", supProductEntity.getCpms() == null ? ' ' : supProductEntity.getCpms());
|
|
|
|
|
|
|
|
supData.put("remark1", supProductEntity.getRemark() == null ? ' ' : supProductEntity.getRemark());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
supData.put("index", String.valueOf(i));
|
|
|
|
|
|
|
|
supData.put("name", obj.getName() == null ? ' ' : obj.getName());
|
|
|
|
|
|
|
|
supData.put("code", obj.getCode() == null ? ' ' : obj.getCode());
|
|
|
|
|
|
|
|
supData.put("vaiDate", formatter.format(obj.getVailDate()));
|
|
|
|
|
|
|
|
supData.put("expireDate", formatter.format(obj.getExpireDate()));
|
|
|
|
|
|
|
|
supData.put("status", obj.getStatus() == 0 ? "有效" : "失效");
|
|
|
|
supData.put("auditStatus", getAuditStatus(obj.getAuditStatus()));
|
|
|
|
supData.put("auditStatus", getAuditStatus(obj.getAuditStatus()));
|
|
|
|
supData.put("remark2", obj.getRemark() == null ? ' ' : obj.getRemark());
|
|
|
|
supData.put("remark2", obj.getRemark() == null ? ' ' : obj.getRemark());
|
|
|
|
supData.put("filePath", "d:/1s/udiwms/register/file/image2/" + obj.getFilePath());
|
|
|
|
supData.put("filePath", "d:/1s/udiwms/register/file/image2/" + obj.getFilePath());
|
|
|
|