From d05c2732fb66130bcbe55829f1d91a7c027b29c8 Mon Sep 17 00:00:00 2001
From: zss <zss@example.com>
Date: 星期一, 11 五月 2026 11:30:09 +0800
Subject: [PATCH] 退货处理的处理字段不能手动新增填写

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

diff --git a/src/api/inventoryManagement/stockInventory.js b/src/api/inventoryManagement/stockInventory.js
index 10a211d..0ba0943 100644
--- a/src/api/inventoryManagement/stockInventory.js
+++ b/src/api/inventoryManagement/stockInventory.js
@@ -35,6 +35,24 @@
     });
 };
 
+// 鏂板鍏ュ簱璁板綍锛堜粎鍒涘缓璁板綍锛屼笉璋冩暣搴撳瓨锛�
+export const addStockInRecordOnly = (params) => {
+    return request({
+        url: "/stockInventory/addStockInRecordOnly",
+        method: "post",
+        data: params,
+    });
+};
+
+// 鏂板鍑哄簱璁板綍锛堜粎鍒涘缓璁板綍锛屼笉璋冩暣搴撳瓨锛�
+export const addStockOutRecordOnly = (params) => {
+    return request({
+        url: "/stockInventory/addStockOutRecordOnly",
+        method: "post",
+        data: params,
+    });
+};
+
 export const getStockInventoryReportList = (params) => {
     return request({
         url: "/stockInventory/stockInventoryPage",
@@ -69,3 +87,11 @@
     });
 };
 
+export const getStockInventoryByModelId = (productModelId) => {
+    return request({
+        url: "/stockInventory/getByModelId",
+        method: "get",
+        params: { productModelId },
+    });
+};
+

--
Gitblit v1.9.3