From 7bd588e5917f784746b25a201e0bea574d938996 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期二, 03 二月 2026 15:34:24 +0800
Subject: [PATCH] 双奇点改造 1.产品维护添加图片、高度等字段
---
src/api/inventoryManagement/stockInventory.js | 38 ++++++++++++++++++++++++++++++++++++--
1 files changed, 36 insertions(+), 2 deletions(-)
diff --git a/src/api/inventoryManagement/stockInventory.js b/src/api/inventoryManagement/stockInventory.js
index a50194a..f3fd1e7 100644
--- a/src/api/inventoryManagement/stockInventory.js
+++ b/src/api/inventoryManagement/stockInventory.js
@@ -26,12 +26,46 @@
});
};
-export const exportStockInventory = (params) => {
+export const getStockInventoryReportList = (params) => {
return request({
- url: "/stockInventory/exportStockInventory",
+ url: "/stockInventory/stockInventoryPage",
+ method: "get",
+ params,
+ });
+};
+
+export const getStockInventoryInAndOutReportList = (params) => {
+ return request({
+ url: "/stockInventory/stockInAndOutRecord",
+ method: "get",
+ params,
+ });
+};
+
+// 鍐荤粨搴撳瓨璁板綍
+export const frozenStockInventory = (params) => {
+ return request({
+ url: "/stockInventory/frozenStock",
method: "post",
data: params,
});
};
+// 瑙e喕搴撳瓨璁板綍
+export const thawStockInventory = (params) => {
+ return request({
+ url: "/stockInventory/thawStock",
+ method: "post",
+ data: params,
+ });
+};
+// 鑾峰彇浜у搧澶х被鐨剆elect鍒楄〃
+// /basic/product/listProduct
+export const getProductList = (params) => {
+ return request({
+ url: "/basic/product/listProduct",
+ method: "get",
+ params,
+ });
+};
\ No newline at end of file
--
Gitblit v1.9.3