From 3faea5bad90c8e55e8bf83f7a9c603f789ed6c84 Mon Sep 17 00:00:00 2001
From: gongchunyi <deslre0381@gmail.com>
Date: 星期五, 10 四月 2026 11:41:46 +0800
Subject: [PATCH] feat: 原料生产统计单耗表接口
---
src/main/java/com/ruoyi/production/service/impl/ProductionRecordServiceImpl.java | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/ruoyi/production/service/impl/ProductionRecordServiceImpl.java b/src/main/java/com/ruoyi/production/service/impl/ProductionRecordServiceImpl.java
index 0289e84..54f30dd 100644
--- a/src/main/java/com/ruoyi/production/service/impl/ProductionRecordServiceImpl.java
+++ b/src/main/java/com/ruoyi/production/service/impl/ProductionRecordServiceImpl.java
@@ -307,6 +307,8 @@
paramEntity.setValueMode(orderParam.getValueMode());
paramEntity.setUnit(orderParam.getUnit());
paramEntity.setStandardValue(orderParam.getStandardValue());
+ paramEntity.setMinValue(orderParam.getMinValue());
+ paramEntity.setMaxValue(orderParam.getMaxValue());
}
}
productionProductRouteItemParamService.save(paramEntity);
@@ -752,6 +754,9 @@
paramEntity.setParamFormat(orderParam.getParamFormat());
paramEntity.setValueMode(orderParam.getValueMode());
paramEntity.setUnit(orderParam.getUnit());
+ paramEntity.setStandardValue(orderParam.getStandardValue());
+ paramEntity.setMinValue(orderParam.getMinValue());
+ paramEntity.setMaxValue(orderParam.getMaxValue());
}
}
productionProductRouteItemParamService.save(paramEntity);
--
Gitblit v1.9.3