|
@@ -102,7 +102,9 @@ public class ClientUserInfo extends UserInfo {
|
|
|
return new ArrayList<>();
|
|
|
}
|
|
|
Rows rows = controller.dbConnect.runSqlQuery("select distinct sa_saleareaid from sys_enterprise_tradefield where siteid='" + getSiteId() + "' and sys_enterpriseid=" + getEnterpriseId());
|
|
|
- return rows.toArrayList("sa_saleareaid", new ArrayList<>());
|
|
|
+ ArrayList<Long> sa_saleareaids = rows.toArrayList("sa_saleareaid", new ArrayList<>());
|
|
|
+ sa_saleareaids.add(0l);
|
|
|
+ return sa_saleareaids;
|
|
|
}
|
|
|
|
|
|
public Row getReportHrRow() throws YosException {
|