|
|
@@ -54,21 +54,17 @@ import java.util.Set;
|
|
|
@Service
|
|
|
public class CommodityInOutboundServiceImpl implements CommodityInOutboundService {
|
|
|
|
|
|
- private final CommodityInOutboundDao commodityInOutboundDao;
|
|
|
-
|
|
|
- private final CreateNumberService createNumberService;
|
|
|
+ @Autowired
|
|
|
+ private CommodityInOutboundDao commodityInOutboundDao;
|
|
|
|
|
|
- private final ProductService productService;
|
|
|
+ @Autowired
|
|
|
+ private CreateNumberService createNumberService;
|
|
|
|
|
|
@Autowired
|
|
|
- private InvoiceService invoiceService;
|
|
|
+ private ProductService productService;
|
|
|
|
|
|
@Autowired
|
|
|
- public CommodityInOutboundServiceImpl(CommodityInOutboundDao commodityInOutboundDao, CreateNumberService createNumberService, ProductService productService) {
|
|
|
- this.commodityInOutboundDao = commodityInOutboundDao;
|
|
|
- this.createNumberService = createNumberService;
|
|
|
- this.productService = productService;
|
|
|
- }
|
|
|
+ private InvoiceService invoiceService;
|
|
|
|
|
|
/**
|
|
|
* 批量保存出入库记录
|