| | |
| | | data: query, |
| | | }); |
| | | } |
| | | |
| | | // 修改发货台账 |
| | | export function deductStock(query) { |
| | | return request({ |
| | |
| | | }); |
| | | } |
| | | |
| | | // 发货明细接口 |
| | | |
| | | // 分页查询发货明细 |
| | | export function shippingInfoDetailListPage(query) { |
| | | return request({ |
| | | url: "/shippingInfoDetail/listPage", |
| | | method: "get", |
| | | params: query, |
| | | }); |
| | | } |
| | | |
| | | // 新增发货明细 |
| | | export function addShippingInfoDetail(data) { |
| | | return request({ |
| | | url: "/shippingInfoDetail/add", |
| | | method: "post", |
| | | data, |
| | | }); |
| | | } |
| | | |
| | | // 修改发货明细 |
| | | export function updateShippingInfoDetail(data) { |
| | | return request({ |
| | | url: "/shippingInfoDetail/update", |
| | | method: "post", |
| | | data, |
| | | }); |
| | | } |
| | | |
| | | // 删除发货明细 |
| | | export function delShippingInfoDetail(ids) { |
| | | return request({ |
| | | url: "/shippingInfoDetail/delete", |
| | | method: "delete", |
| | | data: ids, |
| | | }); |
| | | } |
| | | |