no message

sdInAndOutDetailRepotr
HUOJIN\92525 2024-08-27 12:34:46 +08:00
parent be61c81fea
commit 6204fbf1a8
1 changed files with 16 additions and 16 deletions

View File

@ -1591,7 +1591,7 @@ public class DefaultASNManager extends DefaultBaseManager implements
}else{
name=l;
}
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code ",
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code and l.warehouse.id="+WarehouseHolder.getWarehouse().getId()+" ",
new String[] { "code"},new Object[] {name});
if(Locations.size()<=0){
sb2.append((i+1)+"行"+name+";");
@ -1703,7 +1703,7 @@ public class DefaultASNManager extends DefaultBaseManager implements
name=l;
qty= expectedQuantity;
}
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code ",
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code and l.warehouse.id="+WarehouseHolder.getWarehouse().getId()+" ",
new String[] { "code"},new Object[] {name});
if(Locations.size()>0){
loc=Locations.get(0);
@ -1871,7 +1871,7 @@ public class DefaultASNManager extends DefaultBaseManager implements
}else{
name=l;
}
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code ",
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code and l.warehouse.id="+WarehouseHolder.getWarehouse().getId()+" ",
new String[] { "code"},new Object[] {name});
if(Locations.size()<=0){
sb2.append((i+1)+"行"+name+";");
@ -1954,7 +1954,7 @@ public class DefaultASNManager extends DefaultBaseManager implements
qty= quantity;
}
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code ",
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code and l.warehouse.id="+WarehouseHolder.getWarehouse().getId()+" ",
new String[] { "code"},new Object[] {name});
if(Locations.size()>0){
loc=Locations.get(0);
@ -2089,7 +2089,7 @@ public class DefaultASNManager extends DefaultBaseManager implements
}else{
name=l;
}
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code ",
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code and l.warehouse.id="+WarehouseHolder.getWarehouse().getId()+" ",
new String[] { "code"},new Object[] {name});
if(Locations.size()<=0){
sb2.append((i+1)+"行"+name+";");
@ -2186,7 +2186,7 @@ public class DefaultASNManager extends DefaultBaseManager implements
qty= quantity;
}
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code ",
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code and l.warehouse.id="+WarehouseHolder.getWarehouse().getId()+" ",
new String[] { "code"},new Object[] {name});
if(Locations.size()>0){
loc=Locations.get(0);
@ -2355,7 +2355,7 @@ public class DefaultASNManager extends DefaultBaseManager implements
}else{
name=l;
}
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code ",
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code and l.warehouse.id="+WarehouseHolder.getWarehouse().getId()+" ",
new String[] { "code"},new Object[] {name});
if(Locations.size()<=0){
sb2.append((i+1)+"行"+name+";");
@ -2451,7 +2451,7 @@ public class DefaultASNManager extends DefaultBaseManager implements
qty= quantity;
}
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code ",
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code and l.warehouse.id="+WarehouseHolder.getWarehouse().getId()+" ",
new String[] { "code"},new Object[] {name});
if(Locations.size()>0){
loc=Locations.get(0);
@ -2620,7 +2620,7 @@ public class DefaultASNManager extends DefaultBaseManager implements
}else{
name=l;
}
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code ",
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code and l.warehouse.id="+WarehouseHolder.getWarehouse().getId()+" ",
new String[] { "code"},new Object[] {name});
if(Locations.size()<=0){
sb2.append((i+1)+"行"+name+";");
@ -2716,7 +2716,7 @@ public class DefaultASNManager extends DefaultBaseManager implements
qty= quantity;
}
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code ",
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code and l.warehouse.id="+WarehouseHolder.getWarehouse().getId()+" ",
new String[] { "code"},new Object[] {name});
if(Locations.size()>0){
loc=Locations.get(0);
@ -2892,7 +2892,7 @@ public class DefaultASNManager extends DefaultBaseManager implements
}else{
name=l;
}
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code ",
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code and l.warehouse.id="+WarehouseHolder.getWarehouse().getId()+" ",
new String[] { "code"},new Object[] {name});
if(Locations.size()<=0){
sb2.append((i+1)+"行"+name+";");
@ -2989,7 +2989,7 @@ public class DefaultASNManager extends DefaultBaseManager implements
qty= quantity;
}
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code ",
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code and l.warehouse.id="+WarehouseHolder.getWarehouse().getId()+" ",
new String[] { "code"},new Object[] {name});
if(Locations.size()>0){
loc=Locations.get(0);
@ -3183,7 +3183,7 @@ public class DefaultASNManager extends DefaultBaseManager implements
}else{
name=l;
}
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code ",
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code and l.warehouse.id="+WarehouseHolder.getWarehouse().getId()+" ",
new String[] { "code"},new Object[] {name});
if(Locations.size()<=0){
sb2.append((i+1)+"行"+name+";");
@ -3267,7 +3267,7 @@ public class DefaultASNManager extends DefaultBaseManager implements
qty= quantity;
}
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code ",
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code and l.warehouse.id="+WarehouseHolder.getWarehouse().getId()+" ",
new String[] { "code"},new Object[] {name});
if(Locations.size()>0){
loc=Locations.get(0);
@ -3407,7 +3407,7 @@ public class DefaultASNManager extends DefaultBaseManager implements
}else{
name=l;
}
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code ",
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code and l.warehouse.id="+WarehouseHolder.getWarehouse().getId()+" ",
new String[] { "code"},new Object[] {name});
if(Locations.size()<=0){
sb2.append((i+1)+"行"+name+";");
@ -3491,7 +3491,7 @@ public class DefaultASNManager extends DefaultBaseManager implements
qty= quantity;
}
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code ",
List<Location> Locations = commonDao.findByQuery(" from Location l where l.code=:code and l.warehouse.id="+WarehouseHolder.getWarehouse().getId()+" ",
new String[] { "code"},new Object[] {name});
if(Locations.size()>0){
loc=Locations.get(0);