| | |
| | | } |
| | | |
| | | // 修改发货台账 |
| | | export function getDeliveryDetail(id) { |
| | | return request({ |
| | | url: `/shippingInfo/getDateil/${id}`, |
| | | method: "get", |
| | | }); |
| | | } |
| | | // 修改发货台账 |
| | | export function getDeliveryDetailByShippingNo(query) { |
| | | return request({ |
| | | url: "/shippingInfo/getDateilByShippingNo", |
| | | method: "get", |
| | | params: query, |
| | | }); |
| | | } |
| | | |
| | | export function addOrUpdateDeliveryLedger(query) { |
| | | return request({ |
| | | url: "/shippingInfo/update", |
| | | method: "post", |
| | | data: query, |
| | | }); |
| | | } |
| | | // 修改发货台账 |
| | | export function deductStock(query) { |
| | | return request({ |
| | | url: "/shippingInfo/deductStock", |
| | | method: "post", |
| | | data: query, |
| | | }); |
| | |
| | | data, |
| | | }); |
| | | } |
| | | |