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.
| Type | Default |
|---|---|
CompanyRelated | undefined |
contacts
Contact data.
| Type | Default |
|---|---|
Contact[] | [] |
financialRecordGroupPk
Primary key of the financial record group.
| Type | Default |
|---|---|
string | '' |
title
Title of the taker information card.
| Type | Default |
|---|---|
string | '' |
Events
The BfmTakerInformationCardComponent component has the following events:
loadChargeDetails
Event to load charge details.
| Type |
|---|
EventEmitter |