From ec3daa05f122738f18d4474b9257e4cf794dc5cf Mon Sep 17 00:00:00 2001
From: Admin <Admin@ADMIN>
Date: 星期五, 06 三月 2026 10:36:01 +0800
Subject: [PATCH] 接口新增
---
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_StorageBasicServices/BasicInfo/Dt_SelectionStandardsService.cs | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_StorageBasicServices/BasicInfo/Dt_SelectionStandardsService.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_StorageBasicServices/BasicInfo/Dt_SelectionStandardsService.cs"
index 5b62b7c..3fee087 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_StorageBasicServices/BasicInfo/Dt_SelectionStandardsService.cs"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_StorageBasicServices/BasicInfo/Dt_SelectionStandardsService.cs"
@@ -27,6 +27,7 @@
decimal upperValue = Convert.ToDecimal(saveModel.MainData["upperValue"]);
int isCantainGK = saveModel.MainData["isCantainGK"].ObjToInt();
string PostContainer = saveModel.MainData["postContainer"].ToString();
+ decimal Estimatedvalue = Convert.ToDecimal(saveModel.MainData["estimatedvalue"]);
if (lowerValue < 0 || upperValue < 0) throw new Exception("杩囩泩閲忓�煎紓甯�");
@@ -61,6 +62,7 @@
upperValue_gk = upperValue_gk,
upperValue = upperValue,
PostContainer = PostContainer,
+ Estimatedvalue = Estimatedvalue,
};
if (BaseDal.AddData(selectionStandards) > 0)
@@ -94,13 +96,15 @@
string gkdj = saveModel.MainData["gkdj"].ToString();
decimal lowerValue = Convert.ToDecimal(saveModel.MainData["lowerValue"]);
decimal upperValue = Convert.ToDecimal(saveModel.MainData["upperValue"]);
+
+ decimal Estimatedvalue = Convert.ToDecimal(saveModel.MainData["estimatedvalue"]);
string PostContainer = saveModel.MainData["postContainer"].ToString();
int isCantainGK = saveModel.MainData["isCantainGK"].ObjToInt();
Dt_SelectionStandards dt_Selection = BaseDal.QueryFirst(x => x.ID == id);
-
+ dt_Selection.Estimatedvalue = Estimatedvalue;
dt_Selection.CarType = carType;
dt_Selection.mttype = mttype;
dt_Selection.neworold = neworold;
--
Gitblit v1.9.3