From ed77347fe1a92776d9c1de7137002b60b6be3522 Mon Sep 17 00:00:00 2001 From: jorgep Date: Thu, 25 Jan 2024 15:41:55 +0100 Subject: [PATCH] fix: #6557 replace procedure --- modules/worker/back/methods/worker/mySubordinates.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/modules/worker/back/methods/worker/mySubordinates.js b/modules/worker/back/methods/worker/mySubordinates.js index b6711e3827..540bb8551f 100644 --- a/modules/worker/back/methods/worker/mySubordinates.js +++ b/modules/worker/back/methods/worker/mySubordinates.js @@ -30,13 +30,12 @@ module.exports = Self => { if (typeof options == 'object') Object.assign(myOptions, options); - stmts.push(new ParameterizedSQL('CALL vn.subordinateGetList(?)', [userId])); - const queryIndex = stmts.push('SELECT * FROM tmp.subordinate') - 1; - stmts.push('DROP TEMPORARY TABLE tmp.subordinate'); + stmts.push(new ParameterizedSQL('CALL vn.worker_getHierarchy(?)', [userId])); + const queryIndex = stmts.push('SELECT * FROM tmp.workerHierarchyList') - 1; + stmts.push('DROP TEMPORARY TABLE tmp.workerHierarchyList'); const sql = ParameterizedSQL.join(stmts, ';'); const result = await conn.executeStmt(sql, myOptions); - return result[queryIndex]; }; };