Skip to main content

Taker Information Card

This section describes the BfmTakerInformationCardComponent component.

Usage

You need to import it in your module and use it in your template.

taker-information-card.component.ts
import { BfmTakerInformationCardComponent } from '@celerofinancas/ui-charges';

@Component({
standalone: true,
selector: 'taker-information-card',
imports: [BfmTakerInformationCardComponent],
templateUrl: './taker-information-card.component.html',
})
export class TakerInformationCardComponent {}

Then, in your template, you can use the component like this:

taker-information-card.component.html
<bfm-taker-information-card 
[companyRelated]="companyRelatedData"
[contacts]="contactsData"
[financialRecordGroupPk]="financialRecordGroupPk"
[title]="'Client Data'"
(loadChargeDetails)="handleLoadChargeDetails($event)"
/>

Inputs

The BfmTakerInformationCardComponent component has the following inputs:

companyRelated

Company related data.

TypeDefault
CompanyRelatedundefined

contacts

Contact data.

TypeDefault
Contact[][]

financialRecordGroupPk

Primary key of the financial record group.

TypeDefault
string''

title

Title of the taker information card.

TypeDefault
string''

Events

The BfmTakerInformationCardComponent component has the following events:

loadChargeDetails

Event to load charge details.

Type
EventEmitter