From 5339020eae4f4ed4938302a902087a0693743898 Mon Sep 17 00:00:00 2001 From: yusijie <ysj@hz-kingdee.com> Date: 星期三, 22 五月 2024 11:28:00 +0800 Subject: [PATCH] 器具模块功能完善(器具档案、器具分类、器具保养项目,器具保养规程、器具保养计划、器具保养记录 器具维修项目、器具故障登记、器具维修记录单、器具维修验收单 器具寿命调整单、器具寿命耗用单 产品器具清单) --- 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