@senior-agronegocio/angular-components 0.0.9884 → 0.0.9886
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 +182 -130
- 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/common/event-control-constants.d.ts +2 -8
- package/components/event-control-board/event-control-board.component.d.ts +3 -0
- package/components/event-control-board/service/rural-estate/rural-estate.d.ts +0 -2
- package/components/modal-invoice-pj/for-fixation/modal-invoice-pj-for-fixation.component.d.ts +6 -5
- package/components/modal-invoice-pj/services/agro-invoice/interfaces.d.ts +2 -1
- package/components/modal-invoice-pj/services/producer-invoice-fixation/producer-invoice-dto.d.ts +15 -0
- package/components/modal-invoice-pj/services/producer-invoice-fixation/producer-invoice.service.d.ts +18 -0
- package/esm2015/components/event-control-board/common/event-control-constants.js +1 -7
- package/esm2015/components/event-control-board/event-control-board.component.js +49 -46
- package/esm2015/components/event-control-board/service/rural-estate/rural-estate.js +1 -10
- package/esm2015/components/modal-invoice-pj/for-fixation/modal-invoice-pj-for-fixation.component.js +44 -26
- package/esm2015/components/modal-invoice-pj/for-origination/modal-invoice-pj-for-origination.component.js +2 -2
- package/esm2015/components/modal-invoice-pj/for-transfer/modal-invoice-pj-for-transfer.component.js +2 -2
- package/esm2015/components/modal-invoice-pj/modal-invoice-pj-base.class.js +10 -5
- package/esm2015/components/modal-invoice-pj/services/agro-invoice/interfaces.js +1 -1
- package/esm2015/components/modal-invoice-pj/services/producer-invoice-fixation/producer-invoice-dto.js +1 -0
- package/esm2015/components/modal-invoice-pj/services/producer-invoice-fixation/producer-invoice.service.js +63 -0
- package/esm2015/services/i18n/en-US.js +2 -1
- package/esm2015/services/i18n/es-CO.js +2 -1
- package/esm2015/services/i18n/pt-BR.js +6 -4
- package/esm2015/services/producer-invoice/producer-invoice.service.js +4 -37
- package/esm5/components/event-control-board/common/event-control-constants.js +1 -7
- package/esm5/components/event-control-board/event-control-board.component.js +50 -47
- package/esm5/components/event-control-board/service/rural-estate/rural-estate.js +1 -10
- package/esm5/components/modal-invoice-pj/for-fixation/modal-invoice-pj-for-fixation.component.js +53 -29
- package/esm5/components/modal-invoice-pj/for-origination/modal-invoice-pj-for-origination.component.js +2 -2
- package/esm5/components/modal-invoice-pj/for-transfer/modal-invoice-pj-for-transfer.component.js +2 -2
- package/esm5/components/modal-invoice-pj/modal-invoice-pj-base.class.js +16 -5
- package/esm5/components/modal-invoice-pj/services/agro-invoice/interfaces.js +1 -1
- package/esm5/components/modal-invoice-pj/services/producer-invoice-fixation/producer-invoice-dto.js +1 -0
- package/esm5/components/modal-invoice-pj/services/producer-invoice-fixation/producer-invoice.service.js +71 -0
- package/esm5/services/i18n/en-US.js +2 -1
- package/esm5/services/i18n/es-CO.js +2 -1
- package/esm5/services/i18n/pt-BR.js +6 -4
- package/esm5/services/producer-invoice/producer-invoice.service.js +4 -42
- package/fesm2015/senior-agronegocio-angular-components.js +158 -121
- package/fesm2015/senior-agronegocio-angular-components.js.map +1 -1
- package/fesm5/senior-agronegocio-angular-components.js +182 -130
- package/fesm5/senior-agronegocio-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/services/i18n/en-US.d.ts +1 -0
- package/services/i18n/es-CO.d.ts +1 -0
- package/services/i18n/pt-BR.d.ts +1 -0
- package/services/producer-invoice/producer-invoice.service.d.ts +1 -4
- package/components/event-control-board/common/input-fields.d.ts +0 -5
- package/esm2015/components/event-control-board/common/input-fields.js +0 -7
- package/esm5/components/event-control-board/common/input-fields.js +0 -7
package/package.json
CHANGED
package/services/i18n/en-US.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ declare const enUS: {
|
|
|
21
21
|
"agro.angular_components.change_request_event_summary": string;
|
|
22
22
|
"agro.angular_components.ticket_maintenance_header": string;
|
|
23
23
|
"agro.angular_components.invoice_creating_event": string;
|
|
24
|
+
"agro.angular_components.invoice_close_event": string;
|
|
24
25
|
"agro.angular_components.balance_entry_control_event": string;
|
|
25
26
|
"agro.angular_components.event_origin_label": string;
|
|
26
27
|
"agro.angular_components.event_details_header": string;
|
package/services/i18n/es-CO.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ declare const esCO: {
|
|
|
21
21
|
"agro.angular_components.change_request_event_summary": string;
|
|
22
22
|
"agro.angular_components.ticket_maintenance_header": string;
|
|
23
23
|
"agro.angular_components.invoice_creating_event": string;
|
|
24
|
+
"agro.angular_components.invoice_close_event": string;
|
|
24
25
|
"agro.angular_components.balance_entry_control_event": string;
|
|
25
26
|
"agro.angular_components.event_origin_label": string;
|
|
26
27
|
"agro.angular_components.event_details_header": string;
|
package/services/i18n/pt-BR.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ declare const ptBR: {
|
|
|
21
21
|
"agro.angular_components.change_request_event_summary": string;
|
|
22
22
|
"agro.angular_components.ticket_maintenance_header": string;
|
|
23
23
|
"agro.angular_components.invoice_creating_event": string;
|
|
24
|
+
"agro.angular_components.invoice_close_event": string;
|
|
24
25
|
"agro.angular_components.balance_entry_control_event": string;
|
|
25
26
|
"agro.angular_components.event_origin_label": string;
|
|
26
27
|
"agro.angular_components.event_details_header": string;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { MessageService } from 'primeng/api';
|
|
3
|
+
import { AgroEntityService } from '../agro-entity-service';
|
|
3
4
|
import { LibTranslationService as TranslateService } from '../lib-translation.service';
|
|
4
5
|
import { ProducerInvoiceDto } from './producer-invoice-dto';
|
|
5
|
-
import { AgroEntityService } from '../agro-entity-service';
|
|
6
|
-
import { Observable } from 'rxjs';
|
|
7
6
|
export interface ProducerInvoiceTotalizers {
|
|
8
7
|
invoiceId: string;
|
|
9
8
|
totalLinked: number;
|
|
@@ -13,6 +12,4 @@ export declare class ProducerInvoiceService extends AgroEntityService<ProducerIn
|
|
|
13
12
|
protected messageService: MessageService;
|
|
14
13
|
protected translate: TranslateService;
|
|
15
14
|
constructor(http: HttpClient, messageService: MessageService, translate: TranslateService);
|
|
16
|
-
getTotalLinkedInInvoices(invoiceId: string[], fixationId: string): Promise<ProducerInvoiceTotalizers[]>;
|
|
17
|
-
deleteAllProducerInvoice(fixationId: string): Observable<any>;
|
|
18
15
|
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export var InputFields;
|
|
2
|
-
(function (InputFields) {
|
|
3
|
-
InputFields["AGRO_INVOICE_TYPE"] = "agroInvoiceType";
|
|
4
|
-
InputFields["INVOICE_TYPE"] = "invoiceType";
|
|
5
|
-
InputFields["INVOICE_NUMBER"] = "number";
|
|
6
|
-
})(InputFields || (InputFields = {}));
|
|
7
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtZmllbGRzLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQHNlbmlvci1hZ3JvbmVnb2Npby9hbmd1bGFyLWNvbXBvbmVudHMvIiwic291cmNlcyI6WyJjb21wb25lbnRzL2V2ZW50LWNvbnRyb2wtYm9hcmQvY29tbW9uL2lucHV0LWZpZWxkcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQU4sSUFBWSxXQUlYO0FBSkQsV0FBWSxXQUFXO0lBQ25CLG9EQUFxQyxDQUFBO0lBQ3JDLDJDQUE0QixDQUFBO0lBQzVCLHdDQUF5QixDQUFBO0FBQzdCLENBQUMsRUFKVyxXQUFXLEtBQVgsV0FBVyxRQUl0QiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBlbnVtIElucHV0RmllbGRzIHtcclxuICAgIEFHUk9fSU5WT0lDRV9UWVBFID0gJ2Fncm9JbnZvaWNlVHlwZScsXHJcbiAgICBJTlZPSUNFX1RZUEUgPSAnaW52b2ljZVR5cGUnLFxyXG4gICAgSU5WT0lDRV9OVU1CRVIgPSAnbnVtYmVyJ1xyXG59Il19
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export var InputFields;
|
|
2
|
-
(function (InputFields) {
|
|
3
|
-
InputFields["AGRO_INVOICE_TYPE"] = "agroInvoiceType";
|
|
4
|
-
InputFields["INVOICE_TYPE"] = "invoiceType";
|
|
5
|
-
InputFields["INVOICE_NUMBER"] = "number";
|
|
6
|
-
})(InputFields || (InputFields = {}));
|
|
7
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtZmllbGRzLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQHNlbmlvci1hZ3JvbmVnb2Npby9hbmd1bGFyLWNvbXBvbmVudHMvIiwic291cmNlcyI6WyJjb21wb25lbnRzL2V2ZW50LWNvbnRyb2wtYm9hcmQvY29tbW9uL2lucHV0LWZpZWxkcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQU4sSUFBWSxXQUlYO0FBSkQsV0FBWSxXQUFXO0lBQ25CLG9EQUFxQyxDQUFBO0lBQ3JDLDJDQUE0QixDQUFBO0lBQzVCLHdDQUF5QixDQUFBO0FBQzdCLENBQUMsRUFKVyxXQUFXLEtBQVgsV0FBVyxRQUl0QiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBlbnVtIElucHV0RmllbGRzIHtcclxuICAgIEFHUk9fSU5WT0lDRV9UWVBFID0gJ2Fncm9JbnZvaWNlVHlwZScsXHJcbiAgICBJTlZPSUNFX1RZUEUgPSAnaW52b2ljZVR5cGUnLFxyXG4gICAgSU5WT0lDRV9OVU1CRVIgPSAnbnVtYmVyJ1xyXG59Il19
|