From 5c9033488d025bdf554e2e33b2a8030d3743faeb Mon Sep 17 00:00:00 2001
From: chenhaozhe <cgz@hz-kingdee.com>
Date: 星期一, 12 一月 2026 10:05:49 +0800
Subject: [PATCH] 添加 模具维修检验单 派工单 APP 获取单据缓存接口 添加 APP 根据器具条码查找器具档案信息 应用程序接口

---
 WebAPI/Controllers/XSGL/YS_ContactBalController.cs |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/WebAPI/Controllers/XSGL/YS_ContactBalController.cs b/WebAPI/Controllers/XSGL/YS_ContactBalController.cs
index 2885c1c..6e96437 100644
--- a/WebAPI/Controllers/XSGL/YS_ContactBalController.cs
+++ b/WebAPI/Controllers/XSGL/YS_ContactBalController.cs
@@ -427,9 +427,11 @@
                         ds = oCN.RunProcReturn(sql, "YSYF_ContactBal");
                         if (ds.Tables[0].Rows.Count == 0)
                         {
-                            sql = "insert into YSYF_ContactBal(HRP,HCusID,HCurID,HBeginBalance) " +
+                            sql = "insert into YSYF_ContactBal(HYear,HPeriod,HRP,HCusID,HCurID,HBeginBalance) " +
                                 "values(" +
-                                "" + HFRP + "" +
+                                "YEAR(getdate())" +
+                                ",Month(getdate())" +
+                                "," + HFRP + "" +
                                 "," + HCusID + "" +
                                 "," + HCurID + "" +
                                 "," + HBeginBalance + "" +
@@ -475,9 +477,11 @@
                         ds = oCN.RunProcReturn(sql, "YSYF_ContactBal");
                         if (ds.Tables[0].Rows.Count == 0)
                         {
-                            sql = "insert into YSYF_ContactBal(HRP,HCusID,HCurID,HBeginBalance) " +
+                            sql = "insert into YSYF_ContactBal(HYear,HPeriod,HRP,HCusID,HCurID,HBeginBalance) " +
                                 "values(" +
-                                "" + HFRP + "" +
+                                "YEAR(getdate())" +
+                                ",Month(getdate())" +
+                                "," + HFRP + "" +
                                 "," + HCusID + "" +
                                 "," + HCurID + "" +
                                 "," + HBeginBalance + "" +

--
Gitblit v1.9.1