6210-filterClient #1755

Merged
guillermo merged 3 commits from 6210-filterClient into dev 2023-09-20 05:07:23 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 77b55e5b09 - Show all commits

View File

@ -81,7 +81,7 @@ module.exports = Self => {
if (args.zoneFk) {
let stmts = [];
stmts.push(new ParameterizedSQL('CALL vn.zone_getPostalCode(?)', [ args.zoneFk]));
stmts.push(new ParameterizedSQL('CALL vn.zone_getPostalCode(?)', [args.zoneFk]));
stmts.push(`SELECT name FROM tmp.zoneNodes`);
stmts.push(`DROP TEMPORARY TABLE IF EXISTS tmp.zoneNodes`);
const sql = ParameterizedSQL.join(stmts, ';');