From f002dca462390febf123891c62ae197c768219dc Mon Sep 17 00:00:00 2001
From: duhe <226547893@qq.com>
Date: 星期五, 02 二月 2024 10:29:44 +0800
Subject: [PATCH] 销售订单 删除方法,增加 调用 删除前控制 h_p_Xs_SeOrderBill_BeforeDelCtrl 和删除后控制 h_p_Xs_SeOrderBill_AfterDelCtrl的 存储过程。 销售出库单 删除方法,增加 调用 删除前控制 h_p_Kf_SellOutBill_BeforeDelCtrl 和删除后控制 h_p_Kf_SellOutBill_AfterDelCtrl的 存储过程。 收款单 删除方法,增加 调用 删除前控制 h_p_YS_ReceiveBill_BeforeDelCtrl 和删除后控制 h_p_YS_ReceiveBill_AfterDelCtrl的 存储过程。 应收退款单 删除方法,增加 调用 删除前控制 h_p_YS_ReceiveBackBill_BeforeDelCtrl 和删除后控制 h_p_YS_ReceiveBackBill_AfterDelCtrl的 存储过程。 销售订单变更单删除方法,增加 调用 删除前控制 h_p_Xs_SeOrderChangeBill_BeforeDelCtrl 和删除后控制 h_p_Xs_SeOrderChangeBill_AfterDelCtrl的 存储过程。 销售退货单删除方法,增加 调用 删除前控制 h_p_Kf_SellOutBackBill_BeforeDelCtrl 和删除后控制 h_p_Kf_SellOutBackBill_AfterDelCtrl的 存储过程。

---
 WebAPI/Controllers/ProductInController.cs |   24 ++++++++++++++++++++++--
 1 files changed, 22 insertions(+), 2 deletions(-)

diff --git a/WebAPI/Controllers/ProductInController.cs b/WebAPI/Controllers/ProductInController.cs
index 8291829..d134bff 100644
--- a/WebAPI/Controllers/ProductInController.cs
+++ b/WebAPI/Controllers/ProductInController.cs
@@ -1249,18 +1249,37 @@
                 clsKf_ProductInBillMain.HDeptID = list[0].HDeptID;
                 clsKf_ProductInBillMain.HEmpID = list[0].HEmpID;
                 clsKf_ProductInBillMain.HKeeperID = list[0].HKeeperID;
+                clsKf_ProductInBillMain.HSecManagerID = list[0].HSecManagerID;
                 clsKf_ProductInBillMain.HRemark = list[0].HRemark;
                 clsKf_ProductInBillMain.HMaker = list[0].HMaker;
+                clsKf_ProductInBillMain.HBillerID = list[0].HBillerID;
                 clsKf_ProductInBillMain.HWHID = list[0].HWHID;
                 clsKf_ProductInBillMain.HSupID = list[0].HSupID;
                 clsKf_ProductInBillMain.HExplanation = list[0].HExplanation;
                 clsKf_ProductInBillMain.HBillType = "1202";
+                if (list[0].HBillType == "3714")
+                {
+                    clsKf_ProductInBillMain.HMainSourceBillType = "宸ュ簭姹囨姤鍗�";
+                }
+                else if (list[0].HBillType == "3711")
+                {
+                    clsKf_ProductInBillMain.HMainSourceBillType = "鐢熶骇姹囨姤鍗�";
+                }
+                else if (list[0].HBillType == "3710")
+                {
+                    clsKf_ProductInBillMain.HMainSourceBillType = "鐢熶骇璁㈠崟";
+                }
+                else
+                {
+                    clsKf_ProductInBillMain.HMainSourceBillType = "鎵嬪伐褰曞叆";
+                }
                 bool flag = this.webserver.set_SaveProductInBill_New(clsKf_ProductInBillMain, hbillType, ref ClsPub.sErrInfo);
                 if (flag)
                 {
                     this.objJsonResult.code = "0";
                     this.objJsonResult.count = 1;
-                    this.objJsonResult.Message = "鐢熸垚浜у搧鍏ュ簱鍗曟垚鍔燂紒鍗曟嵁鍙蜂负锛�";
+                    objJsonResult.Message = DBUtility.ClsPub.sErrInfo;  //鎴愬姛锛�
+                    //this.objJsonResult.Message = "鐢熸垚浜у搧鍏ュ簱鍗曟垚鍔燂紒鍗曟嵁鍙蜂负锛�";
                     this.objJsonResult.data = null;
                     result = this.objJsonResult;
                 }
@@ -1268,7 +1287,8 @@
                 {
                     this.objJsonResult.code = "0";
                     this.objJsonResult.count = 0;
-                    this.objJsonResult.Message = "涓婁紶澶辫触锛�" + ClsPub.sErrInfo;
+                    objJsonResult.Message = DBUtility.ClsPub.sErrInfo;  //澶辫触锛�
+                    //this.objJsonResult.Message = "涓婁紶澶辫触锛�" + ClsPub.sErrInfo;
                     this.objJsonResult.data = null;
                     result = this.objJsonResult;
                 }

--
Gitblit v1.9.1