| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.basic.pojo.Customer; |
| | | import com.ruoyi.common.enums.SaleEnum; |
| | | import com.ruoyi.approve.pojo.ApproveProcess; |
| | | import com.ruoyi.sales.dto.*; |
| | | import com.ruoyi.sales.pojo.SalesLedger; |
| | | import com.ruoyi.sales.pojo.SalesLedgerProcessRoute; |
| | |
| | | void scanOutbound(SalesScanInboundDto dto); |
| | | |
| | | void scanOutboundUnqualified(SalesScanInboundDto dto); |
| | | |
| | | /** |
| | | * APP 扫码发货:发起发货审批(审批通过后自动扣库存、发货台账与订单状态为已发货) |
| | | */ |
| | | void scanShipApply(SalesScanShipDto dto); |
| | | |
| | | /** |
| | | * 发货审批(类型 7)节点状态变更:扫码发货流程 {@code approveRemark} 以 {@code SCAN_SHIP_DELIVERY_JSON:} 开头时回调。 |
| | | * |
| | | * @param outcomeStatus 审批流状态:1 审核中 2 通过 3 拒绝 |
| | | */ |
| | | void onScanShipDeliveryApproveOutcome(ApproveProcess approveProcess, Integer outcomeStatus); |
| | | |
| | | void shippingImport(MultipartFile file); |
| | | |
| | | void notShippingImport(MultipartFile file); |
| | | |
| | | /** |
| | | * 反审核操作:作废或重新生成 |
| | | */ |
| | | List<Long> counterReview(CounterReviewDto dto); |
| | | |
| | | /** |
| | | * 标记订单完成 |
| | | */ |
| | | void markOrderCompleted(List<Long> ids); |
| | | |
| | | /** |
| | | * 递增打印次数 |
| | | * @param id 销售台账ID |
| | | * @param printType 打印类型:label=标签打印,document=单据打印 |
| | | */ |
| | | void incrementPrintCount(Long id, String printType); |
| | | } |