Documents - Gps Tax
This section describes the BfmDocumentsGpsTaxComponent component.
Composition
The BfmDocumentsGpsTaxComponent has no any composition components.
Usage
You need to import it in your module and use it in your template.
documents-gps-tax.component.ts
import { BfmDocumentsGpsTaxComponent } from "@celerofinancas/ui-cash-flow";
@Component({
standalone: true,
selector: "documents-gps-tax",
imports: [BfmDocumentsGpsTaxComponent],
templateUrl: "./documents-gps-tax.component.html",
})
export class DocumentsGpsTaxComponent {}
Then, in your template, you can use the component like this:
documents-gps-tax.component.html
<bfm-document-gps-tax-form [fieldsOptions]="fieldsOptions" />
Inputs
The BfmDocumentsGpsTaxComponent component has the following inputs:
fieldsOptions
Fields options list
| Type |
|---|
{label: string; formControlName: string;}[] |
Default value:
[
{
label: "Nome ou razão social",
formControlName: "name",
},
{
label: "Telefone",
formControlName: "phone",
},
{
label: "Endereço",
formControlName: "address",
},
{
label: "Código do pagamento",
formControlName: "payment_code",
},
{
label: "Identificador",
formControlName: "cpf_cnpj",
},
{
label: "Valor do INSS",
formControlName: "inss_value",
},
{
label: "Valor de outras entidades",
formControlName: "other_entities_value",
},
{
label: "ATM/Multas e juros",
formControlName: "tax_atm_fee",
},
];
Events
The BfmDocumentsGpsTaxComponent component has no events.