56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
import { Injectable } from '@nestjs/common';
|
|
import { BaseDetailManager } from 'src/core/modules/domain/usecase/managers/base-detail.manager';
|
|
import { PaymentMethodEntity } from '../../entities/payment-method.entity';
|
|
import { RelationParam } from 'src/core/modules/domain/entities/base-filter.entity';
|
|
|
|
@Injectable()
|
|
export class DetailPaymentMethodManager extends BaseDetailManager<PaymentMethodEntity> {
|
|
async prepareData(): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
async beforeProcess(): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
async afterProcess(): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
get relations(): RelationParam {
|
|
return {
|
|
// relation only join (for query purpose)
|
|
joinRelations: [],
|
|
|
|
// relation join and select (relasi yang ingin ditampilkan),
|
|
selectRelations: [],
|
|
|
|
// relation yang hanya ingin dihitung (akan return number)
|
|
countRelations: [],
|
|
};
|
|
}
|
|
|
|
get selects(): string[] {
|
|
return [
|
|
`${this.tableName}.id`,
|
|
`${this.tableName}.status`,
|
|
`${this.tableName}.type`,
|
|
`${this.tableName}.issuer_name`,
|
|
`${this.tableName}.account_number`,
|
|
`${this.tableName}.account_name`,
|
|
`${this.tableName}.qr_image`,
|
|
`${this.tableName}.note`,
|
|
`${this.tableName}.created_at`,
|
|
`${this.tableName}.updated_at`,
|
|
`${this.tableName}.creator_name`,
|
|
`${this.tableName}.editor_name`,
|
|
];
|
|
}
|
|
|
|
get setFindProperties(): any {
|
|
return {
|
|
id: this.dataId,
|
|
};
|
|
}
|
|
}
|