gongchunyi
19 小时以前 0a4a0ad0af9eca1a486912d3ed378c5600bfe1e1
src/main/java/com/ruoyi/sales/service/ISalesLedgerService.java
@@ -15,6 +15,7 @@
import javax.validation.constraints.NotNull;
import java.math.BigDecimal;
import java.util.List;
import java.util.Map;
/**
 * 销售台账Service接口
@@ -68,6 +69,12 @@
    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);
@@ -77,4 +84,8 @@
    void scanOutbound(SalesScanInboundDto dto);
    void scanOutboundUnqualified(SalesScanInboundDto dto);
    void shippingImport(MultipartFile file);
    void notShippingImport(MultipartFile file);
}