From 5e718032954cc08d24d16c680ddee8ae218d7092 Mon Sep 17 00:00:00 2001 From: duhe <226547893@qq.com> Date: 星期四, 13 六月 2024 14:46:38 +0800 Subject: [PATCH] 单据删除 需要增加 写入日志;(谁删除,什么时候删除,删除了什么单据号) 基础资料删除 需要增加 写入日志;(谁删除,什么时候删除,删除了什么编码,名称) 日志采用原有的日志表, 编写一个 单据和基础资料的 案例(完成后与景焕章确认,确认案例后,安排其他研发分别完善其他模块) --- WebAPI/Controllers/MJGL/Sc_MouldMoveStockStepOutBillController.cs | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 43 insertions(+), 0 deletions(-) diff --git a/WebAPI/Controllers/MJGL/Sc_MouldMoveStockStepOutBillController.cs b/WebAPI/Controllers/MJGL/Sc_MouldMoveStockStepOutBillController.cs index b302430..7314c26 100644 --- a/WebAPI/Controllers/MJGL/Sc_MouldMoveStockStepOutBillController.cs +++ b/WebAPI/Controllers/MJGL/Sc_MouldMoveStockStepOutBillController.cs @@ -532,6 +532,49 @@ } #endregion + #region 鍣ㄥ叿鍒嗗竷寮忚皟鍑烘湭璋冨叆鍗曞垪琛⊿c_MouldMoveStockStepOutButNotStepInList + + [Route("Sc_MouldMoveStockStepOutBill/GetMouldMoveStockStepOutButNotStepInList")] + [HttpGet] + public object GetMouldMoveStockStepOutButNotStepInList(string sWhere, string Organization) + { + try + { + ds = Sc_MouldGetMouldMoveStockStepOutButNotStepInList(sWhere, Organization); + + objJsonResult.code = "1"; + objJsonResult.count = 1; + objJsonResult.Message = "杩斿洖璁板綍鎴愬姛锛�"; + objJsonResult.data = ds.Tables[0]; + return objJsonResult; + } + catch (Exception ex) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "娌℃湁杩斿洖浠讳綍璁板綍锛�" + ex.ToString(); + objJsonResult.data = null; + return objJsonResult; + } + } + + public static DataSet Sc_MouldGetMouldMoveStockStepOutButNotStepInList(string sWhere, string Organization) + { + string sql1 = string.Format(@"select * from h_v_Sc_MouldMoveStockStepOutButNotStepInList where (璋冨嚭缁勭粐='" + Organization + "' or 璋冨叆缁勭粐='" + Organization + "')"); + if (sWhere == null || sWhere.Equals("")) + { + return new SQLHelper.ClsCN().RunProcReturn(sql1 + "order by 鏃ユ湡 desc", "h_v_Sc_MouldMoveStockStepOutBill"); + } + else + { + string sql = sql1 + sWhere + "order by 鏃ユ湡 desc"; + return new SQLHelper.ClsCN().RunProcReturn(sql, "h_v_Sc_MouldMoveStockStepOutButNotStepInList"); + } + + } + + #endregion + } } #endregion -- Gitblit v1.9.1