| | |
| | | import com.baomidou.mybatisplus.mapper.EntityWrapper; |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.baomidou.mybatisplus.service.impl.ServiceImpl; |
| | | import com.core.common.Cools; |
| | | import com.core.exception.CoolException; |
| | | import com.zy.asrs.entity.*; |
| | | import com.zy.asrs.entity.param.LocDetlAdjustParam; |
| | |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public Page<ManLocDetl> selectAllPage(Page<ManLocDetl> param) { |
| | | Map<String, Object> condition = param.getCondition(); |
| | | List<ManLocDetl> manLocDetls = baseMapper.selectAllPage(condition); |
| | | param.setRecords(manLocDetls); |
| | | param.setTotal(baseMapper.selectAllPageSize(condition)); |
| | | return param; |
| | | } |
| | | |
| | | @Override |
| | | public ManLocDetl selectInventory(String LocNo, String Matnr, String batch) { |
| | | return baseMapper.selectInventory(LocNo,Matnr,batch); |
| | | } |
| | | |
| | | @Override |
| | | public int deleteDatailed(String locNo, String matnr, String batch) { |
| | | return baseMapper.deleteDatailed(locNo,matnr,batch); |
| | | } |
| | | |
| | | @Override |
| | | public int increase(Double anfme,String locNo, String matnr, String batch,Double weight) { |
| | | return baseMapper.increase(anfme,locNo,matnr,batch,weight); |
| | | } |
| | | |
| | | |
| | | } |