feat: add column pos name
continuous-integration/drone/push Build is passing Details

pull/87/head
Firman Ramdhani 2024-09-11 12:42:09 +07:00
parent 9709c4719b
commit d708ef9eee
1 changed files with 2 additions and 2 deletions

View File

@ -123,9 +123,9 @@ export class IndexReconciliationManager extends BaseIndexManager<TransactionEnti
if (this.filterParam.counter_name) {
queryBuilder.andWhere(
`${this.tableName}.creator_counter_name In (:...counters)`,
`${this.tableName}.creator_counter_name In (:...counterNames)`,
{
counters: [this.filterParam.counter_name],
counterNames: [this.filterParam.counter_name],
},
);
}