From a10ad9f551382673bc6af5a1d6d92edd9fee3680 Mon Sep 17 00:00:00 2001
From: huminmin <mac@MacBook-Pro.local>
Date: 星期五, 13 三月 2026 12:01:04 +0800
Subject: [PATCH] 主生产计划:增加部分下发状态
---
src/main/java/com/ruoyi/production/controller/ProductMaterialController.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/java/com/ruoyi/production/controller/ProductMaterialController.java b/src/main/java/com/ruoyi/production/controller/ProductMaterialController.java
index 82acc3e..2c27907 100644
--- a/src/main/java/com/ruoyi/production/controller/ProductMaterialController.java
+++ b/src/main/java/com/ruoyi/production/controller/ProductMaterialController.java
@@ -45,8 +45,8 @@
@GetMapping("/list")
@ApiOperation("鐗╂枡鏁版嵁绫诲埆鏁版嵁闆嗗悎")
@Log(title = "鐗╂枡鏁版嵁绫诲埆鏁版嵁闆嗗悎", businessType = BusinessType.OTHER)
- public AjaxResult productMaterialList() {
- List<ProductMaterialGroupDto> productMaterialMap = productMaterialService.ProductMaterialList();
+ public AjaxResult productMaterialList(@RequestParam("type") Integer type) {
+ List<ProductMaterialGroupDto> productMaterialMap = productMaterialService.ProductMaterialList(type);
return AjaxResult.success(productMaterialMap);
}
--
Gitblit v1.9.3