...
|
...
|
@@ -351,14 +351,14 @@ public class StorageDepositServiceImpl implements IStorageDepositService, IBusin |
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public boolean queryIsShelfCodeExist(String shelfCode) {
|
|
|
public int queryIsShelfCodeExist(String shelfCode) {
|
|
|
//校验货位号是否存在
|
|
|
DepositShelfCode shelfCodeDb = depositShelfCodeMapper.selectByShelfCode(shelfCode);
|
|
|
if(null == shelfCodeDb) {
|
|
|
return false;
|
|
|
return 0;//不存在
|
|
|
}
|
|
|
|
|
|
return true;
|
|
|
return 1;//存在
|
|
|
}
|
|
|
|
|
|
private PageResponseBO<StorageDepositPickRsp> queryDepositPickListByQueryStr(String queryStr, Integer status, Integer depotNo){
|
...
|
...
|
|