fix(SPG-600) Filter Sumber, Tipe, Kontak pada index booking belum berjalan

pull/32/head
Aswin Ashar Abdullah 2024-07-18 15:36:38 +07:00
parent 853543ece5
commit cd6a5737e7
1 changed files with 3 additions and 3 deletions

View File

@ -87,11 +87,11 @@ export class IndexTransactionManager extends BaseIndexManager<TransactionEntity>
data: this.filterParam.invoice_codes,
},
{
cols: `${this.tableName}.type`,
cols: `${this.tableName}.type::text`,
data: this.filterParam.types,
},
{
cols: `${this.tableName}.customer_type`,
cols: `${this.tableName}.customer_type::text`,
data: this.filterParam.customer_types,
},
{
@ -99,7 +99,7 @@ export class IndexTransactionManager extends BaseIndexManager<TransactionEntity>
data: this.filterParam.customer_names,
},
{
cols: `${this.tableName}.payment_type`,
cols: `${this.tableName}.payment_type::text`,
data: this.filterParam.payment_types,
},
{