WIP: #7134 SupplierBalance #3173

Draft
jsegarra wants to merge 6 commits from 7134-supplierBalance into dev
1 changed files with 1 additions and 1 deletions
Showing only changes of commit aa2f9985cd - Show all commits

View File

@ -66,7 +66,7 @@ module.exports = Self => {
stmts.push(`DROP TEMPORARY TABLE tmp.supplierStatement`);
const sql = ParameterizedSQL.join(stmts, ';');
const results = await conn.executeStmt(sql);
const resultsIndex = stmts.length - 1;
const resultsIndex = stmts.length - 2;
const result = results[resultsIndex];
return result;
};