自动化立体仓库 - WMS系统
zwl
5 天以前 73f677ac03ebcf0f9d2e865dd60d3e4a6c2bc2c9
src/main/java/com/zy/asrs/service/impl/WrkMastLogServiceImpl.java
@@ -9,6 +9,7 @@
import com.zy.asrs.service.WrkMastLogService;
import org.springframework.stereotype.Service;
import java.util.Date;
import java.util.Map;
@Service("wrkMastLogService")
@@ -20,6 +21,21 @@
    }
    @Override
    public Long sumCostTimeByWrkSts(Date startTime, Date endTime, Integer wrkSts) {
        Long total = this.baseMapper.sumCostTimeByWrkSts(startTime, endTime, wrkSts);
        return total == null ? 0L : total;
    }
    @Override
    public Long countInboundHistoryBySourceStaNo(Date startTime, Date endTime, Integer sourceStaNo) {
        if (sourceStaNo == null) {
            return 0L;
        }
        Long count = this.baseMapper.countInboundHistoryBySourceStaNo(startTime, endTime, sourceStaNo);
        return count == null ? 0L : count;
    }
    @Override
    public R inventoryFlowList(Integer curr, Integer limit, Map<String, Object> param) {
        Page<InventoryFlowDto> page = new Page<>();
        page.setCurrent(curr);