@senior-agronegocio/angular-components 0.0.9853 → 0.0.9855
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/senior-agronegocio-angular-components.umd.js +917 -376
- package/bundles/senior-agronegocio-angular-components.umd.js.map +1 -1
- package/bundles/senior-agronegocio-angular-components.umd.min.js +2 -2
- package/bundles/senior-agronegocio-angular-components.umd.min.js.map +1 -1
- package/components/event-control-board/event-control-board.component.d.ts +1 -1
- package/components/index.d.ts +1 -0
- package/components/modal-invoice-pj-selector/index.d.ts +4 -0
- package/components/modal-invoice-pj-selector/modal-invoice-pj-selector-options.interface.d.ts +10 -0
- package/components/modal-invoice-pj-selector/modal-invoice-pj-selector.component.d.ts +41 -0
- package/components/modal-invoice-pj-selector/modal-invoice-pj-selector.module.d.ts +2 -0
- package/components/modal-invoice-pj-selector/services/agro-invoice/agro-invoice.module.d.ts +2 -0
- package/components/modal-invoice-pj-selector/services/agro-invoice/agro-invoice.service.d.ts +16 -0
- package/components/modal-invoice-pj-selector/services/agro-invoice/index.d.ts +2 -0
- package/components/modal-invoice-pj-selector/services/agro-invoice/interfaces.d.ts +73 -0
- package/esm2015/common/agro-object-stringifier.class.js +2 -4
- package/esm2015/common/agro-regex.constant.js +2 -2
- package/esm2015/common/agro-string-utils.class.js +39 -51
- package/esm2015/components/event-control-board/event-control-board.component.js +12 -15
- package/esm2015/components/index.js +2 -1
- package/esm2015/components/modal-invoice-pj-selector/index.js +4 -0
- package/esm2015/components/modal-invoice-pj-selector/modal-invoice-pj-selector-options.interface.js +1 -0
- package/esm2015/components/modal-invoice-pj-selector/modal-invoice-pj-selector.component.js +193 -0
- package/esm2015/components/modal-invoice-pj-selector/modal-invoice-pj-selector.module.js +42 -0
- package/esm2015/components/modal-invoice-pj-selector/services/agro-invoice/agro-invoice.module.js +28 -0
- package/esm2015/components/modal-invoice-pj-selector/services/agro-invoice/agro-invoice.service.js +48 -0
- package/esm2015/components/modal-invoice-pj-selector/services/agro-invoice/index.js +3 -0
- package/esm2015/components/modal-invoice-pj-selector/services/agro-invoice/interfaces.js +13 -0
- package/esm2015/lib-translation.module.js +3 -1
- package/esm2015/pipe/index.js +5 -4
- package/esm2015/pipe/kilogram/index.js +3 -0
- package/esm2015/pipe/kilogram/kilogram.module.js +17 -0
- package/esm2015/pipe/kilogram/kilogram.pipe.js +38 -0
- package/esm2015/pipe/telephone/telephone.pipe.js +27 -18
- package/esm2015/public-api.js +2 -2
- package/esm2015/services/entity-service.js +124 -0
- package/esm2015/services/i18n/en-US.js +19 -2
- package/esm2015/services/i18n/es-CO.js +18 -1
- package/esm2015/services/i18n/pt-BR.js +20 -2
- package/esm2015/services/lib-translation.service.js +2 -2
- package/esm5/common/agro-object-stringifier.class.js +2 -4
- package/esm5/common/agro-regex.constant.js +2 -2
- package/esm5/common/agro-string-utils.class.js +46 -58
- package/esm5/components/event-control-board/event-control-board.component.js +12 -15
- package/esm5/components/index.js +2 -1
- package/esm5/components/modal-invoice-pj-selector/index.js +4 -0
- package/esm5/components/modal-invoice-pj-selector/modal-invoice-pj-selector-options.interface.js +1 -0
- package/esm5/components/modal-invoice-pj-selector/modal-invoice-pj-selector.component.js +202 -0
- package/esm5/components/modal-invoice-pj-selector/modal-invoice-pj-selector.module.js +45 -0
- package/esm5/components/modal-invoice-pj-selector/services/agro-invoice/agro-invoice.module.js +31 -0
- package/esm5/components/modal-invoice-pj-selector/services/agro-invoice/agro-invoice.service.js +55 -0
- package/esm5/components/modal-invoice-pj-selector/services/agro-invoice/index.js +3 -0
- package/esm5/components/modal-invoice-pj-selector/services/agro-invoice/interfaces.js +13 -0
- package/esm5/lib-translation.module.js +3 -1
- package/esm5/pipe/index.js +5 -4
- package/esm5/pipe/kilogram/index.js +3 -0
- package/esm5/pipe/kilogram/kilogram.module.js +20 -0
- package/esm5/pipe/kilogram/kilogram.pipe.js +41 -0
- package/esm5/pipe/telephone/telephone.pipe.js +27 -18
- package/esm5/public-api.js +2 -2
- package/esm5/services/entity-service.js +135 -0
- package/esm5/services/i18n/en-US.js +19 -2
- package/esm5/services/i18n/es-CO.js +18 -1
- package/esm5/services/i18n/pt-BR.js +20 -2
- package/esm5/services/lib-translation.service.js +2 -2
- package/fesm2015/senior-agronegocio-angular-components.js +735 -237
- package/fesm2015/senior-agronegocio-angular-components.js.map +1 -1
- package/fesm5/senior-agronegocio-angular-components.js +920 -385
- package/fesm5/senior-agronegocio-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/pipe/index.d.ts +4 -3
- package/pipe/kilogram/index.d.ts +2 -0
- package/pipe/kilogram/kilogram.module.d.ts +2 -0
- package/pipe/kilogram/kilogram.pipe.d.ts +8 -0
- package/public-api.d.ts +1 -1
- package/senior-agronegocio-angular-components.metadata.json +1 -1
- package/services/entity-service.d.ts +72 -0
- package/services/i18n/en-US.d.ts +17 -0
- package/services/i18n/es-CO.d.ts +17 -0
- package/services/i18n/pt-BR.d.ts +18 -0
package/package.json
CHANGED
package/pipe/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
1
|
+
export { KilogramModule, KilogramPipe } from "./kilogram/index";
|
|
2
|
+
export { CnpjCpfPipe, CnpjCpfPipeModule } from "./cnpj-cpf/index";
|
|
3
|
+
export { StringifierPipe, StringifierPipeModule } from "./stringifier/index";
|
|
4
|
+
export { TelephonePipe, TelephonePipeModule } from "./telephone/index";
|
|
4
5
|
export { LibTranslatePipe } from "./lib-translate.pipe";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { DecimalPipe } from "@angular/common";
|
|
2
|
+
import { PipeTransform } from "@angular/core";
|
|
3
|
+
export declare class KilogramPipe implements PipeTransform {
|
|
4
|
+
private readonly decimalPipe;
|
|
5
|
+
constructor(decimalPipe: DecimalPipe);
|
|
6
|
+
transform(value: number, format?: string, kgCaseInsensitive?: "UPPER" | "LOWER"): string;
|
|
7
|
+
private replaceLastDotWithComma;
|
|
8
|
+
}
|
package/public-api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export * from "./form-validator/";
|
|
|
2
2
|
export * from "./enums";
|
|
3
3
|
export * from "./common";
|
|
4
4
|
export * from "./services";
|
|
5
|
-
export * from "./components";
|
|
6
5
|
export * from './pipe';
|
|
6
|
+
export * from "./components";
|
|
7
7
|
export { LibTranslationModule } from "./lib-translation.module";
|
|
8
8
|
export { AgroAngularComponentsModule, HostProjectConfigs, HostProjectConfigsInjectionToken } from "./agro-angular-components.module";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"__symbolic":"module","version":4,"exports":[{"from":"./
|
|
1
|
+
{"__symbolic":"module","version":4,"exports":[{"from":"./event-control-board/index"},{"from":"./event-steps/index"},{"from":"./cancel-event-dialog/index"},{"from":"./modal-invoice-pj-selector/index"},{"export":[{"name":"AgroFormValidator","as":"AgroFormValidator"}],"from":"./agro-form-validator"},{"export":[{"name":"AgroEntityStatus","as":"AgroEntityStatus"}],"from":"./agro-entity-status.enum"},{"export":[{"name":"AGRO_NUMBERS","as":"AGRO_NUMBERS"},{"name":"NUMBERS","as":"NUMBERS"}],"from":"./agro-numbers.enum"},{"export":[{"name":"AgroStringMasks","as":"AgroStringMasks"}],"from":"./agro-string-masks.enum"},{"export":[{"name":"DateComparisonType","as":"DateComparisonType"}],"from":"./date-comparison-type.enum"},{"export":[{"name":"HttpCodes","as":"HttpCodes"}],"from":"./http-codes.enum"},{"export":[{"name":"NumberComparisonType","as":"NumberComparisonType"}],"from":"./number-comparison-type.enum"},{"export":[{"name":"AgroCookieUtils","as":"AgroCookieUtils"}],"from":"./agro-cookie-utils.class"},{"export":[{"name":"AgroObjectUtils","as":"AgroObjectUtils"}],"from":"./agro-object-utils.class"},{"export":[{"name":"AgroDateUtils","as":"AgroDateUtils"}],"from":"./agro-date-utils.class"},{"export":[{"name":"AgroPlatformUtils","as":"AgroPlatformUtils"}],"from":"./agro-platform-utils.class"},{"export":[{"name":"AgroStringUtils","as":"AgroStringUtils"},{"name":"NullableString","as":"NullableString"}],"from":"./agro-string-utils.class"},{"export":[{"name":"AgroNumberUtils","as":"AgroNumberUtils"}],"from":"./agro-number-utils.class"},{"export":[{"name":"Colors","as":"Colors"}],"from":"./colors.class"},{"export":[{"name":"AgroNameUtils","as":"AgroNameUtils"}],"from":"./agro-name-utils.class"},{"export":[{"name":"AgroArrayUtils","as":"AgroArrayUtils"}],"from":"./agro-array-utils.class"},{"export":[{"name":"AgroLogics","as":"AgroLogics"},{"name":"DistributionResult","as":"DistributionResult"}],"from":"./agro-logics.class"},{"export":[{"name":"AGRO_REGEX","as":"AGRO_REGEX"}],"from":"./agro-regex.constant"},{"export":[{"name":"LibTranslationService","as":"LibTranslationService"}],"from":"./lib-translation.service"},{"export":[{"name":"KilogramModule","as":"KilogramModule"},{"name":"KilogramPipe","as":"KilogramPipe"}],"from":"./kilogram/index"},{"export":[{"name":"CnpjCpfPipe","as":"CnpjCpfPipe"},{"name":"CnpjCpfPipeModule","as":"CnpjCpfPipeModule"}],"from":"./cnpj-cpf/index"},{"export":[{"name":"StringifierPipe","as":"StringifierPipe"},{"name":"StringifierPipeModule","as":"StringifierPipeModule"}],"from":"./stringifier/index"},{"export":[{"name":"TelephonePipe","as":"TelephonePipe"},{"name":"TelephonePipeModule","as":"TelephonePipeModule"}],"from":"./telephone/index"},{"export":[{"name":"LibTranslatePipe","as":"LibTranslatePipe"}],"from":"./lib-translate.pipe"}],"metadata":{"LibTranslationModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":5,"character":1},"arguments":[{"declarations":[{"__symbolic":"reference","name":"ɵa"}],"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":10,"character":4}],"providers":[{"__symbolic":"reference","name":"LibTranslationService"}],"exports":[{"__symbolic":"reference","name":"ɵa"}]}]}],"members":{}},"AgroAngularComponentsModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":13,"character":1},"arguments":[{}]}],"members":{},"statics":{"forRoot":{"__symbolic":"function","parameters":["config"],"value":{"ngModule":{"__symbolic":"reference","name":"AgroAngularComponentsModule"},"providers":[{"provide":{"__symbolic":"reference","name":"HostProjectConfigsInjectionToken"},"useValue":{"__symbolic":"reference","name":"config"}}]}}}},"HostProjectConfigs":{"__symbolic":"interface"},"HostProjectConfigsInjectionToken":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":6,"character":52},"arguments":["hostProjectConfigs"]},"ɵa":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Pipe","line":3,"character":1},"arguments":[{"name":"libTranslate"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"ɵb"}]}],"transform":[{"__symbolic":"method"}]}},"ɵb":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":7,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}],"getLangOfUser":[{"__symbolic":"method"}],"setLang":[{"__symbolic":"method"}],"instant":[{"__symbolic":"method"}],"get":[{"__symbolic":"method"}]},"statics":{"ɵprov":{}}}},"origins":{"LibTranslationModule":"./lib-translation.module","AgroAngularComponentsModule":"./agro-angular-components.module","HostProjectConfigs":"./agro-angular-components.module","HostProjectConfigsInjectionToken":"./agro-angular-components.module","ɵa":"./pipe/lib-translate.pipe","ɵb":"./services/lib-translation.service"},"importAs":"@senior-agronegocio/angular-components"}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { HttpParams, HttpClient } from "@angular/common/http";
|
|
2
|
+
import { MessageService, SortMeta } from "primeng";
|
|
3
|
+
import { LibTranslationService as TranslateService } from "../services/lib-translation.service";
|
|
4
|
+
export declare class AgroEntityService<T> {
|
|
5
|
+
protected http: HttpClient;
|
|
6
|
+
protected messageService: MessageService;
|
|
7
|
+
protected entityUrl: string;
|
|
8
|
+
protected actionsUrl: string;
|
|
9
|
+
protected queriesUrl: string;
|
|
10
|
+
protected translate: TranslateService;
|
|
11
|
+
constructor(http: HttpClient, messageService: MessageService, entityUrl: string, actionsUrl: string, queriesUrl: string, translate: TranslateService);
|
|
12
|
+
getListQueryParams(listParams: ListParams): HttpParams;
|
|
13
|
+
private getBodyParams;
|
|
14
|
+
private getBodyFilters;
|
|
15
|
+
defaultCatch(errorMsgs?: ErrorMessage[]): import("rxjs").OperatorFunction<unknown, unknown>;
|
|
16
|
+
getErrorMessage(err: any): any;
|
|
17
|
+
list(listParams: ListParams, errorMessage?: ErrorMessage[]): import("rxjs").Observable<unknown>;
|
|
18
|
+
get(id: any, errorMessage?: ErrorMessage[]): import("rxjs").Observable<unknown>;
|
|
19
|
+
insert(entity: T, errorMessage?: ErrorMessage[]): import("rxjs").Observable<unknown>;
|
|
20
|
+
update(id: any, entity: T, errorMessage?: ErrorMessage[]): import("rxjs").Observable<unknown>;
|
|
21
|
+
delete(id: any, errorMessage?: ErrorMessage[]): import("rxjs").Observable<unknown>;
|
|
22
|
+
listCustomFilter(listParams: ListParams, action: string, errorMessage?: ErrorMessage[]): import("rxjs").Observable<unknown>;
|
|
23
|
+
}
|
|
24
|
+
export interface PayloadRequest {
|
|
25
|
+
search: RecFiltrosMensagemInfo;
|
|
26
|
+
pageRequest: RecPageRequest;
|
|
27
|
+
}
|
|
28
|
+
export interface RecFiltrosMensagemInfo {
|
|
29
|
+
titulo: string;
|
|
30
|
+
conteudo: string;
|
|
31
|
+
}
|
|
32
|
+
export interface PayloadRequestGrupo {
|
|
33
|
+
search: RecFiltrosGrupoProdutor;
|
|
34
|
+
pageRequest: RecPageRequest;
|
|
35
|
+
}
|
|
36
|
+
export interface RecFiltrosGrupoProdutor {
|
|
37
|
+
nome: string;
|
|
38
|
+
}
|
|
39
|
+
export interface RecPageRequest {
|
|
40
|
+
offset: number;
|
|
41
|
+
size: number;
|
|
42
|
+
}
|
|
43
|
+
export interface ListParams {
|
|
44
|
+
page?: number;
|
|
45
|
+
size?: number;
|
|
46
|
+
sort?: SortMeta[];
|
|
47
|
+
filterQuery?: string;
|
|
48
|
+
displayFields?: string[];
|
|
49
|
+
}
|
|
50
|
+
export interface ListParams {
|
|
51
|
+
page?: number;
|
|
52
|
+
size?: number;
|
|
53
|
+
sort?: SortMeta[];
|
|
54
|
+
filterQuery?: string;
|
|
55
|
+
displayFields?: string[];
|
|
56
|
+
}
|
|
57
|
+
export interface RecPageRequest {
|
|
58
|
+
offset: number;
|
|
59
|
+
size: number;
|
|
60
|
+
}
|
|
61
|
+
export interface BodyParams {
|
|
62
|
+
offset?: number;
|
|
63
|
+
size?: number;
|
|
64
|
+
orderBy?: string;
|
|
65
|
+
filter?: string;
|
|
66
|
+
displayfields?: string;
|
|
67
|
+
}
|
|
68
|
+
export interface ErrorMessage {
|
|
69
|
+
status: number;
|
|
70
|
+
summary: string;
|
|
71
|
+
detail?: string;
|
|
72
|
+
}
|
package/services/i18n/en-US.d.ts
CHANGED
|
@@ -243,5 +243,22 @@ declare const enUS: {
|
|
|
243
243
|
"agro.angular_components.TRANSFER_CREATE_SERVICE_INVOICE": string;
|
|
244
244
|
"agro.angular_components.TRANSFER_CANCEL_SERVICE_INVOICE": string;
|
|
245
245
|
"agro.angular_components.REOPEN_INVOICE_FIXATION": string;
|
|
246
|
+
"agro.angular_components.INVOICE_CLOSE_INVOICE": string;
|
|
247
|
+
"agro.angular_components.CIDASC_INTEGRATION": string;
|
|
248
|
+
"agro.angular_components.CIDASC_CANCELLATION": string;
|
|
249
|
+
"agro.angular_components.CIDASC_DATA_LOAD_CULTURE": string;
|
|
250
|
+
"agro.angular_components.CIDASC_DATA_LOAD_PEST": string;
|
|
251
|
+
"agro.angular_components.CIDASC_DATA_LOAD_PRODUCT": string;
|
|
252
|
+
"agro.angular_components.CIDASC_DATA_LOAD_MEASURE_UNIT": string;
|
|
253
|
+
"agro.angular_components.CIDASC_DATA_LOAD_COMPOSED_MEASURE_UNIT": string;
|
|
254
|
+
"agro.angular_components.agronomic_prescription_origin_event": string;
|
|
255
|
+
"agro.angular_components.number_or_series": string;
|
|
256
|
+
"agro.angular_components.panel_title_external_invoice_add_external_invoice": string;
|
|
257
|
+
"agro.angular_components.add_pj_invoice_modal_no_invoices_found": string;
|
|
258
|
+
"agro.angular_components.number": string;
|
|
259
|
+
"agro.angular_components.series": string;
|
|
260
|
+
"agro.angular_components.itens": string;
|
|
261
|
+
"agro.angular_components.quantity": string;
|
|
262
|
+
"agro.angular_components.issuance_date": string;
|
|
246
263
|
};
|
|
247
264
|
export default enUS;
|
package/services/i18n/es-CO.d.ts
CHANGED
|
@@ -243,5 +243,22 @@ declare const esCO: {
|
|
|
243
243
|
"agro.angular_components.TRANSFER_CREATE_SERVICE_INVOICE": string;
|
|
244
244
|
"agro.angular_components.TRANSFER_CANCEL_SERVICE_INVOICE": string;
|
|
245
245
|
"agro.angular_components.REOPEN_INVOICE_FIXATION": string;
|
|
246
|
+
"agro.angular_components.INVOICE_CLOSE_INVOICE": string;
|
|
247
|
+
"agro.angular_components.CIDASC_INTEGRATION": string;
|
|
248
|
+
"agro.angular_components.CIDASC_CANCELLATION": string;
|
|
249
|
+
"agro.angular_components.CIDASC_DATA_LOAD_CULTURE": string;
|
|
250
|
+
"agro.angular_components.CIDASC_DATA_LOAD_PEST": string;
|
|
251
|
+
"agro.angular_components.CIDASC_DATA_LOAD_PRODUCT": string;
|
|
252
|
+
"agro.angular_components.CIDASC_DATA_LOAD_MEASURE_UNIT": string;
|
|
253
|
+
"agro.angular_components.CIDASC_DATA_LOAD_COMPOSED_MEASURE_UNIT": string;
|
|
254
|
+
"agro.angular_components.agronomic_prescription_origin_event": string;
|
|
255
|
+
"agro.angular_components.number_or_series": string;
|
|
256
|
+
"agro.angular_components.panel_title_external_invoice_add_external_invoice": string;
|
|
257
|
+
"agro.angular_components.add_pj_invoice_modal_no_invoices_found": string;
|
|
258
|
+
"agro.angular_components.number": string;
|
|
259
|
+
"agro.angular_components.series": string;
|
|
260
|
+
"agro.angular_components.itens": string;
|
|
261
|
+
"agro.angular_components.quantity": string;
|
|
262
|
+
"agro.angular_components.issuance_date": string;
|
|
246
263
|
};
|
|
247
264
|
export default esCO;
|
package/services/i18n/pt-BR.d.ts
CHANGED
|
@@ -240,6 +240,7 @@ declare const ptBR: {
|
|
|
240
240
|
"agro.angular_components.ORIGINATION_CREATE_EFFECTIVE_BALANCE": string;
|
|
241
241
|
"agro.angular_components.PRODUCER_NET_VALUE_EFFECTIVE_BALANCE_CONFIRMATION": string;
|
|
242
242
|
"agro.angular_components.CLOSE_INVOICE_FIXATION": string;
|
|
243
|
+
"agro.angular_components.INVOICE_CLOSE_INVOICE": string;
|
|
243
244
|
"agro.angular_components.ORIGINATION_CREATE_EFFECTIVE_CONFIRMATION": string;
|
|
244
245
|
"agro.angular_components.ORIGINATION_CREATE_PROVISIONAL_BALANCE": string;
|
|
245
246
|
"agro.angular_components.CLOSE_INVOICE_TRANSFER": string;
|
|
@@ -249,5 +250,22 @@ declare const ptBR: {
|
|
|
249
250
|
"agro.angular_components.TRANSFER_CREATE_SERVICE_INVOICE": string;
|
|
250
251
|
"agro.angular_components.TRANSFER_CANCEL_SERVICE_INVOICE": string;
|
|
251
252
|
"agro.angular_components.REOPEN_INVOICE_FIXATION": string;
|
|
253
|
+
"agro.angular_components.CIDASC_INTEGRATION": string;
|
|
254
|
+
"agro.angular_components.CIDASC_CANCELLATION": string;
|
|
255
|
+
"agro.angular_components.CIDASC_DATA_LOAD_CULTURE": string;
|
|
256
|
+
"agro.angular_components.CIDASC_DATA_LOAD_PEST": string;
|
|
257
|
+
"agro.angular_components.CIDASC_DATA_LOAD_PRODUCT": string;
|
|
258
|
+
"agro.angular_components.CIDASC_DATA_LOAD_MEASURE_UNIT": string;
|
|
259
|
+
"agro.angular_components.CIDASC_DATA_LOAD_COMPOSED_MEASURE_UNIT": string;
|
|
260
|
+
"agro.angular_components.agronomic_prescription_origin_event": string;
|
|
261
|
+
"agro.angular_components.number_or_series": string;
|
|
262
|
+
"agro.angular_components.panel_title_external_invoice_add_external_invoice": string;
|
|
263
|
+
"agro.angular_components.add_pj_invoice_modal_no_invoices_found": string;
|
|
264
|
+
"agro.angular_components.number": string;
|
|
265
|
+
"agro.angular_components.series": string;
|
|
266
|
+
"agro.angular_components.itens": string;
|
|
267
|
+
"agro.angular_components.quantity": string;
|
|
268
|
+
"agro.angular_components.issuance_date": string;
|
|
269
|
+
"agro.angular_components.no_register_found_for_external_invoices_summary": string;
|
|
252
270
|
};
|
|
253
271
|
export default ptBR;
|