| | |
| | | return selectOne(MesProBatchDO::getCode, code); |
| | | } |
| | | |
| | | default MesProBatchDO selectByTempCode(String tempCode) { |
| | | return selectOne(MesProBatchDO::getTempCode, tempCode); |
| | | } |
| | | |
| | | /** 生成临时批次码用的全局序号:解析 temp_code 的数字后缀,不存在则返回 0。 |
| | | * 不能过滤 deleted,唯一索引 uk_temp_code 对逻辑删除行仍生效,忽略软删会导致序号回退、码值重复 */ |
| | | @Select("SELECT IFNULL(MAX(CAST(SUBSTRING(temp_code, 4) AS UNSIGNED)), 0) FROM mes_pro_batch") |
| | | Integer selectMaxTempCodeSeq(); |
| | | |
| | | default Long selectCountByLineId(Long lineId) { |
| | | return selectCount(MesProBatchDO::getLineId, lineId); |
| | | } |
| | |
| | | int markInbound(@org.apache.ibatis.annotations.Param("id") Long id, @org.apache.ibatis.annotations.Param("eventId") Long eventId, |
| | | @org.apache.ibatis.annotations.Param("deviceCode") String deviceCode, @org.apache.ibatis.annotations.Param("lineCode") String lineCode); |
| | | |
| | | /** 批次整批扫码入库回写:入库袋数直接置为批次袋数,幂等(已有入库标记的不再更新) */ |
| | | @org.apache.ibatis.annotations.Update("UPDATE mes_pro_batch SET inbound_time = NOW(), inbound_event_id = #{eventId}, inbound_line_code = #{lineCode}, inbound_bag_quantity = #{bagQuantity}, update_time = NOW() " |
| | | + "WHERE id = #{id} AND deleted = 0 AND inbound_event_id IS NULL") |
| | | int markBatchInbound(@org.apache.ibatis.annotations.Param("id") Long id, @org.apache.ibatis.annotations.Param("eventId") Long eventId, |
| | | @org.apache.ibatis.annotations.Param("lineCode") String lineCode, @org.apache.ibatis.annotations.Param("bagQuantity") Integer bagQuantity); |
| | | |
| | | default PageResult<MesProBatchDO> selectPage(MesProBatchPageReqVO reqVO) { |
| | | return selectPage(reqVO, new LambdaQueryWrapperX<MesProBatchDO>() |
| | | .likeIfPresent(MesProBatchDO::getCode, reqVO.getCode()) |
| | | .likeIfPresent(MesProBatchDO::getTempCode, reqVO.getTempCode()) |
| | | .eqIfPresent(MesProBatchDO::getItemId, reqVO.getItemId()) |
| | | .eqIfPresent(MesProBatchDO::getLineId, reqVO.getLineId()) |
| | | .likeIfPresent(MesProBatchDO::getLineCode, reqVO.getLineCode()) |