From 5569fcc28bc1baa234b92e81b7fde12ddf7a77a3 Mon Sep 17 00:00:00 2001
From: duhe <226547893@qq.com>
Date: 星期五, 24 十一月 2023 10:31:58 +0800
Subject: [PATCH] 特批申请单:增加字段 承诺付款时间

---
 DAL/销售管理/ClsXs_ExceptiveCheckRequestBill.cs |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git "a/DAL/\351\224\200\345\224\256\347\256\241\347\220\206/ClsXs_ExceptiveCheckRequestBill.cs" "b/DAL/\351\224\200\345\224\256\347\256\241\347\220\206/ClsXs_ExceptiveCheckRequestBill.cs"
index d6db0f8..0c9bcd1 100644
--- "a/DAL/\351\224\200\345\224\256\347\256\241\347\220\206/ClsXs_ExceptiveCheckRequestBill.cs"
+++ "b/DAL/\351\224\200\345\224\256\347\256\241\347\220\206/ClsXs_ExceptiveCheckRequestBill.cs"
@@ -64,6 +64,7 @@
                 ",HOrgID=" + omodel.HOrgID +
                 ",HSendQty=" + omodel.HSendQty +
                 ",HLastSendDate='" + omodel.HLastSendDate + "'" +
+                ",HPlanPayDate='" + omodel.HPlanPayDate + "'" +
                 ",HCreditRating_Q=" + omodel.HCreditRating_Q +
                 ",HMaxCreditRating_Q=" + omodel.HMaxCreditRating_Q +
                 " where HInterID=" + lngBillKey.ToString();
@@ -120,7 +121,7 @@
                 "(" +
                 "HBillType,HBillSubType,HInterID,HBillNo,HDate,HYear,HPeriod,HRemark,HMaker,HMakeDate" +
                 ",HMainSourceInterID,HMainSourceEntryID,HMainSourceBillNo,HMainSourceBillType" +
-                ",HDeptID,HEmpID,HCurID,HExRate,HCusID,HManagerID,HReason,HSendMoney,HLeftMoney,HOrgID,HSendQty,HLastSendDate,HCreditRating_Q,HMaxCreditRating_Q" +
+                ",HDeptID,HEmpID,HCurID,HExRate,HCusID,HManagerID,HReason,HSendMoney,HLeftMoney,HOrgID,HSendQty,HLastSendDate,HPlanPayDate,HCreditRating_Q,HMaxCreditRating_Q" +
                 ") " +
                 " values('" +
                 this.BillType + 
@@ -149,6 +150,7 @@
                 "," + omodel.HOrgID +
                 "," + omodel.HSendQty +
                 ",'" + omodel.HLastSendDate + "'" +
+                ",'" + omodel.HPlanPayDate + "'" +
                 "," + omodel.HCreditRating_Q +
                 "," + omodel.HMaxCreditRating_Q +
                 ")";
@@ -237,6 +239,8 @@
                 omodel.HSendQty = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HSendQty"]);
                 omodel.HLastSendDate = DBUtility.ClsPub.isDate(Ds.Tables[0].Rows[0]["HLastSendDate"]);
 
+                omodel.HPlanPayDate = DBUtility.ClsPub.isDate(Ds.Tables[0].Rows[0]["HPlanPayDate"]);
+
                 omodel.HCreditRating_Q = DBUtility.ClsPub.isDoule(Ds.Tables[0].Rows[0]["HCreditRating_Q"]);
                 omodel.HMaxCreditRating_Q = DBUtility.ClsPub.isDoule(Ds.Tables[0].Rows[0]["HMaxCreditRating_Q"]);
                 //

--
Gitblit v1.9.1