| | |
| | | |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import com.zy.asrs.entity.LocDetl; |
| | | import com.zy.asrs.entity.LocDetlWarningDTO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | |
| | | |
| | | Integer getStockStatisCount(Map<String, Object> condition); |
| | | |
| | | List<LocDetl> getStockStatisExcel(); |
| | | List<LocDetl> getStockStatisExcel(LocDetl locDetl); |
| | | |
| | | /** |
| | | * 库存上报ERP时,根据物料汇总查询库存总量 |
| | |
| | | @Select("select mat_no,mat_name,sum(qty) qty from asr_loc_detl group by mat_no,mat_name") |
| | | List<LocDetl> getStockSum(); |
| | | |
| | | List<LocDetlWarningDTO> selectAllWarning(LocDetlWarningDTO locDetlWarningDTO); |
| | | |
| | | int getAllWarningCount(LocDetlWarningDTO locDetlWarningDTO); |
| | | |
| | | List<LocDetl> selectByZpallet(String barcode); |
| | | |
| | | @Update("update asr_loc_detl set zpallet = #{tBarcode}, modi_time=getDate() where zpallet = #{sBarcode}") |
| | | int updateZpallet(String sBarcode, String tBarcode,String batch); |
| | | } |