2025-03-21 13:36:45 +08:00
|
|
|
|
package com.cim.idm.dao;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.cim.idm.wmspackage.materialpacking.management.data.MaterialPacking;
|
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
@Component
|
|
|
|
|
@Mapper
|
|
|
|
|
public interface FgStockInDao {
|
|
|
|
|
|
|
|
|
|
//调用接口查询当前Box是否都是在库需要转库,传入List<MaterialPacking>
|
|
|
|
|
public List<MaterialPacking> getBoxList(@Param("boxList") List<MaterialPacking> boxList,@Param("erpFactory") String erpFactory
|
2025-05-08 15:12:42 +08:00
|
|
|
|
,@Param("erpLocation") String erpLocation,@Param("locationName") String locationName,@Param("user") String user) throws Exception;
|
2025-03-21 13:36:45 +08:00
|
|
|
|
|
|
|
|
|
//批量更新BS_MES_SHIPPED表的ReceiveFlag和ReceiveTime
|
|
|
|
|
public void updateBsMesShipped(@Param("boxList") List<MaterialPacking> boxList) throws Exception;
|
2025-04-10 18:40:28 +08:00
|
|
|
|
|
|
|
|
|
// 获取packing是否存在
|
|
|
|
|
public List<MaterialPacking> getBoxPacking(@Param("materialPackingName") String materialPackingName) throws Exception;
|
2025-03-21 13:36:45 +08:00
|
|
|
|
}
|