| | |
| | | data, |
| | | }); |
| | | } |
| | | |
| | | /** 销售订单扫码-合格出库 */ |
| | | export function scanOutboundSales(data) { |
| | | return request({ |
| | | url: "/sales/ledger/scanOutbound", |
| | | method: "post", |
| | | data, |
| | | }); |
| | | } |
| | | |
| | | /** 销售订单扫码-发起发货审批(车牌/快递、审批人、附件;审批通过后自动发货) */ |
| | | export function scanShipApply(data) { |
| | | return request({ |
| | | url: "/sales/ledger/scanShipApply", |
| | | method: "post", |
| | | data, |
| | | }); |
| | | } |
| | | |
| | | /** 销售订单扫码-不合格出库 */ |
| | | export function scanOutboundSalesUnqualified(data) { |
| | | return request({ |
| | | url: "/sales/ledger/scanOutboundUnqualified", |
| | | method: "post", |
| | | data, |
| | | }); |
| | | } |
| | | |
| | | /** 销售订单扫码-合格入库 */ |
| | | export function scanInboundSales(data) { |
| | | return request({ |
| | | url: "/sales/ledger/scanInbound", |
| | | method: "post", |
| | | data, |
| | | }); |
| | | } |
| | | |
| | | /** 销售订单扫码-不合格入库 */ |
| | | export function scanInboundSalesUnqualified(data) { |
| | | return request({ |
| | | url: "/sales/ledger/scanInboundUnqualified", |
| | | method: "post", |
| | | data, |
| | | }); |
| | | } |