@senior-gestao-empresarial/erpx-components 4.2.2 → 4.3.0
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-gestao-empresarial-erpx-components.umd.js +9 -1
- package/bundles/senior-gestao-empresarial-erpx-components.umd.js.map +1 -1
- package/bundles/senior-gestao-empresarial-erpx-components.umd.min.js +1 -1
- package/bundles/senior-gestao-empresarial-erpx-components.umd.min.js.map +1 -1
- package/components/tributos/rules/types/schemas/incoming-invoice.schema.d.ts +18 -18
- package/components/tributos/rules/types/schemas/outgoing-invoice.schema.d.ts +34 -34
- package/esm2015/components/tributos/erp-tributos.component.js +10 -2
- package/esm2015/components/tributos/rules/types/schemas/incoming-invoice.schema.js +37 -19
- package/esm2015/components/tributos/rules/types/schemas/outgoing-invoice.schema.js +67 -33
- package/esm5/components/tributos/erp-tributos.component.js +10 -2
- package/esm5/components/tributos/rules/types/schemas/incoming-invoice.schema.js +37 -19
- package/esm5/components/tributos/rules/types/schemas/outgoing-invoice.schema.js +67 -33
- package/fesm2015/senior-gestao-empresarial-erpx-components.js +9 -1
- package/fesm2015/senior-gestao-empresarial-erpx-components.js.map +1 -1
- package/fesm5/senior-gestao-empresarial-erpx-components.js +9 -1
- package/fesm5/senior-gestao-empresarial-erpx-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -25823,7 +25823,15 @@ let ErpTributosComponent = class ErpTributosComponent {
|
|
|
25823
25823
|
(this.indexAccordion = [0]));
|
|
25824
25824
|
this.changeDetector.detectChanges();
|
|
25825
25825
|
}
|
|
25826
|
-
}
|
|
25826
|
+
});
|
|
25827
|
+
}
|
|
25828
|
+
if (this.context.document === 'Incoming Invoice' ||
|
|
25829
|
+
this.context.document === 'Outgoing Invoice' ||
|
|
25830
|
+
(this.context.document === 'Purchase Order' &&
|
|
25831
|
+
this.context.order.item.type === 'Service') ||
|
|
25832
|
+
(this.context.document === 'Sale Order' &&
|
|
25833
|
+
this.context.order.item.type === 'Service')) {
|
|
25834
|
+
menu.push({
|
|
25827
25835
|
id: 'retencoes',
|
|
25828
25836
|
label: this.translate.instant('erpx.tributos.actions_retencoes_label'),
|
|
25829
25837
|
disabled: this.menuItemRetencoes,
|