From d41acebbd89f171b0eeb205fca4f68043ca85f95 Mon Sep 17 00:00:00 2001
From: Admin <Admin@ADMIN>
Date: 星期三, 03 十二月 2025 19:47:24 +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