@senior-gestao-empresarial/erpx-components 4.16.0 → 4.17.1-develop-5b4a01dc
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 +2223 -498
- package/bundles/senior-gestao-empresarial-erpx-components.umd.js.map +1 -1
- package/bundles/senior-gestao-empresarial-erpx-components.umd.min.js +2 -2
- package/bundles/senior-gestao-empresarial-erpx-components.umd.min.js.map +1 -1
- package/components/tributos/erp-tributos.component.d.ts +1 -0
- package/components/tributos/erp-tributos.types.d.ts +3 -0
- package/components/tributos/rules/calculation/rules/taxable-base-calculation-rule.d.ts +1 -1
- package/components/tributos/rules/status/registries/incoming-invoice-status-rules.registry.d.ts +5 -1
- package/components/tributos/rules/status/registries/purchase-order-status-rules.registry.d.ts +5 -1
- package/components/tributos/rules/status/rules/tax-rate-status-rule.d.ts +5 -0
- package/components/tributos/rules/status/rules/taxable-base-status-rule.d.ts +5 -0
- package/components/tributos/rules/types/schemas/incoming-invoice.schema.d.ts +30 -0
- package/components/tributos/rules/types/schemas/purchase-order.schema.d.ts +3 -0
- package/esm2015/components/tributos/erp-tributos.component.js +53 -5
- package/esm2015/components/tributos/erp-tributos.types.js +4 -1
- package/esm2015/components/tributos/rules/calculation/registries/calculation-rules-registries/incoming-invoice-calculation-rules.registry.js +421 -1
- package/esm2015/components/tributos/rules/calculation/registries/calculation-rules-registries/purchase-order-calculation-rules.registry.js +43 -1
- package/esm2015/components/tributos/rules/calculation/rules/tax-amount-calculation-rule.js +4 -1
- package/esm2015/components/tributos/rules/calculation/rules/tax-rate-calculation-rule.js +37 -1
- package/esm2015/components/tributos/rules/calculation/rules/taxable-base-calculation-rule.js +39 -2
- package/esm2015/components/tributos/rules/status/registries/incoming-invoice-status-rules.registry.js +312 -4
- package/esm2015/components/tributos/rules/status/registries/purchase-order-status-rules.registry.js +48 -4
- package/esm2015/components/tributos/rules/status/rules/tax-rate-status-rule.js +61 -0
- package/esm2015/components/tributos/rules/status/rules/taxable-base-status-rule.js +65 -0
- package/esm2015/components/tributos/rules/types/schemas/incoming-invoice.schema.js +211 -1
- package/esm2015/components/tributos/rules/types/schemas/purchase-order.schema.js +22 -1
- package/esm2015/components/tributos/rules/validation/registries/incoming-invoice-validation-rules.registry.js +421 -1
- package/esm2015/components/tributos/rules/validation/registries/purchase-order-validation-rules.registry.js +43 -1
- package/esm2015/components/tributos/rules/validation/rules/required/tax-amount-required-validation-rule.js +70 -14
- package/esm2015/components/tributos/rules/validation/rules/required/tax-rate-required-validation-rule.js +64 -2
- package/esm2015/components/tributos/rules/validation/rules/required/taxable-base-required-validation-rule.js +61 -1
- package/esm2015/components/tributos/tax-reform-utilities.js +4 -1
- package/esm2015/senior-gestao-empresarial-erpx-components.js +45 -43
- package/esm5/components/tributos/erp-tributos.component.js +202 -155
- package/esm5/components/tributos/erp-tributos.types.js +4 -1
- package/esm5/components/tributos/rules/calculation/registries/calculation-rules-registries/incoming-invoice-calculation-rules.registry.js +421 -1
- package/esm5/components/tributos/rules/calculation/registries/calculation-rules-registries/purchase-order-calculation-rules.registry.js +43 -1
- package/esm5/components/tributos/rules/calculation/rules/tax-amount-calculation-rule.js +4 -1
- package/esm5/components/tributos/rules/calculation/rules/tax-rate-calculation-rule.js +45 -1
- package/esm5/components/tributos/rules/calculation/rules/taxable-base-calculation-rule.js +45 -2
- package/esm5/components/tributos/rules/status/registries/incoming-invoice-status-rules.registry.js +312 -4
- package/esm5/components/tributos/rules/status/registries/purchase-order-status-rules.registry.js +49 -4
- package/esm5/components/tributos/rules/status/rules/tax-rate-status-rule.js +68 -0
- package/esm5/components/tributos/rules/status/rules/taxable-base-status-rule.js +72 -0
- package/esm5/components/tributos/rules/types/schemas/incoming-invoice.schema.js +211 -1
- package/esm5/components/tributos/rules/types/schemas/purchase-order.schema.js +22 -1
- package/esm5/components/tributos/rules/validation/registries/incoming-invoice-validation-rules.registry.js +421 -1
- package/esm5/components/tributos/rules/validation/registries/purchase-order-validation-rules.registry.js +43 -1
- package/esm5/components/tributos/rules/validation/rules/required/tax-amount-required-validation-rule.js +74 -14
- package/esm5/components/tributos/rules/validation/rules/required/tax-rate-required-validation-rule.js +68 -2
- package/esm5/components/tributos/rules/validation/rules/required/taxable-base-required-validation-rule.js +65 -1
- package/esm5/components/tributos/tax-reform-utilities.js +4 -1
- package/esm5/senior-gestao-empresarial-erpx-components.js +45 -43
- package/fesm2015/senior-gestao-empresarial-erpx-components.js +1898 -215
- package/fesm2015/senior-gestao-empresarial-erpx-components.js.map +1 -1
- package/fesm5/senior-gestao-empresarial-erpx-components.js +2180 -457
- package/fesm5/senior-gestao-empresarial-erpx-components.js.map +1 -1
- package/package.json +1 -1
- package/senior-gestao-empresarial-erpx-components.d.ts +44 -42
- package/senior-gestao-empresarial-erpx-components.metadata.json +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "../node_modules/ng-packagr/package.schema.json",
|
|
3
3
|
"name": "@senior-gestao-empresarial/erpx-components",
|
|
4
|
-
"version": "4.
|
|
4
|
+
"version": "4.17.1-develop-5b4a01dc",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "http://git.senior.com.br/gestao-empresarial/erpx-components"
|
|
@@ -2,54 +2,56 @@
|
|
|
2
2
|
* Generated bundle index. Do not edit.
|
|
3
3
|
*/
|
|
4
4
|
export * from './public-api';
|
|
5
|
-
export { FocusService as
|
|
6
|
-
export { ErpLoteSeriesService as
|
|
7
|
-
export { ErpRateioEditorService as
|
|
5
|
+
export { FocusService as ɵbv } from './components/focus/focus.service';
|
|
6
|
+
export { ErpLoteSeriesService as ɵbw } from './components/lote-serie/erp-lote-serie.service';
|
|
7
|
+
export { ErpRateioEditorService as ɵca } from './components/rateio-editor/erp-rateio-editor.service';
|
|
8
8
|
export { ErpResumoComponent as ɵa } from './components/resumo/erp-resumo.component';
|
|
9
9
|
export { ErpResumoService as ɵb } from './components/resumo/erp-resumo.service';
|
|
10
|
-
export { EffectiveTaxRateCalculator as
|
|
11
|
-
export { GrossAmountCalculator as
|
|
12
|
-
export { TaxAmountCalculator as
|
|
10
|
+
export { EffectiveTaxRateCalculator as ɵbe } from './components/tributos/calculators/effective-tax-rate-calculator';
|
|
11
|
+
export { GrossAmountCalculator as ɵbl } from './components/tributos/calculators/gross-amount-calculator';
|
|
12
|
+
export { TaxAmountCalculator as ɵbd } from './components/tributos/calculators/tax-amount-calculator';
|
|
13
13
|
export { ErpTributosService as ɵd } from './components/tributos/erp-tributos.service';
|
|
14
|
-
export { CalculationRulesRegistry as
|
|
15
|
-
export { IncomingInvoiceCalculationRulesRegistry as
|
|
16
|
-
export { OutgoingInvoiceCalculationRulesRegistry as
|
|
17
|
-
export { PurchaseOrderCalculationRulesRegistry as
|
|
18
|
-
export { SaleOrderCalculationRulesRegistry as
|
|
19
|
-
export { ApplyNetValueToDocumentCalculationRule as
|
|
20
|
-
export { AssessmentPeriodCalculationRule as
|
|
21
|
-
export { EffectiveTaxRateCalculationRule as
|
|
22
|
-
export { GrossAmountCalculationRule as
|
|
23
|
-
export { ManualTaxCalculationRule as
|
|
24
|
-
export { TaxAmountCalculationRule as
|
|
25
|
-
export { TaxCalculationTypeCalculationRule as
|
|
26
|
-
export { TaxClassificationCalculationRule as
|
|
27
|
-
export { TaxRateCalculationRule as
|
|
28
|
-
export { TaxSituationCalculationRule as
|
|
29
|
-
export { TaxableBaseCalculationRule as
|
|
14
|
+
export { CalculationRulesRegistry as ɵba } from './components/tributos/rules/calculation/registries/calculation-rules-registries/calculation-rules.registry';
|
|
15
|
+
export { IncomingInvoiceCalculationRulesRegistry as ɵbb } from './components/tributos/rules/calculation/registries/calculation-rules-registries/incoming-invoice-calculation-rules.registry';
|
|
16
|
+
export { OutgoingInvoiceCalculationRulesRegistry as ɵbr } from './components/tributos/rules/calculation/registries/calculation-rules-registries/outgoing-invoice-calculation-rules.registry';
|
|
17
|
+
export { PurchaseOrderCalculationRulesRegistry as ɵbu } from './components/tributos/rules/calculation/registries/calculation-rules-registries/purchase-order-calculation-rules.registry';
|
|
18
|
+
export { SaleOrderCalculationRulesRegistry as ɵbt } from './components/tributos/rules/calculation/registries/calculation-rules-registries/sale-order-calculation-rules.registry';
|
|
19
|
+
export { ApplyNetValueToDocumentCalculationRule as ɵbp } from './components/tributos/rules/calculation/rules/apply-net-value-to-document-calculation-rule';
|
|
20
|
+
export { AssessmentPeriodCalculationRule as ɵbs } from './components/tributos/rules/calculation/rules/assessment-period-calculation-rule';
|
|
21
|
+
export { EffectiveTaxRateCalculationRule as ɵbi } from './components/tributos/rules/calculation/rules/effective-tax-rate-calculation-rule';
|
|
22
|
+
export { GrossAmountCalculationRule as ɵbk } from './components/tributos/rules/calculation/rules/gross-amount-calculation-rule';
|
|
23
|
+
export { ManualTaxCalculationRule as ɵbq } from './components/tributos/rules/calculation/rules/manual-tax-calculation-rule';
|
|
24
|
+
export { TaxAmountCalculationRule as ɵbj } from './components/tributos/rules/calculation/rules/tax-amount-calculation-rule';
|
|
25
|
+
export { TaxCalculationTypeCalculationRule as ɵbo } from './components/tributos/rules/calculation/rules/tax-calculation-type-calculation-rule';
|
|
26
|
+
export { TaxClassificationCalculationRule as ɵbn } from './components/tributos/rules/calculation/rules/tax-classification-calculation-rule';
|
|
27
|
+
export { TaxRateCalculationRule as ɵbh } from './components/tributos/rules/calculation/rules/tax-rate-calculation-rule';
|
|
28
|
+
export { TaxSituationCalculationRule as ɵbm } from './components/tributos/rules/calculation/rules/tax-situation-calculation-rule';
|
|
29
|
+
export { TaxableBaseCalculationRule as ɵbc } from './components/tributos/rules/calculation/rules/taxable-base-calculation-rule';
|
|
30
30
|
export { RulesService as ɵe } from './components/tributos/rules/rules.service';
|
|
31
31
|
export { IncomingInvoiceStatusRulesRegistry as ɵg } from './components/tributos/rules/status/registries/incoming-invoice-status-rules.registry';
|
|
32
|
-
export { OutgoingInvoiceStatusRulesRegistry as
|
|
33
|
-
export { PurchaseOrderStatusRulesRegistry as
|
|
34
|
-
export { SaleOrderStatusRulesRegistry as
|
|
32
|
+
export { OutgoingInvoiceStatusRulesRegistry as ɵl } from './components/tributos/rules/status/registries/outgoing-invoice-status-rules.registry';
|
|
33
|
+
export { PurchaseOrderStatusRulesRegistry as ɵn } from './components/tributos/rules/status/registries/purchase-order-status-rules.registry';
|
|
34
|
+
export { SaleOrderStatusRulesRegistry as ɵm } from './components/tributos/rules/status/registries/sale-order-status-rules.registry';
|
|
35
35
|
export { StatusRulesRegistry as ɵf } from './components/tributos/rules/status/registries/status-rules.registry';
|
|
36
36
|
export { ApplyNetValueToDocumentStatusRule as ɵi } from './components/tributos/rules/status/rules/apply-net-value-to-document-status-rule';
|
|
37
37
|
export { TaxClassificationStatusRule as ɵh } from './components/tributos/rules/status/rules/tax-classification-status-rule';
|
|
38
|
-
export {
|
|
39
|
-
export {
|
|
40
|
-
export {
|
|
41
|
-
export {
|
|
42
|
-
export {
|
|
43
|
-
export {
|
|
44
|
-
export {
|
|
45
|
-
export {
|
|
46
|
-
export {
|
|
47
|
-
export {
|
|
48
|
-
export {
|
|
49
|
-
export {
|
|
50
|
-
export {
|
|
51
|
-
export {
|
|
38
|
+
export { TaxRateStatusRule as ɵk } from './components/tributos/rules/status/rules/tax-rate-status-rule';
|
|
39
|
+
export { TaxableBaseStatusRule as ɵj } from './components/tributos/rules/status/rules/taxable-base-status-rule';
|
|
40
|
+
export { IncomingInvoiceValidationRulesRegistry as ɵp } from './components/tributos/rules/validation/registries/incoming-invoice-validation-rules.registry';
|
|
41
|
+
export { OutgoingInvoiceValidationRulesRegistry as ɵw } from './components/tributos/rules/validation/registries/outgoing-invoice-validation-rules.registry';
|
|
42
|
+
export { PurchaseOrderValidationRulesRegistry as ɵz } from './components/tributos/rules/validation/registries/purchase-order-validation-rules.registry';
|
|
43
|
+
export { SaleOrderValidationRulesRegistry as ɵy } from './components/tributos/rules/validation/registries/sale-order-validation-rules.registry';
|
|
44
|
+
export { ValidationRulesRegistry as ɵo } from './components/tributos/rules/validation/registries/validation-rules.registry';
|
|
45
|
+
export { ApplyNetValueToDocumentRequiredValidationRule as ɵv } from './components/tributos/rules/validation/rules/required/apply-net-value-to-document-required-validation-rule';
|
|
46
|
+
export { AssessmentPeriodRequiredValidationRule as ɵx } from './components/tributos/rules/validation/rules/required/assessment-period-required-validation-rule';
|
|
47
|
+
export { TaxAmountRequiredValidationRule as ɵt } from './components/tributos/rules/validation/rules/required/tax-amount-required-validation-rule';
|
|
48
|
+
export { TaxClassificationRequiredValidationRule as ɵs } from './components/tributos/rules/validation/rules/required/tax-classification-required-validation-rule';
|
|
49
|
+
export { TaxRateRequiredValidationRule as ɵr } from './components/tributos/rules/validation/rules/required/tax-rate-required-validation-rule';
|
|
50
|
+
export { TaxSituationRequiredValidationRule as ɵu } from './components/tributos/rules/validation/rules/required/tax-situation-required-validation-rule';
|
|
51
|
+
export { TaxableBaseRequiredValidationRule as ɵq } from './components/tributos/rules/validation/rules/required/taxable-base-required-validation-rule';
|
|
52
|
+
export { TaxRoundingService as ɵbf } from './components/tributos/services/tax-rounding.service';
|
|
53
|
+
export { TaxStore as ɵbg } from './components/tributos/stores/tax.store';
|
|
52
54
|
export { LoadingContext as ɵc } from './components/utils/loading-context';
|
|
53
|
-
export { EntityService as
|
|
54
|
-
export { QuantidadeDisponivelDemandaModule as
|
|
55
|
-
export { QuantidadeDisponivelDemandaService as
|
|
55
|
+
export { EntityService as ɵby } from './core/entities/entity-service';
|
|
56
|
+
export { QuantidadeDisponivelDemandaModule as ɵbz } from './core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.module';
|
|
57
|
+
export { QuantidadeDisponivelDemandaService as ɵbx } from './core/entities/quantidade-disponivel-demanda/quantidade-disponivel-demanda.service';
|