| | |
| | | params: query, |
| | | }); |
| | | } |
| | | export function detailManagement(query) { |
| | | return request({ |
| | | url: "/stockInventory/getById", |
| | | method: "get", |
| | | params:query, |
| | | }); |
| | | } |
| | | // 采购入库-详情 |
| | | export function stockinDetail(query) { |
| | | return request({ |
| | |
| | | data: query, |
| | | }); |
| | | } |
| | | export function updateCustom(query) { |
| | | return request({ |
| | | url: "/stockin/updateCustom", |
| | | method: "post", |
| | | data: query, |
| | | }); |
| | | } |
| | | |
| | | // 导出扫码列表 |
| | | export function exportScanList(query) { |
| | | return request({ |
| | | url: "/stockin/exportTwo", |
| | | method: "post", |
| | | data: query, |
| | | responseType: "blob", |
| | | }); |
| | | } |
| | | |