123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- package com.steerinfo.dil.service;
- import com.steerinfo.dil.model.WmspInboundResult;
- import java.math.BigDecimal;
- import java.util.List;
- import java.util.Map;
- /**
- * @author luobang
- * @create 2021-09-06 18:03
- */
- public interface IWmsInboundResultService {
- /**
- * 1.展示入库实绩基本信息
- * @param mapValue
- * @return
- */
- List<Map<String, Object>> getInboundResult(Map<String, Object> mapValue);
- List<Map<String,Object>> getIvboundMaterial(Map<String, Object> mapValue);
- /**
- * 主键ID
- * @return
- */
- int count();
- /**
- * 2.新增入库实绩
- * @param wmspInboundResult
- * @return
- */
- Integer insertWmsInboundResult(WmspInboundResult wmspInboundResult);
- Integer updateReboundResult(Map<String, Object> map9);
- /**
- * 2.展示退库实绩基本信息
- * @param mapValue
- * @return
- */
- public List<Map<String, Object>> getReboundResult(Map<String, Object> mapValue);
- /**
- * 2.展示退库实绩基本信息
- * @param mapValue
- * @return
- */
- List<Map<String, Object>> getIvboundResult(Map<String, Object> mapValue);
- //根据入库实绩查找扫描实绩信息
- List<Map<String,Object>> selectScanResultByIboundResultId(Map<String,Object> map);
- String selectWarehouseName(BigDecimal bigDecimal);
- WmspInboundResult initAndWmspInboundResult(Integer complete, Integer resultNumber,BigDecimal personnelWorkshopid,BigDecimal inboundGroupId,String userName, BigDecimal distributeId, BigDecimal gridId, Map<String, Object> item);
- Map<String,Object> selectInboundResultByGroupId(BigDecimal groupId);
- BigDecimal getGrid(String distributeId, int i);
- int updateInboundStatus(BigDecimal distributeId);
- // 创建一个方法根据出厂的resultId修改对应的入库实绩和仓储网格Id
- int updateInboundGridStatus(Integer resultId);
- }
|