生产企业资质打印功能代码提交

zhairh
郑明梁 2 years ago
parent 7fbc7c8122
commit 2f0cf64288

@ -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");
}
} }

@ -5,7 +5,7 @@ import lombok.Data;
import java.util.List; import java.util.List;
/** /**
* *
*/ */
@Data @Data
public class purPlanPrintRequest { public class purPlanPrintRequest {
@ -25,4 +25,9 @@ public class purPlanPrintRequest {
*/ */
private String customerId; private String customerId;
/**
* id
*/
private Long id;
} }

@ -137,7 +137,9 @@
<if test="creditCode != null and creditCode != ''"> <if test="creditCode != null and creditCode != ''">
and creditCode = #{creditCode} and creditCode = #{creditCode}
</if> </if>
<if test="id != null and id != ''">
and id = #{id}
</if>
<if test="customerId != null and customerId != ''"> <if test="customerId != null and customerId != ''">
and sup_manufacturer.customerId = #{customerId} and sup_manufacturer.customerId = #{customerId}
</if> </if>

Loading…
Cancel
Save