| | |
| | | import javax.validation.constraints.NotNull; |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 销售台账Service接口 |
| | |
| | | |
| | | void salesStock(SalesProductStockDto dto); |
| | | |
| | | void executeSalesStockApproved(Long salesLedgerId, List<Long> salesLedgerProductIds); |
| | | |
| | | void executeSalesScanInboundApproved(Long salesLedgerId, Map<Long, BigDecimal> inboundQtyByLineId); |
| | | |
| | | void executeSalesScanInboundUnqualifiedApproved(Long salesLedgerId, Map<Long, BigDecimal> inboundQtyByLineId); |
| | | |
| | | List<Customer> shippedCustomers(); |
| | | |
| | | void scanInbound(SalesScanInboundDto dto); |
| | | |
| | | void scanInboundUnqualified(SalesScanInboundDto dto); |
| | | |
| | | void scanOutbound(SalesScanInboundDto dto); |
| | | |
| | | void scanOutboundUnqualified(SalesScanInboundDto dto); |
| | | } |