| | |
| | | package com.example.erp.mapper.mm; |
| | | |
| | | import com.example.erp.dto.mm.FinishedOperateLogDTO; |
| | | import com.example.erp.entity.mm.*; |
| | | import com.example.erp.entity.pp.OptimizeUse; |
| | | import com.example.erp.entity.sd.Delivery; |
| | |
| | | Boolean insertMaterialStore(@Param("type") String type, |
| | | @Param("json") String json); |
| | | |
| | | Boolean deleteMaterialInventory(@Param("ids") List<Long> ids); |
| | | |
| | | Boolean updateMaterialStore(@Param("type") String type, |
| | | @Param("json") String json, @Param("id") Long id); |
| | | |
| | | Boolean deleteMaterialOutbound(@Param("materialOutboundId") String materialOutboundId); |
| | | |
| | | Boolean deleteMaterialLog(@Param("materialOutboundId") String materialOutboundId); |
| | | |
| | | Integer getMaximum(@Param("type") String type); |
| | | |
| | |
| | | |
| | | Boolean deleteReturningWarehouseDetail(@Param("returningId") String returningId); |
| | | |
| | | Boolean deleteReturningWarehouse(@Param("returningId") String returningId); |
| | | |
| | | List<MaterialOutbound> getSelectMaterialOutboundDate(@Param("offset") Integer offset, |
| | | @Param("pageSize") Integer pageSize,String startDate, String endDate, |
| | | @Param("materialOutbound") MaterialOutbound materialOutbound); |
| | |
| | | @Param("totalArea") Double totalArea, |
| | | @Param("materialInventory") MaterialInventory materialInventory); |
| | | |
| | | Boolean updateMaterialInventoryNull(@Param("materialCode") Long materialCode,@Param("singlePieceArea") Double singlePieceArea, |
| | | @Param("totalArea") Double totalArea, |
| | | @Param("materialInventory") MaterialInventory materialInventory); |
| | | |
| | | Boolean insertMaterialInventory(@Param("materialCode") Long materialCode,@Param("singlePieceArea") Double singlePieceArea, |
| | | @Param("totalArea") Double totalArea, |
| | | @Param("materialInventory") MaterialInventory materialInventory); |
| | |
| | | |
| | | MaterialInventory getMaterialInventoryById(@Param("id") Long id); |
| | | |
| | | List<MaterialLog> getMaterialLogReport(@Param("offset") Integer offset, |
| | | @Param("pageSize") Integer pageSize,String startDate, String endDate, |
| | | @Param("materialLog") MaterialLog materialLog,String type); |
| | | |
| | | Map<String,Integer> getMaterialLogReportTotal(@Param("offset") Integer offset, |
| | | @Param("pageSize") Integer pageSize,String startDate, String endDate, |
| | | @Param("materialLog") MaterialLog materialLog,String type); |
| | | |
| | | List<MaterialLog> exportMaterialLogReport(List<LocalDate> dates, String type); |
| | | |
| | | } |