From d1103252576f48b0ff67d1ade5f4c617181fe87f Mon Sep 17 00:00:00 2001 From: zrg <z18737863051@163.com> Date: 星期二, 12 三月 2024 14:40:59 +0800 Subject: [PATCH] 其他应收单 增加子表备注 --- DAL/应收管理/ClsYS_ReceiveOtherBill.cs | 7 ++++--- Model/应收管理/ClsYS_ReceiveOtherBillSub.cs | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git "a/DAL/\345\272\224\346\224\266\347\256\241\347\220\206/ClsYS_ReceiveOtherBill.cs" "b/DAL/\345\272\224\346\224\266\347\256\241\347\220\206/ClsYS_ReceiveOtherBill.cs" index 5e70a4f..65a8a01 100644 --- "a/DAL/\345\272\224\346\224\266\347\256\241\347\220\206/ClsYS_ReceiveOtherBill.cs" +++ "b/DAL/\345\272\224\346\224\266\347\256\241\347\220\206/ClsYS_ReceiveOtherBill.cs" @@ -133,7 +133,7 @@ "" + "" + "(HInterID,HEntryID,HSourceInterID,HSourceEntryID,HSourceBillNo,HSourceBillType" + - ",HProjectMoneyID,HTypeSub,HMoney,HTaxRate,HSumMoney,HQty,HPrice) " + + ",HProjectMoneyID,HTypeSub,HMoney,HTaxRate,HSumMoney,HQty,HPrice,HSubHremark) " + " values(" + "" + omodel.HInterID.ToString() + "," + oSub.HEntryID.ToString() + @@ -146,8 +146,9 @@ "','" + oSub.HMoney + "','" + oSub.HTaxRate + "','" + oSub.HSumMoney + - "','" + oSub.HQty + - "','" + oSub.HPrice + + "','" + oSub.HQty + + "','" + oSub.HPrice + + "','" + oSub.HSubHremark + "')"; oCn.RunProc(subSql); } diff --git "a/Model/\345\272\224\346\224\266\347\256\241\347\220\206/ClsYS_ReceiveOtherBillSub.cs" "b/Model/\345\272\224\346\224\266\347\256\241\347\220\206/ClsYS_ReceiveOtherBillSub.cs" index 640e3aa..51a4f39 100644 --- "a/Model/\345\272\224\346\224\266\347\256\241\347\220\206/ClsYS_ReceiveOtherBillSub.cs" +++ "b/Model/\345\272\224\346\224\266\347\256\241\347\220\206/ClsYS_ReceiveOtherBillSub.cs" @@ -15,5 +15,6 @@ public double HSumMoney;// dec(18,8) //总金额 public double HQty;// dec(18,8) //税率 public double HPrice;// dec(18,8) //总金额 + public string HSubHremark;// varchar(20) -子备注 } } -- Gitblit v1.9.1