| | |
| | | package com.yuanchu.mom.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.mom.dto.InsOrderPlanDTO; |
| | | import com.yuanchu.mom.dto.ReportPageDto; |
| | | import com.yuanchu.mom.pojo.InsReport; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.mom.dto.InsOrderStateDto; |
| | | import com.yuanchu.mom.dto.InsReportDto; |
| | | import com.yuanchu.mom.dto.ReportPageDto; |
| | | import com.yuanchu.mom.pojo.InsOrderState; |
| | | import com.yuanchu.mom.pojo.InsReport; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.io.IOException; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | |
| | | Map<String,Object> pageInsReport(Page page, ReportPageDto reportPageDto); |
| | | |
| | | String wordToHtml(String path); |
| | | void wordToPdf(String path,String sealUrl); |
| | | |
| | | int inReport(String url, Integer id); |
| | | |
| | | int upReportUrl(Integer id); |
| | | |
| | | //提交 |
| | | int writeReport(Integer id); |
| | | |
| | | //审核 |
| | | int examineReport(Integer id, Integer isExamine, String examineTell); |
| | | |
| | | //批准 |
| | | int ratifyReport(Integer id, Integer isRatify, String ratifyTell,String sealUrl); |
| | | |
| | | int wordInsertUrl(Map<String, Object> map, String url); |
| | | |
| | | String downAll(String ids); |
| | | |
| | | int upAll(MultipartFile file) throws IOException; |
| | | |
| | | //是否生成总报告 |
| | | int isReport(InsReportDto insReportDto); |
| | | |
| | | //查出该订单下每个样品下每个站点下的检验次数 |
| | | List<InsOrderStateDto> getInsOrderStateCount(Integer id); |
| | | } |