From 14bab3ef497965e21ef8f6eac144d0b403e4c073 Mon Sep 17 00:00:00 2001
From: zrg <z18737863051@163.com>
Date: 星期一, 17 二月 2025 17:32:07 +0800
Subject: [PATCH] 优化首巡末检自动返回检验方案
---
DAL/系统公用/ClsXt_DefineBillMainSet.cs | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git "a/DAL/\347\263\273\347\273\237\345\205\254\347\224\250/ClsXt_DefineBillMainSet.cs" "b/DAL/\347\263\273\347\273\237\345\205\254\347\224\250/ClsXt_DefineBillMainSet.cs"
index 29b8fc3..27ad7cf 100644
--- "a/DAL/\347\263\273\347\273\237\345\205\254\347\224\250/ClsXt_DefineBillMainSet.cs"
+++ "b/DAL/\347\263\273\347\273\237\345\205\254\347\224\250/ClsXt_DefineBillMainSet.cs"
@@ -63,7 +63,7 @@
foreach (Model.ClsXt_DefineBillMainSetSub oSub in DetailColl)
{
string subSql = "Insert into Xt_DefineBillMainSetSub " +
- " (HInterID,HEntryID,HArrangeOrder,HArrangeOrderSub,HIsHide,HIsDisabled,HIsMust,HParentElementID,HElementID" +
+ " (HInterID,HEntryID,HArrangeOrder,HArrangeOrderSub,HIsHide,HIsDisabled,HIsMust,HParentElementID,HElementID,HElementIDAdditionalName" +
",HElementLabel,HElementType,HFieldMaxLength,HDefaultValue,HFieldName,HFieldDataType,HRelateUrl,HSubWindowBackData" +
",HSubWindowBackDataMethodName,HSelectContent" +
") values(" +
@@ -76,6 +76,7 @@
",'" + (oSub.HIsMust ? 1 : 0) + "'" +
",'" + oSub.HParentElementID + "'" +
",'" + oSub.HElementID + "'" +
+ ",'" + oSub.HElementIDAdditionalName + "'" +
",'" + oSub.HElementLabel + "'" +
",'" + oSub.HElementType + "'" +
",'" + oSub.HFieldMaxLength + "'" +
@@ -143,7 +144,7 @@
foreach (Model.ClsXt_DefineBillMainSetSub oSub in DetailColl)
{
string subSql = "Insert into Xt_DefineBillMainSetSub " +
- " (HInterID,HEntryID,HArrangeOrder,HArrangeOrderSub,HIsHide,HIsDisabled,HIsMust,HParentElementID,HElementID" +
+ " (HInterID,HEntryID,HArrangeOrder,HArrangeOrderSub,HIsHide,HIsDisabled,HIsMust,HParentElementID,HElementID,HElementIDAdditionalName" +
",HElementLabel,HElementType,HFieldMaxLength,HDefaultValue,HFieldName,HFieldDataType,HRelateUrl,HSubWindowBackData" +
",HSubWindowBackDataMethodName,HSelectContent" +
") values(" +
@@ -156,6 +157,7 @@
",'" + (oSub.HIsMust?1:0) + "'" +
",'" + oSub.HParentElementID + "'" +
",'" + oSub.HElementID + "'" +
+ ",'" + oSub.HElementIDAdditionalName + "'" +
",'" + oSub.HElementLabel + "'" +
",'" + oSub.HElementType + "'" +
",'" + oSub.HFieldMaxLength + "'" +
@@ -226,6 +228,7 @@
oSub.HIsMust = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HIsMust"]) == 1 ? true : false;
oSub.HParentElementID = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HParentElementID"]);
oSub.HElementID = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HElementID"]);
+ oSub.HElementIDAdditionalName = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HElementIDAdditionalName"]);
oSub.HElementLabel = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HElementLabel"]);
oSub.HElementType = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HElementType"]);
oSub.HFieldMaxLength = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HFieldMaxLength"]);
--
Gitblit v1.9.1