|
|
@ -17,10 +17,7 @@ import com.glxp.api.admin.req.info.DeleteCompanyFileRequest;
|
|
|
|
import com.glxp.api.admin.req.info.SystemPDFModuleRequest;
|
|
|
|
import com.glxp.api.admin.req.info.SystemPDFModuleRequest;
|
|
|
|
import com.glxp.api.admin.req.inventory.InvCountOrderPrintRequest;
|
|
|
|
import com.glxp.api.admin.req.inventory.InvCountOrderPrintRequest;
|
|
|
|
import com.glxp.api.admin.req.itextpdf.InspectionPDFTemplateRequest;
|
|
|
|
import com.glxp.api.admin.req.itextpdf.InspectionPDFTemplateRequest;
|
|
|
|
import com.glxp.api.admin.req.purchase.FilterSupCertRequest;
|
|
|
|
import com.glxp.api.admin.req.purchase.*;
|
|
|
|
import com.glxp.api.admin.req.purchase.PostSelCertRequest;
|
|
|
|
|
|
|
|
import com.glxp.api.admin.req.purchase.PostSupCertRequest;
|
|
|
|
|
|
|
|
import com.glxp.api.admin.req.purchase.purPlanPrintRequest;
|
|
|
|
|
|
|
|
import com.glxp.api.admin.res.PageSimpleResponse;
|
|
|
|
import com.glxp.api.admin.res.PageSimpleResponse;
|
|
|
|
import com.glxp.api.admin.res.purchase.SupProductResponse;
|
|
|
|
import com.glxp.api.admin.res.purchase.SupProductResponse;
|
|
|
|
import com.glxp.api.admin.service.auth.AuthAdminService;
|
|
|
|
import com.glxp.api.admin.service.auth.AuthAdminService;
|
|
|
@ -266,7 +263,7 @@ public class SupCertController {
|
|
|
|
Map<String, Object> supData = new HashMap<>();
|
|
|
|
Map<String, Object> supData = new HashMap<>();
|
|
|
|
supData.put("companyName", supCompanyEntity.getCompanyName() == null ? ' ' : supCompanyEntity.getCompanyName());
|
|
|
|
supData.put("companyName", supCompanyEntity.getCompanyName() == null ? ' ' : supCompanyEntity.getCompanyName());
|
|
|
|
supData.put("creditNum", supCompanyEntity.getCreditNum() == null ? ' ' : supCompanyEntity.getCreditNum());
|
|
|
|
supData.put("creditNum", supCompanyEntity.getCreditNum() == null ? ' ' : supCompanyEntity.getCreditNum());
|
|
|
|
supData.put("classes",supCompanyEntity.getClasses()==null ? ' ' :supCompanyEntity.getClasses());
|
|
|
|
supData.put("classes", supCompanyEntity.getClasses().equals(1) ? "医院" : "经营企业");
|
|
|
|
supData.put("area", supCompanyEntity.getArea() == null ? ' ' : supCompanyEntity.getArea());
|
|
|
|
supData.put("area", supCompanyEntity.getArea() == null ? ' ' : supCompanyEntity.getArea());
|
|
|
|
supData.put("contacts", supCompanyEntity.getContacts() == null ? ' ' : supCompanyEntity.getContacts());
|
|
|
|
supData.put("contacts", supCompanyEntity.getContacts() == null ? ' ' : supCompanyEntity.getContacts());
|
|
|
|
supData.put("detailAddr", supCompanyEntity.getDetailAddr() == null ? ' ' : supCompanyEntity.getDetailAddr());
|
|
|
|
supData.put("detailAddr", supCompanyEntity.getDetailAddr() == null ? ' ' : supCompanyEntity.getDetailAddr());
|
|
|
@ -328,4 +325,78 @@ public class SupCertController {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getRegisterStatus(String type) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (type.equals("1")) {
|
|
|
|
|
|
|
|
return "续存(在营,开业,在册)";
|
|
|
|
|
|
|
|
} else if (type.equals("2")) {
|
|
|
|
|
|
|
|
return "吊销";
|
|
|
|
|
|
|
|
} else if (type.equals("3")) {
|
|
|
|
|
|
|
|
return "注销";
|
|
|
|
|
|
|
|
} else if (type.equals("4")) {
|
|
|
|
|
|
|
|
return "迁出";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return "";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 打印生产企业模板单号标签
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @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");//定义新的日期格式
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
FilterSupManufacturerRequest filterSupManufacturerRequest=new FilterSupManufacturerRequest();
|
|
|
|
|
|
|
|
filterSupManufacturerRequest.setId(purPlanPrintRequest.getId());
|
|
|
|
|
|
|
|
//查询生产企业信息
|
|
|
|
|
|
|
|
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("companyName", supManufacturerEntity.getCompanyName() == null ? ' ' : supManufacturerEntity.getCompanyName());
|
|
|
|
|
|
|
|
supData.put("companyType", supManufacturerEntity.getCompanyType().equals(1) ? "境内企业" : "境外企业");
|
|
|
|
|
|
|
|
supData.put("creditCode", supManufacturerEntity.getCreditCode() == null ? ' ' : supManufacturerEntity.getCreditCode());
|
|
|
|
|
|
|
|
supData.put("placeArea", supManufacturerEntity.getPlaceArea() == null ? ' ' : supManufacturerEntity.getPlaceArea());
|
|
|
|
|
|
|
|
supData.put("productionArea", supManufacturerEntity.getProductionArea() == null ? ' ' : supManufacturerEntity.getProductionArea());
|
|
|
|
|
|
|
|
supData.put("registerStatus", getRegisterStatus(supManufacturerEntity.getRegisterStatus()));
|
|
|
|
|
|
|
|
supData.put("placeAddress", supManufacturerEntity.getPlaceAddress() == null ? ' ' : supManufacturerEntity.getPlaceAddress());
|
|
|
|
|
|
|
|
supData.put("productionAddress", supManufacturerEntity.getProductionAddress() == null ? ' ' : supManufacturerEntity.getProductionAddress());
|
|
|
|
|
|
|
|
supData.put("remark1", supManufacturerEntity.getRemark() == null ? ' ' : supManufacturerEntity.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("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");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|