From 5a3f8fe4c563f26c745e70a1fcc000af78744d14 Mon Sep 17 00:00:00 2001
From: 啊鑫 <t2856754968@163.com>
Date: 星期日, 01 九月 2024 14:17:39 +0800
Subject: [PATCH] qq
---
MESApplication/Controllers/Warehouse/MesInvItemBarcodesController.cs | 26 ++++++++++++++++++++++++++
1 files changed, 26 insertions(+), 0 deletions(-)
diff --git a/MESApplication/Controllers/Warehouse/MesInvItemBarcodesController.cs b/MESApplication/Controllers/Warehouse/MesInvItemBarcodesController.cs
index b783353..124e534 100644
--- a/MESApplication/Controllers/Warehouse/MesInvItemBarcodesController.cs
+++ b/MESApplication/Controllers/Warehouse/MesInvItemBarcodesController.cs
@@ -1,4 +1,5 @@
锘縰sing System.Dynamic;
+using MES.Service.Dto.service;
using MES.Service.Modes;
using MES.Service.service.Warehouse;
using MES.Service.util;
@@ -15,6 +16,31 @@
/***杩涘叆妯$増绠$悊鍙互淇敼妯$増***/
+ //GetBarCodesQuan
+ /// <summary>
+ /// 鏍规嵁鏉$爜鑾峰彇鏁伴噺
+ /// </summary>
+ /// <returns></returns>
+ [HttpPost("GetBarCodesQuan")]
+ public ResponseResult GetBarCodesQuan(WarehouseQuery query)
+ {
+ try
+ {
+ dynamic resultInfos = new ExpandoObject();
+ resultInfos.tbBillList = m.GetBarCodesQuan(query);
+ return new ResponseResult
+ {
+ status = 0,
+ message = "OK",
+ data = resultInfos
+ };
+ }
+ catch (Exception ex)
+ {
+ return ResponseResult.ResponseError(ex);
+ }
+ }
+
/// <summary>
/// 鑾峰彇鎵�鏈�
/// </summary>
--
Gitblit v1.9.3