|
|
@@ -65,7 +65,7 @@ public class dispatchItems extends Controller {
|
|
|
sqlFactory.addParameter_SQL("where", where);
|
|
|
sqlFactory.addParameter("sys_enterpriseid", content.getLong("sys_enterpriseid"));
|
|
|
sqlFactory.addParameter("siteid", siteid);
|
|
|
- Rows rows = dbConnect.runSqlQuery(sqlFactory);
|
|
|
+ Rows rows = dbConnect.runSqlQuery(sqlFactory.getSQL(false));
|
|
|
|
|
|
return getSucReturnObject().setData(rows).toString();
|
|
|
}
|
|
|
@@ -103,7 +103,7 @@ public class dispatchItems extends Controller {
|
|
|
sqlFactory.addParameter("sa_dispatchid", content.getLongValue("sa_dispatchid"));
|
|
|
sqlFactory.addParameter("siteid", siteid);
|
|
|
|
|
|
- Rows rows = dbConnect.runSqlQuery(sqlFactory);
|
|
|
+ Rows rows = dbConnect.runSqlQuery(sqlFactory.getSQL(false));
|
|
|
|
|
|
return getSucReturnObject().setData(rows).toString();
|
|
|
}
|