20250429 更新

1.除去检出结果没有用的接口
This commit is contained in:
2025-04-29 09:41:13 +08:00
parent a7763fbc2b
commit c55ad21ea1
2 changed files with 1 additions and 14 deletions

View File

@@ -73,19 +73,6 @@ public class EntrustMaterialCheckoutResultController {
return R.ok(voiPage);
}
@ApiOperation("导出检材检出结果的excel表格")
@PostMapping("/exportExcel")
public void exportExcel(@RequestBody List<String> entrustIds, HttpServletResponse response) {
if (CollUtil.isEmpty(entrustIds)) {
throw new CheckedException("请选择要导出的委托检出结果信息!");
}
try {
entrustMaterialCheckoutResultService.exportExcel(entrustIds, response);
} catch (IOException e) {
throw new CheckedException("导出excel失败");
}
}
@ApiOperation("查询所有检出检材的毒品种类清单,并按名称进行排序")
@GetMapping("/getResultType")
public R getResultType(Integer year, String orgId) {

View File

@@ -7,7 +7,7 @@ import digital.laboratory.platform.entrustment.enums.EntrustStatusConstants;
* 流程映射定义
*/
public class ProcessFlowMapper {
public static int getNextStatus(int currentStatus, int opCode) {
public static int getNextStatus(int currentStatus, int opCode) {
int processFlowMapper[][] = {
{EntrustStatusConstants.ENTRUST_STATUS_CREATED.getStatus(), 1, EntrustStatusConstants.ENTRUST_STATUS_WAITING_CHECK_CLAIM.getStatus()},