| | |
| | | data, |
| | | }); |
| | | } |
| | | |
| | | // 已发货客户 |
| | | export function shippedCustomers() { |
| | | return request({ |
| | | url: "/sales/ledger/shippedCustomers", |
| | | method: "get", |
| | | }) |
| | | } |
| | | |
| | | // 反审核操作 |
| | | export function counterReview(data) { |
| | | return request({ |
| | | url: "/sales/ledger/counterReview", |
| | | method: "post", |
| | | data, |
| | | }) |
| | | } |
| | | |
| | | // 标记订单完成 |
| | | export function markOrderCompleted(data) { |
| | | return request({ |
| | | url: "/sales/ledger/markOrderCompleted", |
| | | method: "post", |
| | | data, |
| | | }) |
| | | } |
| | | |
| | | // 递增打印次数 |
| | | export function incrementPrintCount(data) { |
| | | return request({ |
| | | url: "/sales/ledger/incrementPrintCount", |
| | | method: "post", |
| | | data, |
| | | }) |
| | | } |