From 4951f434ba268fdb0771bbdb89ca09a581caf43c Mon Sep 17 00:00:00 2001
From: buhuazhen <hua100783@gmail.com>
Date: 星期一, 18 五月 2026 10:05:24 +0800
Subject: [PATCH] feat(质量检验模块): 新增查看按钮并优化查看弹窗

---
 src/api/inventoryManagement/stockInventory.js |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/src/api/inventoryManagement/stockInventory.js b/src/api/inventoryManagement/stockInventory.js
index eafccbf..539eedc 100644
--- a/src/api/inventoryManagement/stockInventory.js
+++ b/src/api/inventoryManagement/stockInventory.js
@@ -17,6 +17,14 @@
     });
 };
 
+export const getStockInventoryBatchNoQty = (params) => {
+    return request({
+        url: "/stockInventory/getBatchNoQty",
+        method: "get",
+        params,
+    });
+};
+
 // 鍒涘缓搴撳瓨璁板綍
 export const createStockInventory = (params) => {
     return request({
@@ -87,3 +95,11 @@
     });
 };
 
+export const getStockInventoryByModelId = (productModelId) => {
+    return request({
+        url: "/stockInventory/getByModelId",
+        method: "get",
+        params: { productModelId },
+    });
+};
+

--
Gitblit v1.9.3