| | |
| | | }); |
| | | }; |
| | | |
| | | export const getStockInventoryBatchNoQty = params => { |
| | | return request({ |
| | | url: "/stockInventory/getBatchNoQty", |
| | | method: "get", |
| | | params, |
| | | }); |
| | | }; |
| | | |
| | | // 创建库存记录 |
| | | export const createStockInventory = params => { |
| | | return request({ |
| | |
| | | }); |
| | | }; |
| | | |
| | | 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 subtractStockInventory = params => { |
| | | return request({ |