|
|
@@ -397,7 +397,7 @@ public class dispatchItems extends Controller {
|
|
|
|
|
|
SQLFactory areasqlFactory = new SQLFactory(this, "发货单明细关联区域列表查询");
|
|
|
areasqlFactory.addParameter("siteid", siteid);
|
|
|
- areasqlFactory.addParameter_in("sys_enterpriseids", rows.toArrayList("sys_enterpriseid", new ArrayList<>(),true));
|
|
|
+ areasqlFactory.addParameter_in("sys_enterpriseids", rows.toArrayList("sys_enterpriseid", new ArrayList<>()));
|
|
|
Rows areaRows = dbConnect.runSqlQuery(areasqlFactory);
|
|
|
RowsMap areaRowsMap = areaRows.toRowsMap("sys_enterpriseid");
|
|
|
|
|
|
@@ -425,7 +425,7 @@ public class dispatchItems extends Controller {
|
|
|
}
|
|
|
SQLFactory sqlFactory1 = new SQLFactory(this, "商品发货数量汇总");
|
|
|
sqlFactory1.addParameter("siteid", siteid);
|
|
|
- sqlFactory1.addParameter_in("itemno", rows.toArrayList("itemno", new ArrayList<>(),true));
|
|
|
+ sqlFactory1.addParameter_in("itemno", rows.toArrayList("itemno", new ArrayList<>()));
|
|
|
Rows sumQtyRows = dbConnect.runSqlQuery(sqlFactory1);
|
|
|
RowsMap sumQtyRowsMap = sumQtyRows.toRowsMap("itemno");
|
|
|
|