Invoice Detail
This section describes the BfmInvoiceDetailComponent component.
Usage
You need to import it in your module and use it in your template.
invoice-detail.component.ts
import { BfmInvoiceDetailComponent } from '@celerofinancas/ui-charges';
@Component({
standalone: true,
selector: 'invoice-detail',
imports: [BfmInvoiceDetailComponent],
templateUrl: './invoice-detail.component.html',
})
export class InvoiceDetailComponent {}
Then, in your template, you can use the component like this:
invoice-detail.component.html
<bfm-invoice-detail
[billCounter]="0"
[invalid]="false"
[invoiceList]="[]"
[takerCity]="'City Name'"
/>
Inputs
The BfmInvoiceDetailComponent component has the following inputs:
billCounter
Bill counter
| Type | Default |
|---|---|
| number | 0 |
invalid
Massive invoice validation
| Type | Default |
|---|---|
| boolean | false |
invoiceList
Invoice List or unitary object
| Type | Default |
|---|---|
| any[] | [] |
takerCity
City of the taker
| Type |
|---|
| string |
Events
The BfmInvoiceDetailComponent component has no events.