From ac2f359d397c0ec5eb87c9cbc415584d1d88439f Mon Sep 17 00:00:00 2001 From: 快乐的昕的电脑 <快乐的昕的电脑@DESKTOP-C2BQPQU> Date: 星期二, 16 九月 2025 08:56:53 +0800 Subject: [PATCH] 采购退料:列表选择、列表明细更改为存储过程,添加组织隔离,添加库位列表,添加隐藏完结单号功能 --- Controllers/LoginController.cs | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 58 insertions(+), 1 deletions(-) diff --git a/Controllers/LoginController.cs b/Controllers/LoginController.cs index 064c835..4e76314 100644 --- a/Controllers/LoginController.cs +++ b/Controllers/LoginController.cs @@ -1,7 +1,7 @@ 锘縰sing System.Dynamic; using Microsoft.AspNetCore.Mvc; using NewPdaSqlServer.Dto.@base; -using NewPdaSqlServer.service; +using NewPdaSqlServer.service.@base; using NewPdaSqlServer.util; using Newtonsoft.Json.Linq; @@ -105,4 +105,61 @@ return ResponseResult.ResponseError(ex); } } + + + /// <summary> + /// 鑾峰彇璐﹀彿淇℃伅 + /// </summary> + /// <param name="model"></param> + /// <returns></returns> + [HttpPost("getUserInfo")] + public ResponseResult getUserInfo([FromBody] dynamic model) + { + //鐧诲綍 + try + { + dynamic resultInfos = new ExpandoObject(); + var tbBillList = + new LoginService().getUserInfo(model.Guid); + resultInfos.tbBillList = tbBillList; + return new ResponseResult + { + status = 0, + message = "OK", + data = resultInfos + }; + } + catch (Exception ex) + { + return ResponseResult.ResponseError(ex); + } + } + + + /// <summary> + /// 鍒囨崲缁勭粐 + /// </summary> + /// <param name="model"></param> + /// <returns></returns> + [HttpPost("changeOrg")] + public ResponseResult changeOrg([FromBody] dynamic model) + { + //鐧诲綍 + try + { + dynamic resultInfos = new ExpandoObject(); + var tbBillList = new LoginService().changeOrg(model); + resultInfos.tbBillList = tbBillList; + 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