| 对比新文件 |
| | |
| | | import request from "@/utils/request.js"; |
| | | // 鍒嗛〉鏌ヨ搴撳瓨璁板綍鍒楄〃 |
| | | export const getStockInventoryListPage = (params) => { |
| | | return request({ |
| | | url: "/stockInventory/pagestockInventory", |
| | | method: "get", |
| | | params, |
| | | }); |
| | | }; |
| | | |
| | | // 鍒涘缓搴撳瓨璁板綍 |
| | | export const createStockInventory = (params) => { |
| | | return request({ |
| | | url: "/stockInventory/addstockInventory", |
| | | method: "post", |
| | | data: params, |
| | | }); |
| | | }; |
| | | |
| | | // 鍑忓皯搴撳瓨璁板綍 |
| | | export const subtractStockInventory = (params) => { |
| | | return request({ |
| | | url: "/stockInventory/subtractStockInventory", |
| | | method: "post", |
| | | data: params, |
| | | }); |
| | | }; |
| | | |
| | | export const exportStockInventory = (params) => { |
| | | return request({ |
| | | url: "/stockInventory/exportStockInventory", |
| | | method: "post", |
| | | data: params, |
| | | }); |
| | | }; |
| | | |
| | | |