| | |
| | | import com.ruoyi.business.service.InventorySummaryService; |
| | | import com.ruoyi.business.service.OutputInventoryRecordService; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.math.BigDecimal; |
| | |
| | | @Service |
| | | @RequiredArgsConstructor |
| | | public class InventorySummaryServiceImpl extends ServiceImpl<InventorySummaryMapper, InventorySummary> implements InventorySummaryService { |
| | | @Autowired |
| | | private InventorySummaryMapper inventorySummaryMapper; |
| | | @Autowired |
| | | private InputInventoryRecordService inputInventoryRecordService; |
| | | @Autowired |
| | | private OutputInventoryRecordService outputInventoryRecordService; |
| | | @Autowired |
| | | private PendingInventoryMapper pendingInventoryMapper; |
| | | @Autowired |
| | | private OfficialInventoryMapper officialInventoryMapper; |
| | | private final InventorySummaryMapper inventorySummaryMapper; |
| | | private final InputInventoryRecordService inputInventoryRecordService; |
| | | private final OutputInventoryRecordService outputInventoryRecordService; |
| | | private final PendingInventoryMapper pendingInventoryMapper; |
| | | private final OfficialInventoryMapper officialInventoryMapper; |
| | | |
| | | @Override |
| | | public int updateInventory(PendingInventoryDto pendingInventoryDto, OfficialInventoryDto officialInventoryDto) { |