|
|
|
@ -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.inventory.InvCountOrderPrintRequest;
|
|
|
|
|
import com.glxp.api.admin.req.itextpdf.InspectionPDFTemplateRequest;
|
|
|
|
|
import com.glxp.api.admin.req.purchase.FilterSupCertRequest;
|
|
|
|
|
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.req.purchase.*;
|
|
|
|
|
import com.glxp.api.admin.res.PageSimpleResponse;
|
|
|
|
|
import com.glxp.api.admin.res.purchase.SupProductResponse;
|
|
|
|
|
import com.glxp.api.admin.service.auth.AuthAdminService;
|
|
|
|
@ -251,42 +248,42 @@ public class SupCertController {
|
|
|
|
|
SystemPDFTemplateEntity systemPDFTemplateEntity = systemPDFTemplateService.selectById(purPlanPrintRequest.getTemplateId());
|
|
|
|
|
//打印单号标签
|
|
|
|
|
Map<String, Object> data = new HashMap<>(1);
|
|
|
|
|
List<Object> list=new ArrayList<>();
|
|
|
|
|
List<Object> list = new ArrayList<>();
|
|
|
|
|
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");//定义新的日期格式
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//查询配送企业信息
|
|
|
|
|
SupCompanyEntity supCompanyEntity=supCompanyService.findCompany(purPlanPrintRequest.getCustomerId());
|
|
|
|
|
SupCompanyEntity supCompanyEntity = supCompanyService.findCompany(purPlanPrintRequest.getCustomerId());
|
|
|
|
|
//查询详情
|
|
|
|
|
List<SupCertEntity> selectSupCertList=supCertService.selectSupCertList(purPlanPrintRequest);
|
|
|
|
|
int i=1;
|
|
|
|
|
if(selectSupCertList!=null && selectSupCertList.size()>0){
|
|
|
|
|
for(SupCertEntity obj:selectSupCertList){
|
|
|
|
|
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("companyName",supCompanyEntity.getCompanyName()==null ? ' ' :supCompanyEntity.getCompanyName());
|
|
|
|
|
supData.put("creditNum",supCompanyEntity.getCreditNum()==null ? ' ' :supCompanyEntity.getCreditNum());
|
|
|
|
|
supData.put("classes",supCompanyEntity.getClasses()==null ? ' ' :supCompanyEntity.getClasses());
|
|
|
|
|
supData.put("area",supCompanyEntity.getArea()==null ? ' ' :supCompanyEntity.getArea());
|
|
|
|
|
supData.put("contacts",supCompanyEntity.getContacts()==null ? ' ' :supCompanyEntity.getContacts());
|
|
|
|
|
supData.put("detailAddr",supCompanyEntity.getDetailAddr()==null ? ' ' :supCompanyEntity.getDetailAddr());
|
|
|
|
|
supData.put("mobile",supCompanyEntity.getMobile()==null ? ' ' :supCompanyEntity.getMobile());
|
|
|
|
|
supData.put("email",supCompanyEntity.getEmail()==null ? ' ' :supCompanyEntity.getEmail());
|
|
|
|
|
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("remark",obj.getRemark()==null ? ' ' :obj.getRemark());
|
|
|
|
|
supData.put("filePath","d:/1s/udiwms/register/file/image2/" + obj.getFilePath());
|
|
|
|
|
Map<String, Object> supData = new HashMap<>();
|
|
|
|
|
supData.put("companyName", supCompanyEntity.getCompanyName() == null ? ' ' : supCompanyEntity.getCompanyName());
|
|
|
|
|
supData.put("creditNum", supCompanyEntity.getCreditNum() == null ? ' ' : supCompanyEntity.getCreditNum());
|
|
|
|
|
supData.put("classes", supCompanyEntity.getClasses().equals(1) ? "医院" : "经营企业");
|
|
|
|
|
supData.put("area", supCompanyEntity.getArea() == null ? ' ' : supCompanyEntity.getArea());
|
|
|
|
|
supData.put("contacts", supCompanyEntity.getContacts() == null ? ' ' : supCompanyEntity.getContacts());
|
|
|
|
|
supData.put("detailAddr", supCompanyEntity.getDetailAddr() == null ? ' ' : supCompanyEntity.getDetailAddr());
|
|
|
|
|
supData.put("mobile", supCompanyEntity.getMobile() == null ? ' ' : supCompanyEntity.getMobile());
|
|
|
|
|
supData.put("email", supCompanyEntity.getEmail() == null ? ' ' : supCompanyEntity.getEmail());
|
|
|
|
|
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("remark", 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);
|
|
|
|
|
String param = JSON.toJSONString(list);
|
|
|
|
|
JasperUtils.jasperReport(request, response, param, systemPDFTemplateEntity.getPath(), "pdf");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -300,32 +297,106 @@ public class SupCertController {
|
|
|
|
|
@PostMapping("/sup/info/filterCompanyCertIdList")
|
|
|
|
|
public BaseResponse filterCompanyCertIdList(@RequestBody FilterSupCertRequest filterSupCertRequest) {
|
|
|
|
|
|
|
|
|
|
if(StrUtil.isNotEmpty(filterSupCertRequest.getCustomerId()) && filterSupCertRequest.getType()!=null){
|
|
|
|
|
List<SupCertEntity> supCertEntityList=supCertService.filterCompanyCert(filterSupCertRequest);
|
|
|
|
|
List<Integer> idsList=supCertEntityList .stream().map(SupCertEntity::getId).distinct().collect(Collectors.toList());
|
|
|
|
|
return ResultVOUtils.success(idsList);
|
|
|
|
|
if (StrUtil.isNotEmpty(filterSupCertRequest.getCustomerId()) && filterSupCertRequest.getType() != null) {
|
|
|
|
|
List<SupCertEntity> supCertEntityList = supCertService.filterCompanyCert(filterSupCertRequest);
|
|
|
|
|
List<Integer> idsList = supCertEntityList.stream().map(SupCertEntity::getId).distinct().collect(Collectors.toList());
|
|
|
|
|
return ResultVOUtils.success(idsList);
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.error(999,"参数错误");
|
|
|
|
|
return ResultVOUtils.error(999, "参数错误");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getAuditStatus(int type){
|
|
|
|
|
public String getAuditStatus(int type) {
|
|
|
|
|
|
|
|
|
|
if(type==0){
|
|
|
|
|
if (type == 0) {
|
|
|
|
|
return "草稿";
|
|
|
|
|
}else if(type==1){
|
|
|
|
|
} else if (type == 1) {
|
|
|
|
|
return "审核通过";
|
|
|
|
|
}else if(type==2){
|
|
|
|
|
} else if (type == 2) {
|
|
|
|
|
return "审核不通过";
|
|
|
|
|
}else if(type==3){
|
|
|
|
|
} else if (type == 3) {
|
|
|
|
|
return "申请变更";
|
|
|
|
|
}else if(type==4){
|
|
|
|
|
} else if (type == 4) {
|
|
|
|
|
return "申请变更通过";
|
|
|
|
|
}else if(type==5){
|
|
|
|
|
} else if (type == 5) {
|
|
|
|
|
return "申请变更不通过";
|
|
|
|
|
}else if(type==6){
|
|
|
|
|
} else if (type == 6) {
|
|
|
|
|
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");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|