Merge branch 'master' into 6738-restoreColumnPayrollWorker
gitea/salix/pipeline/pr-master This commit looks good
Details
gitea/salix/pipeline/pr-master This commit looks good
Details
This commit is contained in:
commit
18de9b4e13
|
@ -347,6 +347,18 @@ module.exports = Self => {
|
|||
if (hasWhere)
|
||||
stmt.merge(conn.makeWhere(problems));
|
||||
|
||||
if (filter.order) {
|
||||
if (typeof filter.order == 'string') filter.order = [filter.order];
|
||||
const index = filter.order.findIndex(o => o.includes('stateFk'));
|
||||
if (index > -1) {
|
||||
filter.order = [
|
||||
...filter.order.slice(0, index),
|
||||
'refFk ' + filter.order[index].split(' ')[1],
|
||||
...filter.order.slice(index)
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
stmt.merge(conn.makeOrderBy(filter.order));
|
||||
stmt.merge(conn.makeLimit(filter));
|
||||
const ticketsIndex = stmts.push(stmt) - 1;
|
||||
|
|
Loading…
Reference in New Issue