From a12a74003597af2d6a7fd37e54509909bd4b23bb Mon Sep 17 00:00:00 2001 From: 南骏 池 <chiffly@163.com> Date: 星期五, 04 七月 2025 10:20:38 +0800 Subject: [PATCH] 1.其他入库优化 2.条码入库前拆分优化 3.携客云送货单签收显示优化 --- Controllers/Warehouse/MesDbckController.cs | 138 +++++++++++++++++++++++----------------------- 1 files changed, 69 insertions(+), 69 deletions(-) diff --git a/Controllers/Warehouse/MesDbckController.cs b/Controllers/Warehouse/MesDbckController.cs index 50e65e9..8556a00 100644 --- a/Controllers/Warehouse/MesDbckController.cs +++ b/Controllers/Warehouse/MesDbckController.cs @@ -88,75 +88,75 @@ } } - /// <summary> - /// 娣诲姞 - /// </summary> - /// <returns></returns> - [HttpPost("Insert")] - public ResponseResult Add([FromBody] MesDbck data) - { - try - { - dynamic resultInfos = new ExpandoObject(); - resultInfos.tbBillList = m.Insert(data); - return new ResponseResult - { - status = 0, - message = "OK", - data = resultInfos - }; - } - catch (Exception ex) - { - return ResponseResult.ResponseError(ex); - } - } + ///// <summary> + ///// 娣诲姞 + ///// </summary> + ///// <returns></returns> + //[HttpPost("Insert")] + //public ResponseResult Add([FromBody] MesDbck data) + //{ + // try + // { + // dynamic resultInfos = new ExpandoObject(); + // resultInfos.tbBillList = m.Insert(data); + // return new ResponseResult + // { + // status = 0, + // message = "OK", + // data = resultInfos + // }; + // } + // catch (Exception ex) + // { + // return ResponseResult.ResponseError(ex); + // } + //} - /// <summary> - /// 娣诲姞杩斿洖鑷 - /// </summary> - /// <returns></returns> - [HttpPost("InsertReturnIdentity")] - public ResponseResult InsertReturnIdentity([FromBody] MesDbck data) - { - try - { - dynamic resultInfos = new ExpandoObject(); - resultInfos.tbBillList = m.InsertReturnIdentity(data); - return new ResponseResult - { - status = 0, - message = "OK", - data = resultInfos - }; - } - catch (Exception ex) - { - return ResponseResult.ResponseError(ex); - } - } + ///// <summary> + ///// 娣诲姞杩斿洖鑷 + ///// </summary> + ///// <returns></returns> + //[HttpPost("InsertReturnIdentity")] + //public ResponseResult InsertReturnIdentity([FromBody] MesDbck data) + //{ + // try + // { + // dynamic resultInfos = new ExpandoObject(); + // resultInfos.tbBillList = m.InsertReturnIdentity(data); + // return new ResponseResult + // { + // status = 0, + // message = "OK", + // data = resultInfos + // }; + // } + // catch (Exception ex) + // { + // return ResponseResult.ResponseError(ex); + // } + //} - /// <summary> - /// 淇敼 - /// </summary> - /// <returns></returns> - [HttpPost("Update")] - public ResponseResult Update([FromBody] MesDbck data) - { - try - { - dynamic resultInfos = new ExpandoObject(); - resultInfos.tbBillList = m.Update(data); - return new ResponseResult - { - status = 0, - message = "OK", - data = resultInfos - }; - } - catch (Exception ex) - { - return ResponseResult.ResponseError(ex); - } - } + ///// <summary> + ///// 淇敼 + ///// </summary> + ///// <returns></returns> + //[HttpPost("Update")] + //public ResponseResult Update([FromBody] MesDbck data) + //{ + // try + // { + // dynamic resultInfos = new ExpandoObject(); + // resultInfos.tbBillList = m.Update(data); + // return new ResponseResult + // { + // status = 0, + // message = "OK", + // data = resultInfos + // }; + // } + // catch (Exception ex) + // { + // return ResponseResult.ResponseError(ex); + // } + //} } \ No newline at end of file -- Gitblit v1.9.3