| | |
| | | |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import com.zy.asrs.entity.LocDetl; |
| | | import com.zy.asrs.entity.result.LocDetlAll; |
| | | import com.zy.asrs.entity.result.LocDetlDTO; |
| | | import com.zy.asrs.entity.result.StockVo; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | |
| | | |
| | | Integer getStockOutPageCount(Map<String, Object> map); |
| | | |
| | | List<LocDetl> getStockOutPage2(Map<String, Object> map); |
| | | |
| | | Integer getStockOutPageCount2(Map<String, Object> map); |
| | | |
| | | @Update("update asr_loc_detl set loc_no = #{newLocNo}, modi_time=getDate() where loc_no = #{oldLocNo}") |
| | | int updateLocNo(String newLocNo, String oldLocNo); |
| | | |
| | |
| | | List<LocDetl> getStockStatis(Map<String, Object> map); |
| | | |
| | | Integer getStockStatisCount(Map<String, Object> map); |
| | | |
| | | List<LocDetlAll> getStockStatisAll(Map<String, Object> map); |
| | | |
| | | Integer getStockStatisCountAll(Map<String, Object> map); |
| | | |
| | | List<LocDetlAll> getOwnerStatisAll(Map<String, Object> map); |
| | | |
| | | Integer getOwnerStatisAllCount(Map<String, Object> map); |
| | | |
| | | List<LocDetl> getStockStatisExcel(); |
| | | |
| | |
| | | |
| | | // ------------------------------------------------- |
| | | |
| | | List<LocDetl> queryStock(@Param("matnr")String matnr, @Param("batch")String batch, @Param("orderNo")String orderNo, @Param("locNos") Set<String> locNos); |
| | | List<LocDetl> queryStock(@Param("matnr")String matnr, @Param("batch")String batch, @Param("owner")int owner); |
| | | |
| | | List<LocDetl> queryStockViewMerge(@Param("locNo") String locNo,@Param("zpallet") String zpallet,@Param("matnr") String matnr); |
| | | |
| | | Double queryStockAnfme(String matnr, String batch); |
| | | |
| | |
| | | |
| | | Double selectLocDetlSumQty(String locNo); |
| | | |
| | | Integer queryStockViewMergeCount(@Param("row")int row,@Param("lev")int lev); |
| | | |
| | | //通过订单号、物料号、物料名称、规格、库位号进行模糊搜索 |
| | | List<LocDetl> searchByLike(String orderNo, String matnr, String maktx, String specs, String locNo); |
| | | |
| | | List<LocDetl> queryStock2(String matnr, String batch, int owner); |
| | | |
| | | List<LocDetlAll> selectAllOwner(LocDetlDTO locDetlDTO); |
| | | |
| | | int selectAllCount(LocDetlDTO locDetlDTO); |
| | | |
| | | List<LocDetlAll> selectAllPyment(LocDetlDTO locDetlDTO); |
| | | |
| | | int selectAllPymentcount(LocDetlDTO locDetlDTO); |
| | | Double sumAll(); |
| | | |
| | | String selectLocNoF(String locNo); |
| | | |
| | | List<LocDetl> queryStock3(String matnr, String batch, int owner); |
| | | } |