Skip to main content

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

TypeDefault
number0

invalid

Massive invoice validation

TypeDefault
booleanfalse

invoiceList

Invoice List or unitary object

TypeDefault
any[][]

takerCity

City of the taker

Type
string

Events

The BfmInvoiceDetailComponent component has no events.