From 79b3a8a9f69aa80d6bd63c806f71124d79dde89e Mon Sep 17 00:00:00 2001 From: duhe <226547893@qq.com> Date: 星期五, 10 十一月 2023 12:32:32 +0800 Subject: [PATCH] 收款单:根据客户获取客户信用额度 --- WebAPI/Controllers/XSGL/Xs_SeOrderBillController.cs | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/WebAPI/Controllers/XSGL/Xs_SeOrderBillController.cs b/WebAPI/Controllers/XSGL/Xs_SeOrderBillController.cs index 5e4b100..8f2d331 100644 --- a/WebAPI/Controllers/XSGL/Xs_SeOrderBillController.cs +++ b/WebAPI/Controllers/XSGL/Xs_SeOrderBillController.cs @@ -1797,9 +1797,11 @@ ,cur.HName HCurName ,cur.HExchangeRate HExRate ,c.HTaxRate + ,ISNULL(cre.HCreditRating_Now,0) HCreditRating_Now from Gy_Customer as c left join Gy_SettleStyle as s on c.HSSID = s.HItemID left join Gy_Currency as cur on c.HCurID = cur.HItemID + left join Gy_Customer_Credit as cre on c.HItemID = cre.HCusID where c.HItemID = " + HCusID; ds = oCN.RunProcReturn(sql,"Gy_Customer"); -- Gitblit v1.9.1