@senior-gestao-empresarial/erpx-components 4.1.1 → 4.2.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 +1887 -180
- 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/rules/calculation/registries/calculation-rules-registries/incoming-invoice-calculation-rules.registry.d.ts +3 -1
- package/components/tributos/rules/types/schemas/incoming-invoice.schema.d.ts +18 -0
- package/components/tributos/rules/types/schemas/outgoing-invoice.schema.d.ts +32 -0
- package/esm2015/components/tributos/erp-tributos.component.js +9 -4
- package/esm2015/components/tributos/rules/calculation/registries/calculation-rules-registries/incoming-invoice-calculation-rules.registry.js +262 -6
- package/esm2015/components/tributos/rules/calculation/registries/calculation-rules-registries/outgoing-invoice-calculation-rules.registry.js +449 -1
- package/esm2015/components/tributos/rules/status/registries/incoming-invoice-status-rules.registry.js +109 -1
- package/esm2015/components/tributos/rules/status/registries/outgoing-invoice-status-rules.registry.js +193 -1
- package/esm2015/components/tributos/rules/types/schemas/incoming-invoice.schema.js +91 -1
- package/esm2015/components/tributos/rules/types/schemas/outgoing-invoice.schema.js +161 -1
- package/esm2015/components/tributos/rules/validation/registries/incoming-invoice-validation-rules.registry.js +253 -1
- package/esm2015/components/tributos/rules/validation/registries/outgoing-invoice-validation-rules.registry.js +449 -1
- package/esm2015/senior-gestao-empresarial-erpx-components.js +6 -6
- package/esm5/components/tributos/erp-tributos.component.js +9 -4
- package/esm5/components/tributos/rules/calculation/registries/calculation-rules-registries/incoming-invoice-calculation-rules.registry.js +262 -6
- package/esm5/components/tributos/rules/calculation/registries/calculation-rules-registries/outgoing-invoice-calculation-rules.registry.js +449 -1
- package/esm5/components/tributos/rules/status/registries/incoming-invoice-status-rules.registry.js +109 -1
- package/esm5/components/tributos/rules/status/registries/outgoing-invoice-status-rules.registry.js +193 -1
- package/esm5/components/tributos/rules/types/schemas/incoming-invoice.schema.js +91 -1
- package/esm5/components/tributos/rules/types/schemas/outgoing-invoice.schema.js +161 -1
- package/esm5/components/tributos/rules/validation/registries/incoming-invoice-validation-rules.registry.js +253 -1
- package/esm5/components/tributos/rules/validation/registries/outgoing-invoice-validation-rules.registry.js +449 -1
- package/esm5/senior-gestao-empresarial-erpx-components.js +6 -6
- package/fesm2015/senior-gestao-empresarial-erpx-components.js +1810 -103
- package/fesm2015/senior-gestao-empresarial-erpx-components.js.map +1 -1
- package/fesm5/senior-gestao-empresarial-erpx-components.js +1883 -176
- package/fesm5/senior-gestao-empresarial-erpx-components.js.map +1 -1
- package/package.json +1 -1
- package/senior-gestao-empresarial-erpx-components.d.ts +5 -5
- package/senior-gestao-empresarial-erpx-components.metadata.json +1 -1
|
@@ -2258,14 +2258,150 @@
|
|
|
2258
2258
|
return TaxableBaseCalculationRule;
|
|
2259
2259
|
}());
|
|
2260
2260
|
|
|
2261
|
+
var TaxSituationCalculationRule = /** @class */ (function () {
|
|
2262
|
+
function TaxSituationCalculationRule() {
|
|
2263
|
+
}
|
|
2264
|
+
TaxSituationCalculationRule.prototype.apply = function (_a) {
|
|
2265
|
+
var document = _a.context.document, group = _a.group, _b = _a.item, taxType = _b.name, formGroup = _b.formGroup;
|
|
2266
|
+
switch (taxType) {
|
|
2267
|
+
case exports.EnumTipoTributo.CBS_ESTORNO_CREDITO:
|
|
2268
|
+
{
|
|
2269
|
+
var _c = group.item.find(function (_a) {
|
|
2270
|
+
var name = _a.name;
|
|
2271
|
+
return name === exports.EnumTipoTributo.IBS_ESTORNO_CREDITO;
|
|
2272
|
+
}), ibsEstornoCreditoFormGroup = _c.formGroup, ibsEstornoCreditoFormField = _c.formField;
|
|
2273
|
+
var dataKey_1 = ibsEstornoCreditoFormField.find(function (_a) {
|
|
2274
|
+
var name = _a.name;
|
|
2275
|
+
return name === 'situacaoTributaria';
|
|
2276
|
+
}).dataKey;
|
|
2277
|
+
rxjs.combineLatest([
|
|
2278
|
+
ibsEstornoCreditoFormGroup
|
|
2279
|
+
.get('situacaoTributaria')
|
|
2280
|
+
.valueChanges.pipe(operators.startWith(ibsEstornoCreditoFormGroup.get('situacaoTributaria').value), operators.distinctUntilChanged(function (old, current) {
|
|
2281
|
+
return (old === null || old === void 0 ? void 0 : old[dataKey_1]) === (current === null || current === void 0 ? void 0 : current[dataKey_1]);
|
|
2282
|
+
}))
|
|
2283
|
+
])
|
|
2284
|
+
.pipe(operators.skip(1), operators.map(function (_a) {
|
|
2285
|
+
var _b = __read(_a, 1), taxSituation = _b[0];
|
|
2286
|
+
return [taxSituation];
|
|
2287
|
+
}))
|
|
2288
|
+
.subscribe(function (_a) {
|
|
2289
|
+
var _b = __read(_a, 1), taxSituation = _b[0];
|
|
2290
|
+
formGroup
|
|
2291
|
+
.get('situacaoTributaria')
|
|
2292
|
+
.setValue(taxSituation);
|
|
2293
|
+
});
|
|
2294
|
+
}
|
|
2295
|
+
break;
|
|
2296
|
+
case exports.EnumTipoTributo.IBS_ESTORNO_CREDITO:
|
|
2297
|
+
{
|
|
2298
|
+
var _d = group.item.find(function (_a) {
|
|
2299
|
+
var name = _a.name;
|
|
2300
|
+
return name === exports.EnumTipoTributo.CBS_ESTORNO_CREDITO;
|
|
2301
|
+
}), cbsEstornoCreditoFormGroup = _d.formGroup, cbsEstornoCreditoFormField = _d.formField;
|
|
2302
|
+
var dataKey_2 = cbsEstornoCreditoFormField.find(function (_a) {
|
|
2303
|
+
var name = _a.name;
|
|
2304
|
+
return name === 'situacaoTributaria';
|
|
2305
|
+
}).dataKey;
|
|
2306
|
+
rxjs.combineLatest([
|
|
2307
|
+
cbsEstornoCreditoFormGroup
|
|
2308
|
+
.get('situacaoTributaria')
|
|
2309
|
+
.valueChanges.pipe(operators.startWith(cbsEstornoCreditoFormGroup.get('situacaoTributaria').value), operators.distinctUntilChanged(function (old, current) {
|
|
2310
|
+
return (old === null || old === void 0 ? void 0 : old[dataKey_2]) === (current === null || current === void 0 ? void 0 : current[dataKey_2]);
|
|
2311
|
+
}))
|
|
2312
|
+
])
|
|
2313
|
+
.pipe(operators.skip(1), operators.map(function (_a) {
|
|
2314
|
+
var _b = __read(_a, 1), taxSituation = _b[0];
|
|
2315
|
+
return [taxSituation];
|
|
2316
|
+
}))
|
|
2317
|
+
.subscribe(function (_a) {
|
|
2318
|
+
var _b = __read(_a, 1), taxSituation = _b[0];
|
|
2319
|
+
formGroup
|
|
2320
|
+
.get('situacaoTributaria')
|
|
2321
|
+
.setValue(taxSituation);
|
|
2322
|
+
});
|
|
2323
|
+
}
|
|
2324
|
+
break;
|
|
2325
|
+
case exports.EnumTipoTributo.CBS_AJUSTE:
|
|
2326
|
+
{
|
|
2327
|
+
var _e = group.item.find(function (_a) {
|
|
2328
|
+
var name = _a.name;
|
|
2329
|
+
return name === exports.EnumTipoTributo.IBS_AJUSTE;
|
|
2330
|
+
}), ibsAjusteFormGroup = _e.formGroup, ibsAjusteFormField = _e.formField;
|
|
2331
|
+
var dataKey_3 = ibsAjusteFormField.find(function (_a) {
|
|
2332
|
+
var name = _a.name;
|
|
2333
|
+
return name === 'situacaoTributaria';
|
|
2334
|
+
}).dataKey;
|
|
2335
|
+
rxjs.combineLatest([
|
|
2336
|
+
ibsAjusteFormGroup
|
|
2337
|
+
.get('situacaoTributaria')
|
|
2338
|
+
.valueChanges.pipe(operators.startWith(ibsAjusteFormGroup.get('situacaoTributaria')
|
|
2339
|
+
.value), operators.distinctUntilChanged(function (old, current) {
|
|
2340
|
+
return (old === null || old === void 0 ? void 0 : old[dataKey_3]) === (current === null || current === void 0 ? void 0 : current[dataKey_3]);
|
|
2341
|
+
}))
|
|
2342
|
+
])
|
|
2343
|
+
.pipe(operators.skip(1), operators.map(function (_a) {
|
|
2344
|
+
var _b = __read(_a, 1), taxSituation = _b[0];
|
|
2345
|
+
return [taxSituation];
|
|
2346
|
+
}))
|
|
2347
|
+
.subscribe(function (_a) {
|
|
2348
|
+
var _b = __read(_a, 1), taxSituation = _b[0];
|
|
2349
|
+
formGroup
|
|
2350
|
+
.get('situacaoTributaria')
|
|
2351
|
+
.setValue(taxSituation);
|
|
2352
|
+
});
|
|
2353
|
+
}
|
|
2354
|
+
break;
|
|
2355
|
+
case exports.EnumTipoTributo.IBS_AJUSTE:
|
|
2356
|
+
{
|
|
2357
|
+
var _f = group.item.find(function (_a) {
|
|
2358
|
+
var name = _a.name;
|
|
2359
|
+
return name === exports.EnumTipoTributo.CBS_AJUSTE;
|
|
2360
|
+
}), cbsAjusteFormGroup = _f.formGroup, cbsAjusteFormField = _f.formField;
|
|
2361
|
+
var dataKey_4 = cbsAjusteFormField.find(function (_a) {
|
|
2362
|
+
var name = _a.name;
|
|
2363
|
+
return name === 'situacaoTributaria';
|
|
2364
|
+
}).dataKey;
|
|
2365
|
+
rxjs.combineLatest([
|
|
2366
|
+
cbsAjusteFormGroup
|
|
2367
|
+
.get('situacaoTributaria')
|
|
2368
|
+
.valueChanges.pipe(operators.startWith(cbsAjusteFormGroup.get('situacaoTributaria')
|
|
2369
|
+
.value), operators.distinctUntilChanged(function (old, current) {
|
|
2370
|
+
return (old === null || old === void 0 ? void 0 : old[dataKey_4]) === (current === null || current === void 0 ? void 0 : current[dataKey_4]);
|
|
2371
|
+
}))
|
|
2372
|
+
])
|
|
2373
|
+
.pipe(operators.skip(1), operators.map(function (_a) {
|
|
2374
|
+
var _b = __read(_a, 1), taxSituation = _b[0];
|
|
2375
|
+
return [taxSituation];
|
|
2376
|
+
}))
|
|
2377
|
+
.subscribe(function (_a) {
|
|
2378
|
+
var _b = __read(_a, 1), taxSituation = _b[0];
|
|
2379
|
+
formGroup
|
|
2380
|
+
.get('situacaoTributaria')
|
|
2381
|
+
.setValue(taxSituation);
|
|
2382
|
+
});
|
|
2383
|
+
}
|
|
2384
|
+
break;
|
|
2385
|
+
default:
|
|
2386
|
+
throw new Error("Regra TaxSituationCalculationRule n\u00E3o implementada para o imposto " + taxType + ", documento " + document + ".");
|
|
2387
|
+
}
|
|
2388
|
+
};
|
|
2389
|
+
TaxSituationCalculationRule.ɵprov = core.ɵɵdefineInjectable({ factory: function TaxSituationCalculationRule_Factory() { return new TaxSituationCalculationRule(); }, token: TaxSituationCalculationRule, providedIn: "root" });
|
|
2390
|
+
TaxSituationCalculationRule = __decorate([
|
|
2391
|
+
core.Injectable({ providedIn: 'root' })
|
|
2392
|
+
], TaxSituationCalculationRule);
|
|
2393
|
+
return TaxSituationCalculationRule;
|
|
2394
|
+
}());
|
|
2395
|
+
|
|
2261
2396
|
var IncomingInvoiceCalculationRulesRegistry = /** @class */ (function () {
|
|
2262
|
-
function IncomingInvoiceCalculationRulesRegistry(taxableBaseCalculationRule, taxRateCalculationRule, effectiveTaxRateCalculationRule, taxAmountCalculationRule, grossAmountCalculationRule, taxClassificationCalculationRule, taxCalculationTypeCalculationRule, manualTaxCalculationRule) {
|
|
2397
|
+
function IncomingInvoiceCalculationRulesRegistry(taxableBaseCalculationRule, taxRateCalculationRule, effectiveTaxRateCalculationRule, taxAmountCalculationRule, grossAmountCalculationRule, taxSituationCalculationRule, taxClassificationCalculationRule, taxCalculationTypeCalculationRule, manualTaxCalculationRule) {
|
|
2263
2398
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
2264
2399
|
this.taxableBaseCalculationRule = taxableBaseCalculationRule;
|
|
2265
2400
|
this.taxRateCalculationRule = taxRateCalculationRule;
|
|
2266
2401
|
this.effectiveTaxRateCalculationRule = effectiveTaxRateCalculationRule;
|
|
2267
2402
|
this.taxAmountCalculationRule = taxAmountCalculationRule;
|
|
2268
2403
|
this.grossAmountCalculationRule = grossAmountCalculationRule;
|
|
2404
|
+
this.taxSituationCalculationRule = taxSituationCalculationRule;
|
|
2269
2405
|
this.taxClassificationCalculationRule = taxClassificationCalculationRule;
|
|
2270
2406
|
this.taxCalculationTypeCalculationRule = taxCalculationTypeCalculationRule;
|
|
2271
2407
|
this.manualTaxCalculationRule = manualTaxCalculationRule;
|
|
@@ -2489,6 +2625,34 @@
|
|
|
2489
2625
|
rule: this.taxClassificationCalculationRule
|
|
2490
2626
|
}
|
|
2491
2627
|
],
|
|
2628
|
+
_a[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
2629
|
+
{
|
|
2630
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
2631
|
+
rule: this.taxSituationCalculationRule
|
|
2632
|
+
},
|
|
2633
|
+
{
|
|
2634
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
2635
|
+
rule: this.taxClassificationCalculationRule
|
|
2636
|
+
},
|
|
2637
|
+
{
|
|
2638
|
+
field: exports.EnumCampoTributo.Valor,
|
|
2639
|
+
rule: this.taxAmountCalculationRule
|
|
2640
|
+
}
|
|
2641
|
+
],
|
|
2642
|
+
_a[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
2643
|
+
{
|
|
2644
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
2645
|
+
rule: this.taxSituationCalculationRule
|
|
2646
|
+
},
|
|
2647
|
+
{
|
|
2648
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
2649
|
+
rule: this.taxClassificationCalculationRule
|
|
2650
|
+
},
|
|
2651
|
+
{
|
|
2652
|
+
field: exports.EnumCampoTributo.Valor,
|
|
2653
|
+
rule: this.taxAmountCalculationRule
|
|
2654
|
+
}
|
|
2655
|
+
],
|
|
2492
2656
|
_a),
|
|
2493
2657
|
'Producer Invoice': (_b = {},
|
|
2494
2658
|
_b[exports.EnumTipoTributo.CBS] = [
|
|
@@ -2709,6 +2873,34 @@
|
|
|
2709
2873
|
rule: this.taxClassificationCalculationRule
|
|
2710
2874
|
}
|
|
2711
2875
|
],
|
|
2876
|
+
_b[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
2877
|
+
{
|
|
2878
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
2879
|
+
rule: this.taxSituationCalculationRule
|
|
2880
|
+
},
|
|
2881
|
+
{
|
|
2882
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
2883
|
+
rule: this.taxClassificationCalculationRule
|
|
2884
|
+
},
|
|
2885
|
+
{
|
|
2886
|
+
field: exports.EnumCampoTributo.Valor,
|
|
2887
|
+
rule: this.taxAmountCalculationRule
|
|
2888
|
+
}
|
|
2889
|
+
],
|
|
2890
|
+
_b[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
2891
|
+
{
|
|
2892
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
2893
|
+
rule: this.taxSituationCalculationRule
|
|
2894
|
+
},
|
|
2895
|
+
{
|
|
2896
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
2897
|
+
rule: this.taxClassificationCalculationRule
|
|
2898
|
+
},
|
|
2899
|
+
{
|
|
2900
|
+
field: exports.EnumCampoTributo.Valor,
|
|
2901
|
+
rule: this.taxAmountCalculationRule
|
|
2902
|
+
}
|
|
2903
|
+
],
|
|
2712
2904
|
_b),
|
|
2713
2905
|
'Service Invoice': (_c = {},
|
|
2714
2906
|
_c[exports.EnumTipoTributo.CBS] = [
|
|
@@ -2929,6 +3121,34 @@
|
|
|
2929
3121
|
rule: this.taxClassificationCalculationRule
|
|
2930
3122
|
}
|
|
2931
3123
|
],
|
|
3124
|
+
_c[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
3125
|
+
{
|
|
3126
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
3127
|
+
rule: this.taxSituationCalculationRule
|
|
3128
|
+
},
|
|
3129
|
+
{
|
|
3130
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
3131
|
+
rule: this.taxClassificationCalculationRule
|
|
3132
|
+
},
|
|
3133
|
+
{
|
|
3134
|
+
field: exports.EnumCampoTributo.Valor,
|
|
3135
|
+
rule: this.taxAmountCalculationRule
|
|
3136
|
+
}
|
|
3137
|
+
],
|
|
3138
|
+
_c[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
3139
|
+
{
|
|
3140
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
3141
|
+
rule: this.taxSituationCalculationRule
|
|
3142
|
+
},
|
|
3143
|
+
{
|
|
3144
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
3145
|
+
rule: this.taxClassificationCalculationRule
|
|
3146
|
+
},
|
|
3147
|
+
{
|
|
3148
|
+
field: exports.EnumCampoTributo.Valor,
|
|
3149
|
+
rule: this.taxAmountCalculationRule
|
|
3150
|
+
}
|
|
3151
|
+
],
|
|
2932
3152
|
_c),
|
|
2933
3153
|
'Third Party Return': (_d = {},
|
|
2934
3154
|
_d[exports.EnumTipoTributo.CBS] = [
|
|
@@ -3149,6 +3369,34 @@
|
|
|
3149
3369
|
rule: this.taxClassificationCalculationRule
|
|
3150
3370
|
}
|
|
3151
3371
|
],
|
|
3372
|
+
_d[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
3373
|
+
{
|
|
3374
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
3375
|
+
rule: this.taxSituationCalculationRule
|
|
3376
|
+
},
|
|
3377
|
+
{
|
|
3378
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
3379
|
+
rule: this.taxClassificationCalculationRule
|
|
3380
|
+
},
|
|
3381
|
+
{
|
|
3382
|
+
field: exports.EnumCampoTributo.Valor,
|
|
3383
|
+
rule: this.taxAmountCalculationRule
|
|
3384
|
+
}
|
|
3385
|
+
],
|
|
3386
|
+
_d[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
3387
|
+
{
|
|
3388
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
3389
|
+
rule: this.taxSituationCalculationRule
|
|
3390
|
+
},
|
|
3391
|
+
{
|
|
3392
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
3393
|
+
rule: this.taxClassificationCalculationRule
|
|
3394
|
+
},
|
|
3395
|
+
{
|
|
3396
|
+
field: exports.EnumCampoTributo.Valor,
|
|
3397
|
+
rule: this.taxAmountCalculationRule
|
|
3398
|
+
}
|
|
3399
|
+
],
|
|
3152
3400
|
_d),
|
|
3153
3401
|
Complement: (_e = {},
|
|
3154
3402
|
_e[exports.EnumTipoTributo.CBS] = [
|
|
@@ -3369,16 +3617,44 @@
|
|
|
3369
3617
|
rule: this.taxClassificationCalculationRule
|
|
3370
3618
|
}
|
|
3371
3619
|
],
|
|
3372
|
-
_e
|
|
3373
|
-
Credit: (_f = {},
|
|
3374
|
-
_f[exports.EnumTipoTributo.CBS] = [
|
|
3620
|
+
_e[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
3375
3621
|
{
|
|
3376
|
-
field: exports.EnumCampoTributo.
|
|
3377
|
-
rule: this.
|
|
3622
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
3623
|
+
rule: this.taxSituationCalculationRule
|
|
3378
3624
|
},
|
|
3379
3625
|
{
|
|
3380
|
-
field: exports.EnumCampoTributo.
|
|
3381
|
-
rule: this.
|
|
3626
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
3627
|
+
rule: this.taxClassificationCalculationRule
|
|
3628
|
+
},
|
|
3629
|
+
{
|
|
3630
|
+
field: exports.EnumCampoTributo.Valor,
|
|
3631
|
+
rule: this.taxAmountCalculationRule
|
|
3632
|
+
}
|
|
3633
|
+
],
|
|
3634
|
+
_e[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
3635
|
+
{
|
|
3636
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
3637
|
+
rule: this.taxSituationCalculationRule
|
|
3638
|
+
},
|
|
3639
|
+
{
|
|
3640
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
3641
|
+
rule: this.taxClassificationCalculationRule
|
|
3642
|
+
},
|
|
3643
|
+
{
|
|
3644
|
+
field: exports.EnumCampoTributo.Valor,
|
|
3645
|
+
rule: this.taxAmountCalculationRule
|
|
3646
|
+
}
|
|
3647
|
+
],
|
|
3648
|
+
_e),
|
|
3649
|
+
Credit: (_f = {},
|
|
3650
|
+
_f[exports.EnumTipoTributo.CBS] = [
|
|
3651
|
+
{
|
|
3652
|
+
field: exports.EnumCampoTributo.AliquotaEfetiva,
|
|
3653
|
+
rule: this.effectiveTaxRateCalculationRule
|
|
3654
|
+
},
|
|
3655
|
+
{
|
|
3656
|
+
field: exports.EnumCampoTributo.ValorBruto,
|
|
3657
|
+
rule: this.grossAmountCalculationRule
|
|
3382
3658
|
},
|
|
3383
3659
|
{
|
|
3384
3660
|
field: exports.EnumCampoTributo.Valor,
|
|
@@ -3809,6 +4085,34 @@
|
|
|
3809
4085
|
rule: this.taxClassificationCalculationRule
|
|
3810
4086
|
}
|
|
3811
4087
|
],
|
|
4088
|
+
_g[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
4089
|
+
{
|
|
4090
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
4091
|
+
rule: this.taxSituationCalculationRule
|
|
4092
|
+
},
|
|
4093
|
+
{
|
|
4094
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
4095
|
+
rule: this.taxClassificationCalculationRule
|
|
4096
|
+
},
|
|
4097
|
+
{
|
|
4098
|
+
field: exports.EnumCampoTributo.Valor,
|
|
4099
|
+
rule: this.taxAmountCalculationRule
|
|
4100
|
+
}
|
|
4101
|
+
],
|
|
4102
|
+
_g[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
4103
|
+
{
|
|
4104
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
4105
|
+
rule: this.taxSituationCalculationRule
|
|
4106
|
+
},
|
|
4107
|
+
{
|
|
4108
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
4109
|
+
rule: this.taxClassificationCalculationRule
|
|
4110
|
+
},
|
|
4111
|
+
{
|
|
4112
|
+
field: exports.EnumCampoTributo.Valor,
|
|
4113
|
+
rule: this.taxAmountCalculationRule
|
|
4114
|
+
}
|
|
4115
|
+
],
|
|
3812
4116
|
_g),
|
|
3813
4117
|
Return: (_h = {},
|
|
3814
4118
|
_h[exports.EnumTipoTributo.CBS] = [
|
|
@@ -4029,6 +4333,34 @@
|
|
|
4029
4333
|
rule: this.taxClassificationCalculationRule
|
|
4030
4334
|
}
|
|
4031
4335
|
],
|
|
4336
|
+
_h[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
4337
|
+
{
|
|
4338
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
4339
|
+
rule: this.taxSituationCalculationRule
|
|
4340
|
+
},
|
|
4341
|
+
{
|
|
4342
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
4343
|
+
rule: this.taxClassificationCalculationRule
|
|
4344
|
+
},
|
|
4345
|
+
{
|
|
4346
|
+
field: exports.EnumCampoTributo.Valor,
|
|
4347
|
+
rule: this.taxAmountCalculationRule
|
|
4348
|
+
}
|
|
4349
|
+
],
|
|
4350
|
+
_h[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
4351
|
+
{
|
|
4352
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
4353
|
+
rule: this.taxSituationCalculationRule
|
|
4354
|
+
},
|
|
4355
|
+
{
|
|
4356
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
4357
|
+
rule: this.taxClassificationCalculationRule
|
|
4358
|
+
},
|
|
4359
|
+
{
|
|
4360
|
+
field: exports.EnumCampoTributo.Valor,
|
|
4361
|
+
rule: this.taxAmountCalculationRule
|
|
4362
|
+
}
|
|
4363
|
+
],
|
|
4032
4364
|
_h),
|
|
4033
4365
|
Reversal: (_j = {},
|
|
4034
4366
|
_j[exports.EnumTipoTributo.CBS] = [
|
|
@@ -4249,6 +4581,34 @@
|
|
|
4249
4581
|
rule: this.taxClassificationCalculationRule
|
|
4250
4582
|
}
|
|
4251
4583
|
],
|
|
4584
|
+
_j[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
4585
|
+
{
|
|
4586
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
4587
|
+
rule: this.taxSituationCalculationRule
|
|
4588
|
+
},
|
|
4589
|
+
{
|
|
4590
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
4591
|
+
rule: this.taxClassificationCalculationRule
|
|
4592
|
+
},
|
|
4593
|
+
{
|
|
4594
|
+
field: exports.EnumCampoTributo.Valor,
|
|
4595
|
+
rule: this.taxAmountCalculationRule
|
|
4596
|
+
}
|
|
4597
|
+
],
|
|
4598
|
+
_j[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
4599
|
+
{
|
|
4600
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
4601
|
+
rule: this.taxSituationCalculationRule
|
|
4602
|
+
},
|
|
4603
|
+
{
|
|
4604
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
4605
|
+
rule: this.taxClassificationCalculationRule
|
|
4606
|
+
},
|
|
4607
|
+
{
|
|
4608
|
+
field: exports.EnumCampoTributo.Valor,
|
|
4609
|
+
rule: this.taxAmountCalculationRule
|
|
4610
|
+
}
|
|
4611
|
+
],
|
|
4252
4612
|
_j),
|
|
4253
4613
|
Standard: (_k = {},
|
|
4254
4614
|
_k[exports.EnumTipoTributo.CBS] = [
|
|
@@ -4469,6 +4829,34 @@
|
|
|
4469
4829
|
rule: this.taxClassificationCalculationRule
|
|
4470
4830
|
}
|
|
4471
4831
|
],
|
|
4832
|
+
_k[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
4833
|
+
{
|
|
4834
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
4835
|
+
rule: this.taxSituationCalculationRule
|
|
4836
|
+
},
|
|
4837
|
+
{
|
|
4838
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
4839
|
+
rule: this.taxClassificationCalculationRule
|
|
4840
|
+
},
|
|
4841
|
+
{
|
|
4842
|
+
field: exports.EnumCampoTributo.Valor,
|
|
4843
|
+
rule: this.taxAmountCalculationRule
|
|
4844
|
+
}
|
|
4845
|
+
],
|
|
4846
|
+
_k[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
4847
|
+
{
|
|
4848
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
4849
|
+
rule: this.taxSituationCalculationRule
|
|
4850
|
+
},
|
|
4851
|
+
{
|
|
4852
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
4853
|
+
rule: this.taxClassificationCalculationRule
|
|
4854
|
+
},
|
|
4855
|
+
{
|
|
4856
|
+
field: exports.EnumCampoTributo.Valor,
|
|
4857
|
+
rule: this.taxAmountCalculationRule
|
|
4858
|
+
}
|
|
4859
|
+
],
|
|
4472
4860
|
_k)
|
|
4473
4861
|
};
|
|
4474
4862
|
}
|
|
@@ -4482,11 +4870,12 @@
|
|
|
4482
4870
|
{ type: EffectiveTaxRateCalculationRule },
|
|
4483
4871
|
{ type: TaxAmountCalculationRule },
|
|
4484
4872
|
{ type: GrossAmountCalculationRule },
|
|
4873
|
+
{ type: TaxSituationCalculationRule },
|
|
4485
4874
|
{ type: TaxClassificationCalculationRule },
|
|
4486
4875
|
{ type: TaxCalculationTypeCalculationRule },
|
|
4487
4876
|
{ type: ManualTaxCalculationRule }
|
|
4488
4877
|
]; };
|
|
4489
|
-
IncomingInvoiceCalculationRulesRegistry.ɵprov = core.ɵɵdefineInjectable({ factory: function IncomingInvoiceCalculationRulesRegistry_Factory() { return new IncomingInvoiceCalculationRulesRegistry(core.ɵɵinject(TaxableBaseCalculationRule), core.ɵɵinject(TaxRateCalculationRule), core.ɵɵinject(EffectiveTaxRateCalculationRule), core.ɵɵinject(TaxAmountCalculationRule), core.ɵɵinject(GrossAmountCalculationRule), core.ɵɵinject(TaxClassificationCalculationRule), core.ɵɵinject(TaxCalculationTypeCalculationRule), core.ɵɵinject(ManualTaxCalculationRule)); }, token: IncomingInvoiceCalculationRulesRegistry, providedIn: "root" });
|
|
4878
|
+
IncomingInvoiceCalculationRulesRegistry.ɵprov = core.ɵɵdefineInjectable({ factory: function IncomingInvoiceCalculationRulesRegistry_Factory() { return new IncomingInvoiceCalculationRulesRegistry(core.ɵɵinject(TaxableBaseCalculationRule), core.ɵɵinject(TaxRateCalculationRule), core.ɵɵinject(EffectiveTaxRateCalculationRule), core.ɵɵinject(TaxAmountCalculationRule), core.ɵɵinject(GrossAmountCalculationRule), core.ɵɵinject(TaxSituationCalculationRule), core.ɵɵinject(TaxClassificationCalculationRule), core.ɵɵinject(TaxCalculationTypeCalculationRule), core.ɵɵinject(ManualTaxCalculationRule)); }, token: IncomingInvoiceCalculationRulesRegistry, providedIn: "root" });
|
|
4490
4879
|
IncomingInvoiceCalculationRulesRegistry = __decorate([
|
|
4491
4880
|
core.Injectable({ providedIn: 'root' })
|
|
4492
4881
|
], IncomingInvoiceCalculationRulesRegistry);
|
|
@@ -4562,141 +4951,6 @@
|
|
|
4562
4951
|
return AssessmentPeriodCalculationRule;
|
|
4563
4952
|
}());
|
|
4564
4953
|
|
|
4565
|
-
var TaxSituationCalculationRule = /** @class */ (function () {
|
|
4566
|
-
function TaxSituationCalculationRule() {
|
|
4567
|
-
}
|
|
4568
|
-
TaxSituationCalculationRule.prototype.apply = function (_a) {
|
|
4569
|
-
var document = _a.context.document, group = _a.group, _b = _a.item, taxType = _b.name, formGroup = _b.formGroup;
|
|
4570
|
-
switch (taxType) {
|
|
4571
|
-
case exports.EnumTipoTributo.CBS_ESTORNO_CREDITO:
|
|
4572
|
-
{
|
|
4573
|
-
var _c = group.item.find(function (_a) {
|
|
4574
|
-
var name = _a.name;
|
|
4575
|
-
return name === exports.EnumTipoTributo.IBS_ESTORNO_CREDITO;
|
|
4576
|
-
}), ibsEstornoCreditoFormGroup = _c.formGroup, ibsEstornoCreditoFormField = _c.formField;
|
|
4577
|
-
var dataKey_1 = ibsEstornoCreditoFormField.find(function (_a) {
|
|
4578
|
-
var name = _a.name;
|
|
4579
|
-
return name === 'situacaoTributaria';
|
|
4580
|
-
}).dataKey;
|
|
4581
|
-
rxjs.combineLatest([
|
|
4582
|
-
ibsEstornoCreditoFormGroup
|
|
4583
|
-
.get('situacaoTributaria')
|
|
4584
|
-
.valueChanges.pipe(operators.startWith(ibsEstornoCreditoFormGroup.get('situacaoTributaria').value), operators.distinctUntilChanged(function (old, current) {
|
|
4585
|
-
return (old === null || old === void 0 ? void 0 : old[dataKey_1]) === (current === null || current === void 0 ? void 0 : current[dataKey_1]);
|
|
4586
|
-
}))
|
|
4587
|
-
])
|
|
4588
|
-
.pipe(operators.skip(1), operators.map(function (_a) {
|
|
4589
|
-
var _b = __read(_a, 1), taxSituation = _b[0];
|
|
4590
|
-
return [taxSituation];
|
|
4591
|
-
}))
|
|
4592
|
-
.subscribe(function (_a) {
|
|
4593
|
-
var _b = __read(_a, 1), taxSituation = _b[0];
|
|
4594
|
-
formGroup
|
|
4595
|
-
.get('situacaoTributaria')
|
|
4596
|
-
.setValue(taxSituation);
|
|
4597
|
-
});
|
|
4598
|
-
}
|
|
4599
|
-
break;
|
|
4600
|
-
case exports.EnumTipoTributo.IBS_ESTORNO_CREDITO:
|
|
4601
|
-
{
|
|
4602
|
-
var _d = group.item.find(function (_a) {
|
|
4603
|
-
var name = _a.name;
|
|
4604
|
-
return name === exports.EnumTipoTributo.CBS_ESTORNO_CREDITO;
|
|
4605
|
-
}), cbsEstornoCreditoFormGroup = _d.formGroup, cbsEstornoCreditoFormField = _d.formField;
|
|
4606
|
-
var dataKey_2 = cbsEstornoCreditoFormField.find(function (_a) {
|
|
4607
|
-
var name = _a.name;
|
|
4608
|
-
return name === 'situacaoTributaria';
|
|
4609
|
-
}).dataKey;
|
|
4610
|
-
rxjs.combineLatest([
|
|
4611
|
-
cbsEstornoCreditoFormGroup
|
|
4612
|
-
.get('situacaoTributaria')
|
|
4613
|
-
.valueChanges.pipe(operators.startWith(cbsEstornoCreditoFormGroup.get('situacaoTributaria').value), operators.distinctUntilChanged(function (old, current) {
|
|
4614
|
-
return (old === null || old === void 0 ? void 0 : old[dataKey_2]) === (current === null || current === void 0 ? void 0 : current[dataKey_2]);
|
|
4615
|
-
}))
|
|
4616
|
-
])
|
|
4617
|
-
.pipe(operators.skip(1), operators.map(function (_a) {
|
|
4618
|
-
var _b = __read(_a, 1), taxSituation = _b[0];
|
|
4619
|
-
return [taxSituation];
|
|
4620
|
-
}))
|
|
4621
|
-
.subscribe(function (_a) {
|
|
4622
|
-
var _b = __read(_a, 1), taxSituation = _b[0];
|
|
4623
|
-
formGroup
|
|
4624
|
-
.get('situacaoTributaria')
|
|
4625
|
-
.setValue(taxSituation);
|
|
4626
|
-
});
|
|
4627
|
-
}
|
|
4628
|
-
break;
|
|
4629
|
-
case exports.EnumTipoTributo.CBS_AJUSTE:
|
|
4630
|
-
{
|
|
4631
|
-
var _e = group.item.find(function (_a) {
|
|
4632
|
-
var name = _a.name;
|
|
4633
|
-
return name === exports.EnumTipoTributo.IBS_AJUSTE;
|
|
4634
|
-
}), ibsAjusteFormGroup = _e.formGroup, ibsAjusteFormField = _e.formField;
|
|
4635
|
-
var dataKey_3 = ibsAjusteFormField.find(function (_a) {
|
|
4636
|
-
var name = _a.name;
|
|
4637
|
-
return name === 'situacaoTributaria';
|
|
4638
|
-
}).dataKey;
|
|
4639
|
-
rxjs.combineLatest([
|
|
4640
|
-
ibsAjusteFormGroup
|
|
4641
|
-
.get('situacaoTributaria')
|
|
4642
|
-
.valueChanges.pipe(operators.startWith(ibsAjusteFormGroup.get('situacaoTributaria')
|
|
4643
|
-
.value), operators.distinctUntilChanged(function (old, current) {
|
|
4644
|
-
return (old === null || old === void 0 ? void 0 : old[dataKey_3]) === (current === null || current === void 0 ? void 0 : current[dataKey_3]);
|
|
4645
|
-
}))
|
|
4646
|
-
])
|
|
4647
|
-
.pipe(operators.skip(1), operators.map(function (_a) {
|
|
4648
|
-
var _b = __read(_a, 1), taxSituation = _b[0];
|
|
4649
|
-
return [taxSituation];
|
|
4650
|
-
}))
|
|
4651
|
-
.subscribe(function (_a) {
|
|
4652
|
-
var _b = __read(_a, 1), taxSituation = _b[0];
|
|
4653
|
-
formGroup
|
|
4654
|
-
.get('situacaoTributaria')
|
|
4655
|
-
.setValue(taxSituation);
|
|
4656
|
-
});
|
|
4657
|
-
}
|
|
4658
|
-
break;
|
|
4659
|
-
case exports.EnumTipoTributo.IBS_AJUSTE:
|
|
4660
|
-
{
|
|
4661
|
-
var _f = group.item.find(function (_a) {
|
|
4662
|
-
var name = _a.name;
|
|
4663
|
-
return name === exports.EnumTipoTributo.CBS_AJUSTE;
|
|
4664
|
-
}), cbsAjusteFormGroup = _f.formGroup, cbsAjusteFormField = _f.formField;
|
|
4665
|
-
var dataKey_4 = cbsAjusteFormField.find(function (_a) {
|
|
4666
|
-
var name = _a.name;
|
|
4667
|
-
return name === 'situacaoTributaria';
|
|
4668
|
-
}).dataKey;
|
|
4669
|
-
rxjs.combineLatest([
|
|
4670
|
-
cbsAjusteFormGroup
|
|
4671
|
-
.get('situacaoTributaria')
|
|
4672
|
-
.valueChanges.pipe(operators.startWith(cbsAjusteFormGroup.get('situacaoTributaria')
|
|
4673
|
-
.value), operators.distinctUntilChanged(function (old, current) {
|
|
4674
|
-
return (old === null || old === void 0 ? void 0 : old[dataKey_4]) === (current === null || current === void 0 ? void 0 : current[dataKey_4]);
|
|
4675
|
-
}))
|
|
4676
|
-
])
|
|
4677
|
-
.pipe(operators.skip(1), operators.map(function (_a) {
|
|
4678
|
-
var _b = __read(_a, 1), taxSituation = _b[0];
|
|
4679
|
-
return [taxSituation];
|
|
4680
|
-
}))
|
|
4681
|
-
.subscribe(function (_a) {
|
|
4682
|
-
var _b = __read(_a, 1), taxSituation = _b[0];
|
|
4683
|
-
formGroup
|
|
4684
|
-
.get('situacaoTributaria')
|
|
4685
|
-
.setValue(taxSituation);
|
|
4686
|
-
});
|
|
4687
|
-
}
|
|
4688
|
-
break;
|
|
4689
|
-
default:
|
|
4690
|
-
throw new Error("Regra TaxSituationCalculationRule n\u00E3o implementada para o imposto " + taxType + ", documento " + document + ".");
|
|
4691
|
-
}
|
|
4692
|
-
};
|
|
4693
|
-
TaxSituationCalculationRule.ɵprov = core.ɵɵdefineInjectable({ factory: function TaxSituationCalculationRule_Factory() { return new TaxSituationCalculationRule(); }, token: TaxSituationCalculationRule, providedIn: "root" });
|
|
4694
|
-
TaxSituationCalculationRule = __decorate([
|
|
4695
|
-
core.Injectable({ providedIn: 'root' })
|
|
4696
|
-
], TaxSituationCalculationRule);
|
|
4697
|
-
return TaxSituationCalculationRule;
|
|
4698
|
-
}());
|
|
4699
|
-
|
|
4700
4954
|
var OutgoingInvoiceCalculationRulesRegistry = /** @class */ (function () {
|
|
4701
4955
|
function OutgoingInvoiceCalculationRulesRegistry(taxableBaseCalculationRule, taxRateCalculationRule, effectiveTaxRateCalculationRule, taxAmountCalculationRule, grossAmountCalculationRule, taxSituationCalculationRule, taxClassificationCalculationRule, taxCalculationTypeCalculationRule, assessmentPeriodCalculationRule, manualTaxCalculationRule) {
|
|
4702
4956
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;
|
|
@@ -4926,6 +5180,34 @@
|
|
|
4926
5180
|
rule: this.taxClassificationCalculationRule
|
|
4927
5181
|
}
|
|
4928
5182
|
],
|
|
5183
|
+
_a[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
5184
|
+
{
|
|
5185
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
5186
|
+
rule: this.taxSituationCalculationRule
|
|
5187
|
+
},
|
|
5188
|
+
{
|
|
5189
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
5190
|
+
rule: this.taxClassificationCalculationRule
|
|
5191
|
+
},
|
|
5192
|
+
{
|
|
5193
|
+
field: exports.EnumCampoTributo.Valor,
|
|
5194
|
+
rule: this.taxAmountCalculationRule
|
|
5195
|
+
}
|
|
5196
|
+
],
|
|
5197
|
+
_a[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
5198
|
+
{
|
|
5199
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
5200
|
+
rule: this.taxSituationCalculationRule
|
|
5201
|
+
},
|
|
5202
|
+
{
|
|
5203
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
5204
|
+
rule: this.taxClassificationCalculationRule
|
|
5205
|
+
},
|
|
5206
|
+
{
|
|
5207
|
+
field: exports.EnumCampoTributo.Valor,
|
|
5208
|
+
rule: this.taxAmountCalculationRule
|
|
5209
|
+
}
|
|
5210
|
+
],
|
|
4929
5211
|
_a),
|
|
4930
5212
|
'Product Return': (_b = {},
|
|
4931
5213
|
_b[exports.EnumTipoTributo.CBS] = [
|
|
@@ -5142,6 +5424,34 @@
|
|
|
5142
5424
|
rule: this.taxClassificationCalculationRule
|
|
5143
5425
|
}
|
|
5144
5426
|
],
|
|
5427
|
+
_b[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
5428
|
+
{
|
|
5429
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
5430
|
+
rule: this.taxSituationCalculationRule
|
|
5431
|
+
},
|
|
5432
|
+
{
|
|
5433
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
5434
|
+
rule: this.taxClassificationCalculationRule
|
|
5435
|
+
},
|
|
5436
|
+
{
|
|
5437
|
+
field: exports.EnumCampoTributo.Valor,
|
|
5438
|
+
rule: this.taxAmountCalculationRule
|
|
5439
|
+
}
|
|
5440
|
+
],
|
|
5441
|
+
_b[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
5442
|
+
{
|
|
5443
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
5444
|
+
rule: this.taxSituationCalculationRule
|
|
5445
|
+
},
|
|
5446
|
+
{
|
|
5447
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
5448
|
+
rule: this.taxClassificationCalculationRule
|
|
5449
|
+
},
|
|
5450
|
+
{
|
|
5451
|
+
field: exports.EnumCampoTributo.Valor,
|
|
5452
|
+
rule: this.taxAmountCalculationRule
|
|
5453
|
+
}
|
|
5454
|
+
],
|
|
5145
5455
|
_b),
|
|
5146
5456
|
'Product Sale': (_c = {},
|
|
5147
5457
|
_c[exports.EnumTipoTributo.CBS] = [
|
|
@@ -5358,6 +5668,34 @@
|
|
|
5358
5668
|
rule: this.taxClassificationCalculationRule
|
|
5359
5669
|
}
|
|
5360
5670
|
],
|
|
5671
|
+
_c[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
5672
|
+
{
|
|
5673
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
5674
|
+
rule: this.taxSituationCalculationRule
|
|
5675
|
+
},
|
|
5676
|
+
{
|
|
5677
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
5678
|
+
rule: this.taxClassificationCalculationRule
|
|
5679
|
+
},
|
|
5680
|
+
{
|
|
5681
|
+
field: exports.EnumCampoTributo.Valor,
|
|
5682
|
+
rule: this.taxAmountCalculationRule
|
|
5683
|
+
}
|
|
5684
|
+
],
|
|
5685
|
+
_c[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
5686
|
+
{
|
|
5687
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
5688
|
+
rule: this.taxSituationCalculationRule
|
|
5689
|
+
},
|
|
5690
|
+
{
|
|
5691
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
5692
|
+
rule: this.taxClassificationCalculationRule
|
|
5693
|
+
},
|
|
5694
|
+
{
|
|
5695
|
+
field: exports.EnumCampoTributo.Valor,
|
|
5696
|
+
rule: this.taxAmountCalculationRule
|
|
5697
|
+
}
|
|
5698
|
+
],
|
|
5361
5699
|
_c),
|
|
5362
5700
|
'Service Cancellation': (_d = {},
|
|
5363
5701
|
_d[exports.EnumTipoTributo.CBS] = [
|
|
@@ -5574,6 +5912,34 @@
|
|
|
5574
5912
|
rule: this.taxClassificationCalculationRule
|
|
5575
5913
|
}
|
|
5576
5914
|
],
|
|
5915
|
+
_d[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
5916
|
+
{
|
|
5917
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
5918
|
+
rule: this.taxSituationCalculationRule
|
|
5919
|
+
},
|
|
5920
|
+
{
|
|
5921
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
5922
|
+
rule: this.taxClassificationCalculationRule
|
|
5923
|
+
},
|
|
5924
|
+
{
|
|
5925
|
+
field: exports.EnumCampoTributo.Valor,
|
|
5926
|
+
rule: this.taxAmountCalculationRule
|
|
5927
|
+
}
|
|
5928
|
+
],
|
|
5929
|
+
_d[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
5930
|
+
{
|
|
5931
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
5932
|
+
rule: this.taxSituationCalculationRule
|
|
5933
|
+
},
|
|
5934
|
+
{
|
|
5935
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
5936
|
+
rule: this.taxClassificationCalculationRule
|
|
5937
|
+
},
|
|
5938
|
+
{
|
|
5939
|
+
field: exports.EnumCampoTributo.Valor,
|
|
5940
|
+
rule: this.taxAmountCalculationRule
|
|
5941
|
+
}
|
|
5942
|
+
],
|
|
5577
5943
|
_d),
|
|
5578
5944
|
'Service Sale': (_e = {},
|
|
5579
5945
|
_e[exports.EnumTipoTributo.CBS] = [
|
|
@@ -5790,6 +6156,34 @@
|
|
|
5790
6156
|
rule: this.taxClassificationCalculationRule
|
|
5791
6157
|
}
|
|
5792
6158
|
],
|
|
6159
|
+
_e[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
6160
|
+
{
|
|
6161
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
6162
|
+
rule: this.taxSituationCalculationRule
|
|
6163
|
+
},
|
|
6164
|
+
{
|
|
6165
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
6166
|
+
rule: this.taxClassificationCalculationRule
|
|
6167
|
+
},
|
|
6168
|
+
{
|
|
6169
|
+
field: exports.EnumCampoTributo.Valor,
|
|
6170
|
+
rule: this.taxAmountCalculationRule
|
|
6171
|
+
}
|
|
6172
|
+
],
|
|
6173
|
+
_e[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
6174
|
+
{
|
|
6175
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
6176
|
+
rule: this.taxSituationCalculationRule
|
|
6177
|
+
},
|
|
6178
|
+
{
|
|
6179
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
6180
|
+
rule: this.taxClassificationCalculationRule
|
|
6181
|
+
},
|
|
6182
|
+
{
|
|
6183
|
+
field: exports.EnumCampoTributo.Valor,
|
|
6184
|
+
rule: this.taxAmountCalculationRule
|
|
6185
|
+
}
|
|
6186
|
+
],
|
|
5793
6187
|
_e),
|
|
5794
6188
|
Adjustment: (_f = {},
|
|
5795
6189
|
_f[exports.EnumTipoTributo.CBS] = [
|
|
@@ -6006,6 +6400,34 @@
|
|
|
6006
6400
|
rule: this.taxClassificationCalculationRule
|
|
6007
6401
|
}
|
|
6008
6402
|
],
|
|
6403
|
+
_f[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
6404
|
+
{
|
|
6405
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
6406
|
+
rule: this.taxSituationCalculationRule
|
|
6407
|
+
},
|
|
6408
|
+
{
|
|
6409
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
6410
|
+
rule: this.taxClassificationCalculationRule
|
|
6411
|
+
},
|
|
6412
|
+
{
|
|
6413
|
+
field: exports.EnumCampoTributo.Valor,
|
|
6414
|
+
rule: this.taxAmountCalculationRule
|
|
6415
|
+
}
|
|
6416
|
+
],
|
|
6417
|
+
_f[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
6418
|
+
{
|
|
6419
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
6420
|
+
rule: this.taxSituationCalculationRule
|
|
6421
|
+
},
|
|
6422
|
+
{
|
|
6423
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
6424
|
+
rule: this.taxClassificationCalculationRule
|
|
6425
|
+
},
|
|
6426
|
+
{
|
|
6427
|
+
field: exports.EnumCampoTributo.Valor,
|
|
6428
|
+
rule: this.taxAmountCalculationRule
|
|
6429
|
+
}
|
|
6430
|
+
],
|
|
6009
6431
|
_f),
|
|
6010
6432
|
Charge: (_g = {},
|
|
6011
6433
|
_g[exports.EnumTipoTributo.CBS] = [
|
|
@@ -6222,6 +6644,34 @@
|
|
|
6222
6644
|
rule: this.taxClassificationCalculationRule
|
|
6223
6645
|
}
|
|
6224
6646
|
],
|
|
6647
|
+
_g[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
6648
|
+
{
|
|
6649
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
6650
|
+
rule: this.taxSituationCalculationRule
|
|
6651
|
+
},
|
|
6652
|
+
{
|
|
6653
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
6654
|
+
rule: this.taxClassificationCalculationRule
|
|
6655
|
+
},
|
|
6656
|
+
{
|
|
6657
|
+
field: exports.EnumCampoTributo.Valor,
|
|
6658
|
+
rule: this.taxAmountCalculationRule
|
|
6659
|
+
}
|
|
6660
|
+
],
|
|
6661
|
+
_g[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
6662
|
+
{
|
|
6663
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
6664
|
+
rule: this.taxSituationCalculationRule
|
|
6665
|
+
},
|
|
6666
|
+
{
|
|
6667
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
6668
|
+
rule: this.taxClassificationCalculationRule
|
|
6669
|
+
},
|
|
6670
|
+
{
|
|
6671
|
+
field: exports.EnumCampoTributo.Valor,
|
|
6672
|
+
rule: this.taxAmountCalculationRule
|
|
6673
|
+
}
|
|
6674
|
+
],
|
|
6225
6675
|
_g),
|
|
6226
6676
|
Complement: (_h = {},
|
|
6227
6677
|
_h[exports.EnumTipoTributo.CBS] = [
|
|
@@ -6438,6 +6888,34 @@
|
|
|
6438
6888
|
rule: this.taxClassificationCalculationRule
|
|
6439
6889
|
}
|
|
6440
6890
|
],
|
|
6891
|
+
_h[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
6892
|
+
{
|
|
6893
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
6894
|
+
rule: this.taxSituationCalculationRule
|
|
6895
|
+
},
|
|
6896
|
+
{
|
|
6897
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
6898
|
+
rule: this.taxClassificationCalculationRule
|
|
6899
|
+
},
|
|
6900
|
+
{
|
|
6901
|
+
field: exports.EnumCampoTributo.Valor,
|
|
6902
|
+
rule: this.taxAmountCalculationRule
|
|
6903
|
+
}
|
|
6904
|
+
],
|
|
6905
|
+
_h[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
6906
|
+
{
|
|
6907
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
6908
|
+
rule: this.taxSituationCalculationRule
|
|
6909
|
+
},
|
|
6910
|
+
{
|
|
6911
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
6912
|
+
rule: this.taxClassificationCalculationRule
|
|
6913
|
+
},
|
|
6914
|
+
{
|
|
6915
|
+
field: exports.EnumCampoTributo.Valor,
|
|
6916
|
+
rule: this.taxAmountCalculationRule
|
|
6917
|
+
}
|
|
6918
|
+
],
|
|
6441
6919
|
_h),
|
|
6442
6920
|
Credit: (_j = {},
|
|
6443
6921
|
_j[exports.EnumTipoTributo.CBS] = [
|
|
@@ -6654,6 +7132,34 @@
|
|
|
6654
7132
|
rule: this.taxClassificationCalculationRule
|
|
6655
7133
|
}
|
|
6656
7134
|
],
|
|
7135
|
+
_j[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
7136
|
+
{
|
|
7137
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
7138
|
+
rule: this.taxSituationCalculationRule
|
|
7139
|
+
},
|
|
7140
|
+
{
|
|
7141
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
7142
|
+
rule: this.taxClassificationCalculationRule
|
|
7143
|
+
},
|
|
7144
|
+
{
|
|
7145
|
+
field: exports.EnumCampoTributo.Valor,
|
|
7146
|
+
rule: this.taxAmountCalculationRule
|
|
7147
|
+
}
|
|
7148
|
+
],
|
|
7149
|
+
_j[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
7150
|
+
{
|
|
7151
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
7152
|
+
rule: this.taxSituationCalculationRule
|
|
7153
|
+
},
|
|
7154
|
+
{
|
|
7155
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
7156
|
+
rule: this.taxClassificationCalculationRule
|
|
7157
|
+
},
|
|
7158
|
+
{
|
|
7159
|
+
field: exports.EnumCampoTributo.Valor,
|
|
7160
|
+
rule: this.taxAmountCalculationRule
|
|
7161
|
+
}
|
|
7162
|
+
],
|
|
6657
7163
|
_j),
|
|
6658
7164
|
Debit: (_k = {},
|
|
6659
7165
|
_k[exports.EnumTipoTributo.CBS] = [
|
|
@@ -7150,6 +7656,34 @@
|
|
|
7150
7656
|
rule: this.taxClassificationCalculationRule
|
|
7151
7657
|
}
|
|
7152
7658
|
],
|
|
7659
|
+
_l[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
7660
|
+
{
|
|
7661
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
7662
|
+
rule: this.taxSituationCalculationRule
|
|
7663
|
+
},
|
|
7664
|
+
{
|
|
7665
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
7666
|
+
rule: this.taxClassificationCalculationRule
|
|
7667
|
+
},
|
|
7668
|
+
{
|
|
7669
|
+
field: exports.EnumCampoTributo.Valor,
|
|
7670
|
+
rule: this.taxAmountCalculationRule
|
|
7671
|
+
}
|
|
7672
|
+
],
|
|
7673
|
+
_l[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
7674
|
+
{
|
|
7675
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
7676
|
+
rule: this.taxSituationCalculationRule
|
|
7677
|
+
},
|
|
7678
|
+
{
|
|
7679
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
7680
|
+
rule: this.taxClassificationCalculationRule
|
|
7681
|
+
},
|
|
7682
|
+
{
|
|
7683
|
+
field: exports.EnumCampoTributo.Valor,
|
|
7684
|
+
rule: this.taxAmountCalculationRule
|
|
7685
|
+
}
|
|
7686
|
+
],
|
|
7153
7687
|
_l),
|
|
7154
7688
|
Other: (_m = {},
|
|
7155
7689
|
_m[exports.EnumTipoTributo.CBS] = [
|
|
@@ -7366,6 +7900,34 @@
|
|
|
7366
7900
|
rule: this.taxClassificationCalculationRule
|
|
7367
7901
|
}
|
|
7368
7902
|
],
|
|
7903
|
+
_m[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
7904
|
+
{
|
|
7905
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
7906
|
+
rule: this.taxSituationCalculationRule
|
|
7907
|
+
},
|
|
7908
|
+
{
|
|
7909
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
7910
|
+
rule: this.taxClassificationCalculationRule
|
|
7911
|
+
},
|
|
7912
|
+
{
|
|
7913
|
+
field: exports.EnumCampoTributo.Valor,
|
|
7914
|
+
rule: this.taxAmountCalculationRule
|
|
7915
|
+
}
|
|
7916
|
+
],
|
|
7917
|
+
_m[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
7918
|
+
{
|
|
7919
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
7920
|
+
rule: this.taxSituationCalculationRule
|
|
7921
|
+
},
|
|
7922
|
+
{
|
|
7923
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
7924
|
+
rule: this.taxClassificationCalculationRule
|
|
7925
|
+
},
|
|
7926
|
+
{
|
|
7927
|
+
field: exports.EnumCampoTributo.Valor,
|
|
7928
|
+
rule: this.taxAmountCalculationRule
|
|
7929
|
+
}
|
|
7930
|
+
],
|
|
7369
7931
|
_m),
|
|
7370
7932
|
Return: (_o = {},
|
|
7371
7933
|
_o[exports.EnumTipoTributo.CBS] = [
|
|
@@ -7582,6 +8144,34 @@
|
|
|
7582
8144
|
rule: this.taxClassificationCalculationRule
|
|
7583
8145
|
}
|
|
7584
8146
|
],
|
|
8147
|
+
_o[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
8148
|
+
{
|
|
8149
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
8150
|
+
rule: this.taxSituationCalculationRule
|
|
8151
|
+
},
|
|
8152
|
+
{
|
|
8153
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
8154
|
+
rule: this.taxClassificationCalculationRule
|
|
8155
|
+
},
|
|
8156
|
+
{
|
|
8157
|
+
field: exports.EnumCampoTributo.Valor,
|
|
8158
|
+
rule: this.taxAmountCalculationRule
|
|
8159
|
+
}
|
|
8160
|
+
],
|
|
8161
|
+
_o[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
8162
|
+
{
|
|
8163
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
8164
|
+
rule: this.taxSituationCalculationRule
|
|
8165
|
+
},
|
|
8166
|
+
{
|
|
8167
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
8168
|
+
rule: this.taxClassificationCalculationRule
|
|
8169
|
+
},
|
|
8170
|
+
{
|
|
8171
|
+
field: exports.EnumCampoTributo.Valor,
|
|
8172
|
+
rule: this.taxAmountCalculationRule
|
|
8173
|
+
}
|
|
8174
|
+
],
|
|
7585
8175
|
_o),
|
|
7586
8176
|
Reversal: (_p = {},
|
|
7587
8177
|
_p[exports.EnumTipoTributo.CBS] = [
|
|
@@ -7798,6 +8388,34 @@
|
|
|
7798
8388
|
rule: this.taxClassificationCalculationRule
|
|
7799
8389
|
}
|
|
7800
8390
|
],
|
|
8391
|
+
_p[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
8392
|
+
{
|
|
8393
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
8394
|
+
rule: this.taxSituationCalculationRule
|
|
8395
|
+
},
|
|
8396
|
+
{
|
|
8397
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
8398
|
+
rule: this.taxClassificationCalculationRule
|
|
8399
|
+
},
|
|
8400
|
+
{
|
|
8401
|
+
field: exports.EnumCampoTributo.Valor,
|
|
8402
|
+
rule: this.taxAmountCalculationRule
|
|
8403
|
+
}
|
|
8404
|
+
],
|
|
8405
|
+
_p[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
8406
|
+
{
|
|
8407
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
8408
|
+
rule: this.taxSituationCalculationRule
|
|
8409
|
+
},
|
|
8410
|
+
{
|
|
8411
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
8412
|
+
rule: this.taxClassificationCalculationRule
|
|
8413
|
+
},
|
|
8414
|
+
{
|
|
8415
|
+
field: exports.EnumCampoTributo.Valor,
|
|
8416
|
+
rule: this.taxAmountCalculationRule
|
|
8417
|
+
}
|
|
8418
|
+
],
|
|
7801
8419
|
_p),
|
|
7802
8420
|
Shipment: (_q = {},
|
|
7803
8421
|
_q[exports.EnumTipoTributo.CBS] = [
|
|
@@ -7994,24 +8612,52 @@
|
|
|
7994
8612
|
rule: this.taxAmountCalculationRule
|
|
7995
8613
|
}
|
|
7996
8614
|
],
|
|
7997
|
-
_q[exports.EnumTipoTributo.IBS_CREDITO_PRESUMIDO] = [
|
|
8615
|
+
_q[exports.EnumTipoTributo.IBS_CREDITO_PRESUMIDO] = [
|
|
8616
|
+
{
|
|
8617
|
+
field: exports.EnumCampoTributo.BaseCalculo,
|
|
8618
|
+
rule: this.taxableBaseCalculationRule
|
|
8619
|
+
},
|
|
8620
|
+
{
|
|
8621
|
+
field: exports.EnumCampoTributo.Valor,
|
|
8622
|
+
rule: this.taxAmountCalculationRule
|
|
8623
|
+
}
|
|
8624
|
+
],
|
|
8625
|
+
_q[exports.EnumTipoTributo.IS] = [
|
|
8626
|
+
{
|
|
8627
|
+
field: exports.EnumCampoTributo.Valor,
|
|
8628
|
+
rule: this.taxAmountCalculationRule
|
|
8629
|
+
},
|
|
8630
|
+
{
|
|
8631
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
8632
|
+
rule: this.taxClassificationCalculationRule
|
|
8633
|
+
}
|
|
8634
|
+
],
|
|
8635
|
+
_q[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
7998
8636
|
{
|
|
7999
|
-
field: exports.EnumCampoTributo.
|
|
8000
|
-
rule: this.
|
|
8637
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
8638
|
+
rule: this.taxSituationCalculationRule
|
|
8639
|
+
},
|
|
8640
|
+
{
|
|
8641
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
8642
|
+
rule: this.taxClassificationCalculationRule
|
|
8001
8643
|
},
|
|
8002
8644
|
{
|
|
8003
8645
|
field: exports.EnumCampoTributo.Valor,
|
|
8004
8646
|
rule: this.taxAmountCalculationRule
|
|
8005
8647
|
}
|
|
8006
8648
|
],
|
|
8007
|
-
_q[exports.EnumTipoTributo.
|
|
8649
|
+
_q[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
8008
8650
|
{
|
|
8009
|
-
field: exports.EnumCampoTributo.
|
|
8010
|
-
rule: this.
|
|
8651
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
8652
|
+
rule: this.taxSituationCalculationRule
|
|
8011
8653
|
},
|
|
8012
8654
|
{
|
|
8013
8655
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
8014
8656
|
rule: this.taxClassificationCalculationRule
|
|
8657
|
+
},
|
|
8658
|
+
{
|
|
8659
|
+
field: exports.EnumCampoTributo.Valor,
|
|
8660
|
+
rule: this.taxAmountCalculationRule
|
|
8015
8661
|
}
|
|
8016
8662
|
],
|
|
8017
8663
|
_q),
|
|
@@ -8230,6 +8876,34 @@
|
|
|
8230
8876
|
rule: this.taxClassificationCalculationRule
|
|
8231
8877
|
}
|
|
8232
8878
|
],
|
|
8879
|
+
_r[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
8880
|
+
{
|
|
8881
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
8882
|
+
rule: this.taxSituationCalculationRule
|
|
8883
|
+
},
|
|
8884
|
+
{
|
|
8885
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
8886
|
+
rule: this.taxClassificationCalculationRule
|
|
8887
|
+
},
|
|
8888
|
+
{
|
|
8889
|
+
field: exports.EnumCampoTributo.Valor,
|
|
8890
|
+
rule: this.taxAmountCalculationRule
|
|
8891
|
+
}
|
|
8892
|
+
],
|
|
8893
|
+
_r[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
8894
|
+
{
|
|
8895
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
8896
|
+
rule: this.taxSituationCalculationRule
|
|
8897
|
+
},
|
|
8898
|
+
{
|
|
8899
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
8900
|
+
rule: this.taxClassificationCalculationRule
|
|
8901
|
+
},
|
|
8902
|
+
{
|
|
8903
|
+
field: exports.EnumCampoTributo.Valor,
|
|
8904
|
+
rule: this.taxAmountCalculationRule
|
|
8905
|
+
}
|
|
8906
|
+
],
|
|
8233
8907
|
_r),
|
|
8234
8908
|
Transfer: (_s = {},
|
|
8235
8909
|
_s[exports.EnumTipoTributo.CBS] = [
|
|
@@ -8446,6 +9120,34 @@
|
|
|
8446
9120
|
rule: this.taxClassificationCalculationRule
|
|
8447
9121
|
}
|
|
8448
9122
|
],
|
|
9123
|
+
_s[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
9124
|
+
{
|
|
9125
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
9126
|
+
rule: this.taxSituationCalculationRule
|
|
9127
|
+
},
|
|
9128
|
+
{
|
|
9129
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
9130
|
+
rule: this.taxClassificationCalculationRule
|
|
9131
|
+
},
|
|
9132
|
+
{
|
|
9133
|
+
field: exports.EnumCampoTributo.Valor,
|
|
9134
|
+
rule: this.taxAmountCalculationRule
|
|
9135
|
+
}
|
|
9136
|
+
],
|
|
9137
|
+
_s[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
9138
|
+
{
|
|
9139
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
9140
|
+
rule: this.taxSituationCalculationRule
|
|
9141
|
+
},
|
|
9142
|
+
{
|
|
9143
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
9144
|
+
rule: this.taxClassificationCalculationRule
|
|
9145
|
+
},
|
|
9146
|
+
{
|
|
9147
|
+
field: exports.EnumCampoTributo.Valor,
|
|
9148
|
+
rule: this.taxAmountCalculationRule
|
|
9149
|
+
}
|
|
9150
|
+
],
|
|
8449
9151
|
_s)
|
|
8450
9152
|
};
|
|
8451
9153
|
}
|
|
@@ -10256,6 +10958,18 @@
|
|
|
10256
10958
|
rule: this.taxClassificationStatusRule
|
|
10257
10959
|
}
|
|
10258
10960
|
],
|
|
10961
|
+
_a[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
10962
|
+
{
|
|
10963
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
10964
|
+
rule: this.taxClassificationStatusRule
|
|
10965
|
+
}
|
|
10966
|
+
],
|
|
10967
|
+
_a[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
10968
|
+
{
|
|
10969
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
10970
|
+
rule: this.taxClassificationStatusRule
|
|
10971
|
+
}
|
|
10972
|
+
],
|
|
10259
10973
|
_a),
|
|
10260
10974
|
'Producer Invoice': (_b = {},
|
|
10261
10975
|
_b[exports.EnumTipoTributo.CBS] = [
|
|
@@ -10301,6 +11015,18 @@
|
|
|
10301
11015
|
rule: this.taxClassificationStatusRule
|
|
10302
11016
|
}
|
|
10303
11017
|
],
|
|
11018
|
+
_b[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
11019
|
+
{
|
|
11020
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11021
|
+
rule: this.taxClassificationStatusRule
|
|
11022
|
+
}
|
|
11023
|
+
],
|
|
11024
|
+
_b[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
11025
|
+
{
|
|
11026
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11027
|
+
rule: this.taxClassificationStatusRule
|
|
11028
|
+
}
|
|
11029
|
+
],
|
|
10304
11030
|
_b),
|
|
10305
11031
|
'Service Invoice': (_c = {},
|
|
10306
11032
|
_c[exports.EnumTipoTributo.CBS] = [
|
|
@@ -10346,6 +11072,18 @@
|
|
|
10346
11072
|
rule: this.taxClassificationStatusRule
|
|
10347
11073
|
}
|
|
10348
11074
|
],
|
|
11075
|
+
_c[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
11076
|
+
{
|
|
11077
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11078
|
+
rule: this.taxClassificationStatusRule
|
|
11079
|
+
}
|
|
11080
|
+
],
|
|
11081
|
+
_c[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
11082
|
+
{
|
|
11083
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11084
|
+
rule: this.taxClassificationStatusRule
|
|
11085
|
+
}
|
|
11086
|
+
],
|
|
10349
11087
|
_c),
|
|
10350
11088
|
'Third Party Return': (_d = {},
|
|
10351
11089
|
_d[exports.EnumTipoTributo.CBS] = [
|
|
@@ -10391,6 +11129,18 @@
|
|
|
10391
11129
|
rule: this.taxClassificationStatusRule
|
|
10392
11130
|
}
|
|
10393
11131
|
],
|
|
11132
|
+
_d[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
11133
|
+
{
|
|
11134
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11135
|
+
rule: this.taxClassificationStatusRule
|
|
11136
|
+
}
|
|
11137
|
+
],
|
|
11138
|
+
_d[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
11139
|
+
{
|
|
11140
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11141
|
+
rule: this.taxClassificationStatusRule
|
|
11142
|
+
}
|
|
11143
|
+
],
|
|
10394
11144
|
_d),
|
|
10395
11145
|
Complement: (_e = {},
|
|
10396
11146
|
_e[exports.EnumTipoTributo.CBS] = [
|
|
@@ -10436,6 +11186,18 @@
|
|
|
10436
11186
|
rule: this.taxClassificationStatusRule
|
|
10437
11187
|
}
|
|
10438
11188
|
],
|
|
11189
|
+
_e[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
11190
|
+
{
|
|
11191
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11192
|
+
rule: this.taxClassificationStatusRule
|
|
11193
|
+
}
|
|
11194
|
+
],
|
|
11195
|
+
_e[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
11196
|
+
{
|
|
11197
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11198
|
+
rule: this.taxClassificationStatusRule
|
|
11199
|
+
}
|
|
11200
|
+
],
|
|
10439
11201
|
_e),
|
|
10440
11202
|
Credit: (_f = {},
|
|
10441
11203
|
_f[exports.EnumTipoTributo.CBS] = [
|
|
@@ -10526,6 +11288,18 @@
|
|
|
10526
11288
|
rule: this.taxClassificationStatusRule
|
|
10527
11289
|
}
|
|
10528
11290
|
],
|
|
11291
|
+
_g[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
11292
|
+
{
|
|
11293
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11294
|
+
rule: this.taxClassificationStatusRule
|
|
11295
|
+
}
|
|
11296
|
+
],
|
|
11297
|
+
_g[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
11298
|
+
{
|
|
11299
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11300
|
+
rule: this.taxClassificationStatusRule
|
|
11301
|
+
}
|
|
11302
|
+
],
|
|
10529
11303
|
_g),
|
|
10530
11304
|
Return: (_h = {},
|
|
10531
11305
|
_h[exports.EnumTipoTributo.CBS] = [
|
|
@@ -10571,6 +11345,18 @@
|
|
|
10571
11345
|
rule: this.taxClassificationStatusRule
|
|
10572
11346
|
}
|
|
10573
11347
|
],
|
|
11348
|
+
_h[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
11349
|
+
{
|
|
11350
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11351
|
+
rule: this.taxClassificationStatusRule
|
|
11352
|
+
}
|
|
11353
|
+
],
|
|
11354
|
+
_h[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
11355
|
+
{
|
|
11356
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11357
|
+
rule: this.taxClassificationStatusRule
|
|
11358
|
+
}
|
|
11359
|
+
],
|
|
10574
11360
|
_h),
|
|
10575
11361
|
Reversal: (_j = {},
|
|
10576
11362
|
_j[exports.EnumTipoTributo.CBS] = [
|
|
@@ -10616,6 +11402,18 @@
|
|
|
10616
11402
|
rule: this.taxClassificationStatusRule
|
|
10617
11403
|
}
|
|
10618
11404
|
],
|
|
11405
|
+
_j[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
11406
|
+
{
|
|
11407
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11408
|
+
rule: this.taxClassificationStatusRule
|
|
11409
|
+
}
|
|
11410
|
+
],
|
|
11411
|
+
_j[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
11412
|
+
{
|
|
11413
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11414
|
+
rule: this.taxClassificationStatusRule
|
|
11415
|
+
}
|
|
11416
|
+
],
|
|
10619
11417
|
_j),
|
|
10620
11418
|
Standard: (_k = {},
|
|
10621
11419
|
_k[exports.EnumTipoTributo.CBS] = [
|
|
@@ -10661,6 +11459,18 @@
|
|
|
10661
11459
|
rule: this.taxClassificationStatusRule
|
|
10662
11460
|
}
|
|
10663
11461
|
],
|
|
11462
|
+
_k[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
11463
|
+
{
|
|
11464
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11465
|
+
rule: this.taxClassificationStatusRule
|
|
11466
|
+
}
|
|
11467
|
+
],
|
|
11468
|
+
_k[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
11469
|
+
{
|
|
11470
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11471
|
+
rule: this.taxClassificationStatusRule
|
|
11472
|
+
}
|
|
11473
|
+
],
|
|
10664
11474
|
_k)
|
|
10665
11475
|
};
|
|
10666
11476
|
}
|
|
@@ -10727,6 +11537,18 @@
|
|
|
10727
11537
|
rule: this.taxClassificationStatusRule
|
|
10728
11538
|
}
|
|
10729
11539
|
],
|
|
11540
|
+
_a[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
11541
|
+
{
|
|
11542
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11543
|
+
rule: this.taxClassificationStatusRule
|
|
11544
|
+
}
|
|
11545
|
+
],
|
|
11546
|
+
_a[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
11547
|
+
{
|
|
11548
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11549
|
+
rule: this.taxClassificationStatusRule
|
|
11550
|
+
}
|
|
11551
|
+
],
|
|
10730
11552
|
_a),
|
|
10731
11553
|
'Product Return': (_b = {},
|
|
10732
11554
|
_b[exports.EnumTipoTributo.CBS] = [
|
|
@@ -10772,6 +11594,18 @@
|
|
|
10772
11594
|
rule: this.taxClassificationStatusRule
|
|
10773
11595
|
}
|
|
10774
11596
|
],
|
|
11597
|
+
_b[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
11598
|
+
{
|
|
11599
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11600
|
+
rule: this.taxClassificationStatusRule
|
|
11601
|
+
}
|
|
11602
|
+
],
|
|
11603
|
+
_b[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
11604
|
+
{
|
|
11605
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11606
|
+
rule: this.taxClassificationStatusRule
|
|
11607
|
+
}
|
|
11608
|
+
],
|
|
10775
11609
|
_b),
|
|
10776
11610
|
'Product Sale': (_c = {},
|
|
10777
11611
|
_c[exports.EnumTipoTributo.CBS] = [
|
|
@@ -10817,6 +11651,18 @@
|
|
|
10817
11651
|
rule: this.taxClassificationStatusRule
|
|
10818
11652
|
}
|
|
10819
11653
|
],
|
|
11654
|
+
_c[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
11655
|
+
{
|
|
11656
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11657
|
+
rule: this.taxClassificationStatusRule
|
|
11658
|
+
}
|
|
11659
|
+
],
|
|
11660
|
+
_c[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
11661
|
+
{
|
|
11662
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11663
|
+
rule: this.taxClassificationStatusRule
|
|
11664
|
+
}
|
|
11665
|
+
],
|
|
10820
11666
|
_c),
|
|
10821
11667
|
'Service Cancellation': (_d = {},
|
|
10822
11668
|
_d[exports.EnumTipoTributo.CBS] = [
|
|
@@ -10862,6 +11708,18 @@
|
|
|
10862
11708
|
rule: this.taxClassificationStatusRule
|
|
10863
11709
|
}
|
|
10864
11710
|
],
|
|
11711
|
+
_d[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
11712
|
+
{
|
|
11713
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11714
|
+
rule: this.taxClassificationStatusRule
|
|
11715
|
+
}
|
|
11716
|
+
],
|
|
11717
|
+
_d[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
11718
|
+
{
|
|
11719
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11720
|
+
rule: this.taxClassificationStatusRule
|
|
11721
|
+
}
|
|
11722
|
+
],
|
|
10865
11723
|
_d),
|
|
10866
11724
|
'Service Sale': (_e = {},
|
|
10867
11725
|
_e[exports.EnumTipoTributo.CBS] = [
|
|
@@ -10907,6 +11765,18 @@
|
|
|
10907
11765
|
rule: this.taxClassificationStatusRule
|
|
10908
11766
|
}
|
|
10909
11767
|
],
|
|
11768
|
+
_e[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
11769
|
+
{
|
|
11770
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11771
|
+
rule: this.taxClassificationStatusRule
|
|
11772
|
+
}
|
|
11773
|
+
],
|
|
11774
|
+
_e[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
11775
|
+
{
|
|
11776
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11777
|
+
rule: this.taxClassificationStatusRule
|
|
11778
|
+
}
|
|
11779
|
+
],
|
|
10910
11780
|
_e),
|
|
10911
11781
|
Adjustment: (_f = {},
|
|
10912
11782
|
_f[exports.EnumTipoTributo.CBS] = [
|
|
@@ -10952,6 +11822,18 @@
|
|
|
10952
11822
|
rule: this.taxClassificationStatusRule
|
|
10953
11823
|
}
|
|
10954
11824
|
],
|
|
11825
|
+
_f[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
11826
|
+
{
|
|
11827
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11828
|
+
rule: this.taxClassificationStatusRule
|
|
11829
|
+
}
|
|
11830
|
+
],
|
|
11831
|
+
_f[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
11832
|
+
{
|
|
11833
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11834
|
+
rule: this.taxClassificationStatusRule
|
|
11835
|
+
}
|
|
11836
|
+
],
|
|
10955
11837
|
_f),
|
|
10956
11838
|
Charge: (_g = {},
|
|
10957
11839
|
_g[exports.EnumTipoTributo.CBS] = [
|
|
@@ -10997,6 +11879,18 @@
|
|
|
10997
11879
|
rule: this.taxClassificationStatusRule
|
|
10998
11880
|
}
|
|
10999
11881
|
],
|
|
11882
|
+
_g[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
11883
|
+
{
|
|
11884
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11885
|
+
rule: this.taxClassificationStatusRule
|
|
11886
|
+
}
|
|
11887
|
+
],
|
|
11888
|
+
_g[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
11889
|
+
{
|
|
11890
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11891
|
+
rule: this.taxClassificationStatusRule
|
|
11892
|
+
}
|
|
11893
|
+
],
|
|
11000
11894
|
_g),
|
|
11001
11895
|
Complement: (_h = {},
|
|
11002
11896
|
_h[exports.EnumTipoTributo.CBS] = [
|
|
@@ -11042,6 +11936,18 @@
|
|
|
11042
11936
|
rule: this.taxClassificationStatusRule
|
|
11043
11937
|
}
|
|
11044
11938
|
],
|
|
11939
|
+
_h[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
11940
|
+
{
|
|
11941
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11942
|
+
rule: this.taxClassificationStatusRule
|
|
11943
|
+
}
|
|
11944
|
+
],
|
|
11945
|
+
_h[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
11946
|
+
{
|
|
11947
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11948
|
+
rule: this.taxClassificationStatusRule
|
|
11949
|
+
}
|
|
11950
|
+
],
|
|
11045
11951
|
_h),
|
|
11046
11952
|
Credit: (_j = {},
|
|
11047
11953
|
_j[exports.EnumTipoTributo.CBS] = [
|
|
@@ -11068,20 +11974,32 @@
|
|
|
11068
11974
|
rule: this.taxClassificationStatusRule
|
|
11069
11975
|
}
|
|
11070
11976
|
],
|
|
11071
|
-
_j[exports.EnumTipoTributo.IBS_MUNICIPAL] = [
|
|
11977
|
+
_j[exports.EnumTipoTributo.IBS_MUNICIPAL] = [
|
|
11978
|
+
{
|
|
11979
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11980
|
+
rule: this.taxClassificationStatusRule
|
|
11981
|
+
}
|
|
11982
|
+
],
|
|
11983
|
+
_j[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
11984
|
+
{
|
|
11985
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11986
|
+
rule: this.taxClassificationStatusRule
|
|
11987
|
+
}
|
|
11988
|
+
],
|
|
11989
|
+
_j[exports.EnumTipoTributo.IBS_CREDITO_PRESUMIDO] = [],
|
|
11990
|
+
_j[exports.EnumTipoTributo.IS] = [
|
|
11072
11991
|
{
|
|
11073
11992
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11074
11993
|
rule: this.taxClassificationStatusRule
|
|
11075
11994
|
}
|
|
11076
11995
|
],
|
|
11077
|
-
_j[exports.EnumTipoTributo.
|
|
11996
|
+
_j[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
11078
11997
|
{
|
|
11079
11998
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11080
11999
|
rule: this.taxClassificationStatusRule
|
|
11081
12000
|
}
|
|
11082
12001
|
],
|
|
11083
|
-
_j[exports.EnumTipoTributo.
|
|
11084
|
-
_j[exports.EnumTipoTributo.IS] = [
|
|
12002
|
+
_j[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
11085
12003
|
{
|
|
11086
12004
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11087
12005
|
rule: this.taxClassificationStatusRule
|
|
@@ -11201,6 +12119,18 @@
|
|
|
11201
12119
|
rule: this.taxClassificationStatusRule
|
|
11202
12120
|
}
|
|
11203
12121
|
],
|
|
12122
|
+
_l[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
12123
|
+
{
|
|
12124
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12125
|
+
rule: this.taxClassificationStatusRule
|
|
12126
|
+
}
|
|
12127
|
+
],
|
|
12128
|
+
_l[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
12129
|
+
{
|
|
12130
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12131
|
+
rule: this.taxClassificationStatusRule
|
|
12132
|
+
}
|
|
12133
|
+
],
|
|
11204
12134
|
_l),
|
|
11205
12135
|
Other: (_m = {},
|
|
11206
12136
|
_m[exports.EnumTipoTributo.CBS] = [
|
|
@@ -11246,6 +12176,18 @@
|
|
|
11246
12176
|
rule: this.taxClassificationStatusRule
|
|
11247
12177
|
}
|
|
11248
12178
|
],
|
|
12179
|
+
_m[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
12180
|
+
{
|
|
12181
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12182
|
+
rule: this.taxClassificationStatusRule
|
|
12183
|
+
}
|
|
12184
|
+
],
|
|
12185
|
+
_m[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
12186
|
+
{
|
|
12187
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12188
|
+
rule: this.taxClassificationStatusRule
|
|
12189
|
+
}
|
|
12190
|
+
],
|
|
11249
12191
|
_m),
|
|
11250
12192
|
Return: (_o = {},
|
|
11251
12193
|
_o[exports.EnumTipoTributo.CBS] = [
|
|
@@ -11291,6 +12233,18 @@
|
|
|
11291
12233
|
rule: this.taxClassificationStatusRule
|
|
11292
12234
|
}
|
|
11293
12235
|
],
|
|
12236
|
+
_o[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
12237
|
+
{
|
|
12238
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12239
|
+
rule: this.taxClassificationStatusRule
|
|
12240
|
+
}
|
|
12241
|
+
],
|
|
12242
|
+
_o[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
12243
|
+
{
|
|
12244
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12245
|
+
rule: this.taxClassificationStatusRule
|
|
12246
|
+
}
|
|
12247
|
+
],
|
|
11294
12248
|
_o),
|
|
11295
12249
|
Reversal: (_p = {},
|
|
11296
12250
|
_p[exports.EnumTipoTributo.CBS] = [
|
|
@@ -11336,6 +12290,18 @@
|
|
|
11336
12290
|
rule: this.taxClassificationStatusRule
|
|
11337
12291
|
}
|
|
11338
12292
|
],
|
|
12293
|
+
_p[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
12294
|
+
{
|
|
12295
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12296
|
+
rule: this.taxClassificationStatusRule
|
|
12297
|
+
}
|
|
12298
|
+
],
|
|
12299
|
+
_p[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
12300
|
+
{
|
|
12301
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12302
|
+
rule: this.taxClassificationStatusRule
|
|
12303
|
+
}
|
|
12304
|
+
],
|
|
11339
12305
|
_p),
|
|
11340
12306
|
Shipment: (_q = {},
|
|
11341
12307
|
_q[exports.EnumTipoTributo.CBS] = [
|
|
@@ -11381,6 +12347,18 @@
|
|
|
11381
12347
|
rule: this.taxClassificationStatusRule
|
|
11382
12348
|
}
|
|
11383
12349
|
],
|
|
12350
|
+
_q[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
12351
|
+
{
|
|
12352
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12353
|
+
rule: this.taxClassificationStatusRule
|
|
12354
|
+
}
|
|
12355
|
+
],
|
|
12356
|
+
_q[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
12357
|
+
{
|
|
12358
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12359
|
+
rule: this.taxClassificationStatusRule
|
|
12360
|
+
}
|
|
12361
|
+
],
|
|
11384
12362
|
_q),
|
|
11385
12363
|
Substitute: (_r = {},
|
|
11386
12364
|
_r[exports.EnumTipoTributo.CBS] = [
|
|
@@ -11426,6 +12404,18 @@
|
|
|
11426
12404
|
rule: this.taxClassificationStatusRule
|
|
11427
12405
|
}
|
|
11428
12406
|
],
|
|
12407
|
+
_r[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
12408
|
+
{
|
|
12409
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12410
|
+
rule: this.taxClassificationStatusRule
|
|
12411
|
+
}
|
|
12412
|
+
],
|
|
12413
|
+
_r[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
12414
|
+
{
|
|
12415
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12416
|
+
rule: this.taxClassificationStatusRule
|
|
12417
|
+
}
|
|
12418
|
+
],
|
|
11429
12419
|
_r),
|
|
11430
12420
|
Transfer: (_s = {},
|
|
11431
12421
|
_s[exports.EnumTipoTributo.CBS] = [
|
|
@@ -11471,6 +12461,18 @@
|
|
|
11471
12461
|
rule: this.taxClassificationStatusRule
|
|
11472
12462
|
}
|
|
11473
12463
|
],
|
|
12464
|
+
_s[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
12465
|
+
{
|
|
12466
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12467
|
+
rule: this.taxClassificationStatusRule
|
|
12468
|
+
}
|
|
12469
|
+
],
|
|
12470
|
+
_s[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
12471
|
+
{
|
|
12472
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12473
|
+
rule: this.taxClassificationStatusRule
|
|
12474
|
+
}
|
|
12475
|
+
],
|
|
11474
12476
|
_s)
|
|
11475
12477
|
};
|
|
11476
12478
|
}
|
|
@@ -14878,6 +15880,34 @@
|
|
|
14878
15880
|
rules: [this.taxAmountRequiredValidationRule]
|
|
14879
15881
|
}
|
|
14880
15882
|
],
|
|
15883
|
+
_a[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
15884
|
+
{
|
|
15885
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
15886
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
15887
|
+
},
|
|
15888
|
+
{
|
|
15889
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
15890
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
15891
|
+
},
|
|
15892
|
+
{
|
|
15893
|
+
field: exports.EnumCampoTributo.Valor,
|
|
15894
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
15895
|
+
}
|
|
15896
|
+
],
|
|
15897
|
+
_a[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
15898
|
+
{
|
|
15899
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
15900
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
15901
|
+
},
|
|
15902
|
+
{
|
|
15903
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
15904
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
15905
|
+
},
|
|
15906
|
+
{
|
|
15907
|
+
field: exports.EnumCampoTributo.Valor,
|
|
15908
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
15909
|
+
}
|
|
15910
|
+
],
|
|
14881
15911
|
_a),
|
|
14882
15912
|
'Service Invoice': (_b = {},
|
|
14883
15913
|
_b[exports.EnumTipoTributo.CBS] = [
|
|
@@ -15154,6 +16184,34 @@
|
|
|
15154
16184
|
rules: [this.taxAmountRequiredValidationRule]
|
|
15155
16185
|
}
|
|
15156
16186
|
],
|
|
16187
|
+
_b[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
16188
|
+
{
|
|
16189
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
16190
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
16191
|
+
},
|
|
16192
|
+
{
|
|
16193
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
16194
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
16195
|
+
},
|
|
16196
|
+
{
|
|
16197
|
+
field: exports.EnumCampoTributo.Valor,
|
|
16198
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
16199
|
+
}
|
|
16200
|
+
],
|
|
16201
|
+
_b[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
16202
|
+
{
|
|
16203
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
16204
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
16205
|
+
},
|
|
16206
|
+
{
|
|
16207
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
16208
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
16209
|
+
},
|
|
16210
|
+
{
|
|
16211
|
+
field: exports.EnumCampoTributo.Valor,
|
|
16212
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
16213
|
+
}
|
|
16214
|
+
],
|
|
15157
16215
|
_b),
|
|
15158
16216
|
'Third Party Return': (_c = {},
|
|
15159
16217
|
_c[exports.EnumTipoTributo.CBS] = [
|
|
@@ -15430,6 +16488,34 @@
|
|
|
15430
16488
|
rules: [this.taxAmountRequiredValidationRule]
|
|
15431
16489
|
}
|
|
15432
16490
|
],
|
|
16491
|
+
_c[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
16492
|
+
{
|
|
16493
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
16494
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
16495
|
+
},
|
|
16496
|
+
{
|
|
16497
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
16498
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
16499
|
+
},
|
|
16500
|
+
{
|
|
16501
|
+
field: exports.EnumCampoTributo.Valor,
|
|
16502
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
16503
|
+
}
|
|
16504
|
+
],
|
|
16505
|
+
_c[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
16506
|
+
{
|
|
16507
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
16508
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
16509
|
+
},
|
|
16510
|
+
{
|
|
16511
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
16512
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
16513
|
+
},
|
|
16514
|
+
{
|
|
16515
|
+
field: exports.EnumCampoTributo.Valor,
|
|
16516
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
16517
|
+
}
|
|
16518
|
+
],
|
|
15433
16519
|
_c),
|
|
15434
16520
|
Adjustment: (_d = {},
|
|
15435
16521
|
_d[exports.EnumTipoTributo.CBS] = [
|
|
@@ -15706,6 +16792,34 @@
|
|
|
15706
16792
|
rules: [this.taxAmountRequiredValidationRule]
|
|
15707
16793
|
}
|
|
15708
16794
|
],
|
|
16795
|
+
_d[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
16796
|
+
{
|
|
16797
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
16798
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
16799
|
+
},
|
|
16800
|
+
{
|
|
16801
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
16802
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
16803
|
+
},
|
|
16804
|
+
{
|
|
16805
|
+
field: exports.EnumCampoTributo.Valor,
|
|
16806
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
16807
|
+
}
|
|
16808
|
+
],
|
|
16809
|
+
_d[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
16810
|
+
{
|
|
16811
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
16812
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
16813
|
+
},
|
|
16814
|
+
{
|
|
16815
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
16816
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
16817
|
+
},
|
|
16818
|
+
{
|
|
16819
|
+
field: exports.EnumCampoTributo.Valor,
|
|
16820
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
16821
|
+
}
|
|
16822
|
+
],
|
|
15709
16823
|
_d),
|
|
15710
16824
|
Complement: (_e = {},
|
|
15711
16825
|
_e[exports.EnumTipoTributo.CBS] = [
|
|
@@ -15982,6 +17096,34 @@
|
|
|
15982
17096
|
rules: [this.taxAmountRequiredValidationRule]
|
|
15983
17097
|
}
|
|
15984
17098
|
],
|
|
17099
|
+
_e[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
17100
|
+
{
|
|
17101
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
17102
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
17103
|
+
},
|
|
17104
|
+
{
|
|
17105
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
17106
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
17107
|
+
},
|
|
17108
|
+
{
|
|
17109
|
+
field: exports.EnumCampoTributo.Valor,
|
|
17110
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
17111
|
+
}
|
|
17112
|
+
],
|
|
17113
|
+
_e[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
17114
|
+
{
|
|
17115
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
17116
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
17117
|
+
},
|
|
17118
|
+
{
|
|
17119
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
17120
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
17121
|
+
},
|
|
17122
|
+
{
|
|
17123
|
+
field: exports.EnumCampoTributo.Valor,
|
|
17124
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
17125
|
+
}
|
|
17126
|
+
],
|
|
15985
17127
|
_e),
|
|
15986
17128
|
Credit: (_f = {},
|
|
15987
17129
|
_f[exports.EnumTipoTributo.CBS] = [
|
|
@@ -16534,6 +17676,34 @@
|
|
|
16534
17676
|
rules: [this.taxAmountRequiredValidationRule]
|
|
16535
17677
|
}
|
|
16536
17678
|
],
|
|
17679
|
+
_g[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
17680
|
+
{
|
|
17681
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
17682
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
17683
|
+
},
|
|
17684
|
+
{
|
|
17685
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
17686
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
17687
|
+
},
|
|
17688
|
+
{
|
|
17689
|
+
field: exports.EnumCampoTributo.Valor,
|
|
17690
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
17691
|
+
}
|
|
17692
|
+
],
|
|
17693
|
+
_g[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
17694
|
+
{
|
|
17695
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
17696
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
17697
|
+
},
|
|
17698
|
+
{
|
|
17699
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
17700
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
17701
|
+
},
|
|
17702
|
+
{
|
|
17703
|
+
field: exports.EnumCampoTributo.Valor,
|
|
17704
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
17705
|
+
}
|
|
17706
|
+
],
|
|
16537
17707
|
_g),
|
|
16538
17708
|
Return: (_h = {},
|
|
16539
17709
|
_h[exports.EnumTipoTributo.CBS] = [
|
|
@@ -16784,26 +17954,54 @@
|
|
|
16784
17954
|
rules: []
|
|
16785
17955
|
}
|
|
16786
17956
|
],
|
|
16787
|
-
_h[exports.EnumTipoTributo.IS] = [
|
|
16788
|
-
{
|
|
16789
|
-
field: exports.EnumCampoTributo.BaseCalculo,
|
|
16790
|
-
rules: [this.taxableBaseRequiredValidationRule]
|
|
16791
|
-
},
|
|
17957
|
+
_h[exports.EnumTipoTributo.IS] = [
|
|
17958
|
+
{
|
|
17959
|
+
field: exports.EnumCampoTributo.BaseCalculo,
|
|
17960
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
17961
|
+
},
|
|
17962
|
+
{
|
|
17963
|
+
field: exports.EnumCampoTributo.Aliquota,
|
|
17964
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
17965
|
+
},
|
|
17966
|
+
{
|
|
17967
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
17968
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
17969
|
+
},
|
|
17970
|
+
{
|
|
17971
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
17972
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
17973
|
+
},
|
|
17974
|
+
{
|
|
17975
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
17976
|
+
rules: []
|
|
17977
|
+
},
|
|
17978
|
+
{
|
|
17979
|
+
field: exports.EnumCampoTributo.Valor,
|
|
17980
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
17981
|
+
}
|
|
17982
|
+
],
|
|
17983
|
+
_h[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
16792
17984
|
{
|
|
16793
|
-
field: exports.EnumCampoTributo.
|
|
16794
|
-
rules: [this.
|
|
17985
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
17986
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
16795
17987
|
},
|
|
16796
17988
|
{
|
|
16797
17989
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
16798
17990
|
rules: [this.taxClassificationRequiredValidationRule]
|
|
16799
17991
|
},
|
|
17992
|
+
{
|
|
17993
|
+
field: exports.EnumCampoTributo.Valor,
|
|
17994
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
17995
|
+
}
|
|
17996
|
+
],
|
|
17997
|
+
_h[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
16800
17998
|
{
|
|
16801
17999
|
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
16802
18000
|
rules: [this.taxSituationRequiredValidationRule]
|
|
16803
18001
|
},
|
|
16804
18002
|
{
|
|
16805
|
-
field: exports.EnumCampoTributo.
|
|
16806
|
-
rules: []
|
|
18003
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
18004
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
16807
18005
|
},
|
|
16808
18006
|
{
|
|
16809
18007
|
field: exports.EnumCampoTributo.Valor,
|
|
@@ -17086,6 +18284,34 @@
|
|
|
17086
18284
|
rules: [this.taxAmountRequiredValidationRule]
|
|
17087
18285
|
}
|
|
17088
18286
|
],
|
|
18287
|
+
_j[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
18288
|
+
{
|
|
18289
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
18290
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
18291
|
+
},
|
|
18292
|
+
{
|
|
18293
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
18294
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
18295
|
+
},
|
|
18296
|
+
{
|
|
18297
|
+
field: exports.EnumCampoTributo.Valor,
|
|
18298
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
18299
|
+
}
|
|
18300
|
+
],
|
|
18301
|
+
_j[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
18302
|
+
{
|
|
18303
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
18304
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
18305
|
+
},
|
|
18306
|
+
{
|
|
18307
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
18308
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
18309
|
+
},
|
|
18310
|
+
{
|
|
18311
|
+
field: exports.EnumCampoTributo.Valor,
|
|
18312
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
18313
|
+
}
|
|
18314
|
+
],
|
|
17089
18315
|
_j),
|
|
17090
18316
|
Standard: (_k = {},
|
|
17091
18317
|
_k[exports.EnumTipoTributo.CBS] = [
|
|
@@ -17362,6 +18588,34 @@
|
|
|
17362
18588
|
rules: [this.taxAmountRequiredValidationRule]
|
|
17363
18589
|
}
|
|
17364
18590
|
],
|
|
18591
|
+
_k[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
18592
|
+
{
|
|
18593
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
18594
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
18595
|
+
},
|
|
18596
|
+
{
|
|
18597
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
18598
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
18599
|
+
},
|
|
18600
|
+
{
|
|
18601
|
+
field: exports.EnumCampoTributo.Valor,
|
|
18602
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
18603
|
+
}
|
|
18604
|
+
],
|
|
18605
|
+
_k[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
18606
|
+
{
|
|
18607
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
18608
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
18609
|
+
},
|
|
18610
|
+
{
|
|
18611
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
18612
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
18613
|
+
},
|
|
18614
|
+
{
|
|
18615
|
+
field: exports.EnumCampoTributo.Valor,
|
|
18616
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
18617
|
+
}
|
|
18618
|
+
],
|
|
17365
18619
|
_k)
|
|
17366
18620
|
};
|
|
17367
18621
|
}
|
|
@@ -17745,6 +18999,34 @@
|
|
|
17745
18999
|
rules: [this.taxAmountRequiredValidationRule]
|
|
17746
19000
|
}
|
|
17747
19001
|
],
|
|
19002
|
+
_a[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
19003
|
+
{
|
|
19004
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
19005
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
19006
|
+
},
|
|
19007
|
+
{
|
|
19008
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
19009
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
19010
|
+
},
|
|
19011
|
+
{
|
|
19012
|
+
field: exports.EnumCampoTributo.Valor,
|
|
19013
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
19014
|
+
}
|
|
19015
|
+
],
|
|
19016
|
+
_a[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
19017
|
+
{
|
|
19018
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
19019
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
19020
|
+
},
|
|
19021
|
+
{
|
|
19022
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
19023
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
19024
|
+
},
|
|
19025
|
+
{
|
|
19026
|
+
field: exports.EnumCampoTributo.Valor,
|
|
19027
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
19028
|
+
}
|
|
19029
|
+
],
|
|
17748
19030
|
_a),
|
|
17749
19031
|
'Product Return': (_b = {},
|
|
17750
19032
|
_b[exports.EnumTipoTributo.CBS] = [
|
|
@@ -18021,6 +19303,34 @@
|
|
|
18021
19303
|
rules: [this.taxAmountRequiredValidationRule]
|
|
18022
19304
|
}
|
|
18023
19305
|
],
|
|
19306
|
+
_b[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
19307
|
+
{
|
|
19308
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
19309
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
19310
|
+
},
|
|
19311
|
+
{
|
|
19312
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
19313
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
19314
|
+
},
|
|
19315
|
+
{
|
|
19316
|
+
field: exports.EnumCampoTributo.Valor,
|
|
19317
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
19318
|
+
}
|
|
19319
|
+
],
|
|
19320
|
+
_b[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
19321
|
+
{
|
|
19322
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
19323
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
19324
|
+
},
|
|
19325
|
+
{
|
|
19326
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
19327
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
19328
|
+
},
|
|
19329
|
+
{
|
|
19330
|
+
field: exports.EnumCampoTributo.Valor,
|
|
19331
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
19332
|
+
}
|
|
19333
|
+
],
|
|
18024
19334
|
_b),
|
|
18025
19335
|
'Product Sale': (_c = {},
|
|
18026
19336
|
_c[exports.EnumTipoTributo.CBS] = [
|
|
@@ -18297,6 +19607,34 @@
|
|
|
18297
19607
|
rules: [this.taxAmountRequiredValidationRule]
|
|
18298
19608
|
}
|
|
18299
19609
|
],
|
|
19610
|
+
_c[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
19611
|
+
{
|
|
19612
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
19613
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
19614
|
+
},
|
|
19615
|
+
{
|
|
19616
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
19617
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
19618
|
+
},
|
|
19619
|
+
{
|
|
19620
|
+
field: exports.EnumCampoTributo.Valor,
|
|
19621
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
19622
|
+
}
|
|
19623
|
+
],
|
|
19624
|
+
_c[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
19625
|
+
{
|
|
19626
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
19627
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
19628
|
+
},
|
|
19629
|
+
{
|
|
19630
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
19631
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
19632
|
+
},
|
|
19633
|
+
{
|
|
19634
|
+
field: exports.EnumCampoTributo.Valor,
|
|
19635
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
19636
|
+
}
|
|
19637
|
+
],
|
|
18300
19638
|
_c),
|
|
18301
19639
|
'Service Cancellation': (_d = {},
|
|
18302
19640
|
_d[exports.EnumTipoTributo.CBS] = [
|
|
@@ -18573,6 +19911,34 @@
|
|
|
18573
19911
|
rules: [this.taxAmountRequiredValidationRule]
|
|
18574
19912
|
}
|
|
18575
19913
|
],
|
|
19914
|
+
_d[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
19915
|
+
{
|
|
19916
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
19917
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
19918
|
+
},
|
|
19919
|
+
{
|
|
19920
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
19921
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
19922
|
+
},
|
|
19923
|
+
{
|
|
19924
|
+
field: exports.EnumCampoTributo.Valor,
|
|
19925
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
19926
|
+
}
|
|
19927
|
+
],
|
|
19928
|
+
_d[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
19929
|
+
{
|
|
19930
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
19931
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
19932
|
+
},
|
|
19933
|
+
{
|
|
19934
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
19935
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
19936
|
+
},
|
|
19937
|
+
{
|
|
19938
|
+
field: exports.EnumCampoTributo.Valor,
|
|
19939
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
19940
|
+
}
|
|
19941
|
+
],
|
|
18576
19942
|
_d),
|
|
18577
19943
|
'Service Sale': (_e = {},
|
|
18578
19944
|
_e[exports.EnumTipoTributo.CBS] = [
|
|
@@ -18849,6 +20215,34 @@
|
|
|
18849
20215
|
rules: [this.taxAmountRequiredValidationRule]
|
|
18850
20216
|
}
|
|
18851
20217
|
],
|
|
20218
|
+
_e[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
20219
|
+
{
|
|
20220
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
20221
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
20222
|
+
},
|
|
20223
|
+
{
|
|
20224
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
20225
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
20226
|
+
},
|
|
20227
|
+
{
|
|
20228
|
+
field: exports.EnumCampoTributo.Valor,
|
|
20229
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
20230
|
+
}
|
|
20231
|
+
],
|
|
20232
|
+
_e[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
20233
|
+
{
|
|
20234
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
20235
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
20236
|
+
},
|
|
20237
|
+
{
|
|
20238
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
20239
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
20240
|
+
},
|
|
20241
|
+
{
|
|
20242
|
+
field: exports.EnumCampoTributo.Valor,
|
|
20243
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
20244
|
+
}
|
|
20245
|
+
],
|
|
18852
20246
|
_e),
|
|
18853
20247
|
Adjustment: (_f = {},
|
|
18854
20248
|
_f[exports.EnumTipoTributo.CBS] = [
|
|
@@ -19125,6 +20519,34 @@
|
|
|
19125
20519
|
rules: [this.taxAmountRequiredValidationRule]
|
|
19126
20520
|
}
|
|
19127
20521
|
],
|
|
20522
|
+
_f[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
20523
|
+
{
|
|
20524
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
20525
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
20526
|
+
},
|
|
20527
|
+
{
|
|
20528
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
20529
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
20530
|
+
},
|
|
20531
|
+
{
|
|
20532
|
+
field: exports.EnumCampoTributo.Valor,
|
|
20533
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
20534
|
+
}
|
|
20535
|
+
],
|
|
20536
|
+
_f[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
20537
|
+
{
|
|
20538
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
20539
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
20540
|
+
},
|
|
20541
|
+
{
|
|
20542
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
20543
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
20544
|
+
},
|
|
20545
|
+
{
|
|
20546
|
+
field: exports.EnumCampoTributo.Valor,
|
|
20547
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
20548
|
+
}
|
|
20549
|
+
],
|
|
19128
20550
|
_f),
|
|
19129
20551
|
Charge: (_g = {},
|
|
19130
20552
|
_g[exports.EnumTipoTributo.CBS] = [
|
|
@@ -19375,26 +20797,54 @@
|
|
|
19375
20797
|
rules: []
|
|
19376
20798
|
}
|
|
19377
20799
|
],
|
|
19378
|
-
_g[exports.EnumTipoTributo.IS] = [
|
|
19379
|
-
{
|
|
19380
|
-
field: exports.EnumCampoTributo.BaseCalculo,
|
|
19381
|
-
rules: [this.taxableBaseRequiredValidationRule]
|
|
19382
|
-
},
|
|
20800
|
+
_g[exports.EnumTipoTributo.IS] = [
|
|
20801
|
+
{
|
|
20802
|
+
field: exports.EnumCampoTributo.BaseCalculo,
|
|
20803
|
+
rules: [this.taxableBaseRequiredValidationRule]
|
|
20804
|
+
},
|
|
20805
|
+
{
|
|
20806
|
+
field: exports.EnumCampoTributo.Aliquota,
|
|
20807
|
+
rules: [this.taxRateRequiredValidationRule]
|
|
20808
|
+
},
|
|
20809
|
+
{
|
|
20810
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
20811
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
20812
|
+
},
|
|
20813
|
+
{
|
|
20814
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
20815
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
20816
|
+
},
|
|
20817
|
+
{
|
|
20818
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
20819
|
+
rules: []
|
|
20820
|
+
},
|
|
20821
|
+
{
|
|
20822
|
+
field: exports.EnumCampoTributo.Valor,
|
|
20823
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
20824
|
+
}
|
|
20825
|
+
],
|
|
20826
|
+
_g[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
19383
20827
|
{
|
|
19384
|
-
field: exports.EnumCampoTributo.
|
|
19385
|
-
rules: [this.
|
|
20828
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
20829
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
19386
20830
|
},
|
|
19387
20831
|
{
|
|
19388
20832
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
19389
20833
|
rules: [this.taxClassificationRequiredValidationRule]
|
|
19390
20834
|
},
|
|
20835
|
+
{
|
|
20836
|
+
field: exports.EnumCampoTributo.Valor,
|
|
20837
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
20838
|
+
}
|
|
20839
|
+
],
|
|
20840
|
+
_g[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
19391
20841
|
{
|
|
19392
20842
|
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
19393
20843
|
rules: [this.taxSituationRequiredValidationRule]
|
|
19394
20844
|
},
|
|
19395
20845
|
{
|
|
19396
|
-
field: exports.EnumCampoTributo.
|
|
19397
|
-
rules: []
|
|
20846
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
20847
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
19398
20848
|
},
|
|
19399
20849
|
{
|
|
19400
20850
|
field: exports.EnumCampoTributo.Valor,
|
|
@@ -19677,6 +21127,34 @@
|
|
|
19677
21127
|
rules: [this.taxAmountRequiredValidationRule]
|
|
19678
21128
|
}
|
|
19679
21129
|
],
|
|
21130
|
+
_h[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
21131
|
+
{
|
|
21132
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
21133
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
21134
|
+
},
|
|
21135
|
+
{
|
|
21136
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
21137
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
21138
|
+
},
|
|
21139
|
+
{
|
|
21140
|
+
field: exports.EnumCampoTributo.Valor,
|
|
21141
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
21142
|
+
}
|
|
21143
|
+
],
|
|
21144
|
+
_h[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
21145
|
+
{
|
|
21146
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
21147
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
21148
|
+
},
|
|
21149
|
+
{
|
|
21150
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
21151
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
21152
|
+
},
|
|
21153
|
+
{
|
|
21154
|
+
field: exports.EnumCampoTributo.Valor,
|
|
21155
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
21156
|
+
}
|
|
21157
|
+
],
|
|
19680
21158
|
_h),
|
|
19681
21159
|
Credit: (_j = {},
|
|
19682
21160
|
_j[exports.EnumTipoTributo.CBS] = [
|
|
@@ -19953,6 +21431,34 @@
|
|
|
19953
21431
|
rules: [this.taxAmountRequiredValidationRule]
|
|
19954
21432
|
}
|
|
19955
21433
|
],
|
|
21434
|
+
_j[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
21435
|
+
{
|
|
21436
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
21437
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
21438
|
+
},
|
|
21439
|
+
{
|
|
21440
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
21441
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
21442
|
+
},
|
|
21443
|
+
{
|
|
21444
|
+
field: exports.EnumCampoTributo.Valor,
|
|
21445
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
21446
|
+
}
|
|
21447
|
+
],
|
|
21448
|
+
_j[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
21449
|
+
{
|
|
21450
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
21451
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
21452
|
+
},
|
|
21453
|
+
{
|
|
21454
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
21455
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
21456
|
+
},
|
|
21457
|
+
{
|
|
21458
|
+
field: exports.EnumCampoTributo.Valor,
|
|
21459
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
21460
|
+
}
|
|
21461
|
+
],
|
|
19956
21462
|
_j),
|
|
19957
21463
|
Debit: (_k = {},
|
|
19958
21464
|
_k[exports.EnumTipoTributo.CBS] = [
|
|
@@ -20569,6 +22075,34 @@
|
|
|
20569
22075
|
rules: [this.taxAmountRequiredValidationRule]
|
|
20570
22076
|
}
|
|
20571
22077
|
],
|
|
22078
|
+
_l[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
22079
|
+
{
|
|
22080
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
22081
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
22082
|
+
},
|
|
22083
|
+
{
|
|
22084
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
22085
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
22086
|
+
},
|
|
22087
|
+
{
|
|
22088
|
+
field: exports.EnumCampoTributo.Valor,
|
|
22089
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
22090
|
+
}
|
|
22091
|
+
],
|
|
22092
|
+
_l[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
22093
|
+
{
|
|
22094
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
22095
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
22096
|
+
},
|
|
22097
|
+
{
|
|
22098
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
22099
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
22100
|
+
},
|
|
22101
|
+
{
|
|
22102
|
+
field: exports.EnumCampoTributo.Valor,
|
|
22103
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
22104
|
+
}
|
|
22105
|
+
],
|
|
20572
22106
|
_l),
|
|
20573
22107
|
Other: (_m = {},
|
|
20574
22108
|
_m[exports.EnumTipoTributo.CBS] = [
|
|
@@ -20845,6 +22379,34 @@
|
|
|
20845
22379
|
rules: [this.taxAmountRequiredValidationRule]
|
|
20846
22380
|
}
|
|
20847
22381
|
],
|
|
22382
|
+
_m[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
22383
|
+
{
|
|
22384
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
22385
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
22386
|
+
},
|
|
22387
|
+
{
|
|
22388
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
22389
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
22390
|
+
},
|
|
22391
|
+
{
|
|
22392
|
+
field: exports.EnumCampoTributo.Valor,
|
|
22393
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
22394
|
+
}
|
|
22395
|
+
],
|
|
22396
|
+
_m[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
22397
|
+
{
|
|
22398
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
22399
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
22400
|
+
},
|
|
22401
|
+
{
|
|
22402
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
22403
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
22404
|
+
},
|
|
22405
|
+
{
|
|
22406
|
+
field: exports.EnumCampoTributo.Valor,
|
|
22407
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
22408
|
+
}
|
|
22409
|
+
],
|
|
20848
22410
|
_m),
|
|
20849
22411
|
Return: (_o = {},
|
|
20850
22412
|
_o[exports.EnumTipoTributo.CBS] = [
|
|
@@ -21121,6 +22683,34 @@
|
|
|
21121
22683
|
rules: [this.taxAmountRequiredValidationRule]
|
|
21122
22684
|
}
|
|
21123
22685
|
],
|
|
22686
|
+
_o[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
22687
|
+
{
|
|
22688
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
22689
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
22690
|
+
},
|
|
22691
|
+
{
|
|
22692
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
22693
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
22694
|
+
},
|
|
22695
|
+
{
|
|
22696
|
+
field: exports.EnumCampoTributo.Valor,
|
|
22697
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
22698
|
+
}
|
|
22699
|
+
],
|
|
22700
|
+
_o[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
22701
|
+
{
|
|
22702
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
22703
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
22704
|
+
},
|
|
22705
|
+
{
|
|
22706
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
22707
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
22708
|
+
},
|
|
22709
|
+
{
|
|
22710
|
+
field: exports.EnumCampoTributo.Valor,
|
|
22711
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
22712
|
+
}
|
|
22713
|
+
],
|
|
21124
22714
|
_o),
|
|
21125
22715
|
Reversal: (_p = {},
|
|
21126
22716
|
_p[exports.EnumTipoTributo.CBS] = [
|
|
@@ -21397,6 +22987,34 @@
|
|
|
21397
22987
|
rules: [this.taxAmountRequiredValidationRule]
|
|
21398
22988
|
}
|
|
21399
22989
|
],
|
|
22990
|
+
_p[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
22991
|
+
{
|
|
22992
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
22993
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
22994
|
+
},
|
|
22995
|
+
{
|
|
22996
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
22997
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
22998
|
+
},
|
|
22999
|
+
{
|
|
23000
|
+
field: exports.EnumCampoTributo.Valor,
|
|
23001
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
23002
|
+
}
|
|
23003
|
+
],
|
|
23004
|
+
_p[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
23005
|
+
{
|
|
23006
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
23007
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
23008
|
+
},
|
|
23009
|
+
{
|
|
23010
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
23011
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
23012
|
+
},
|
|
23013
|
+
{
|
|
23014
|
+
field: exports.EnumCampoTributo.Valor,
|
|
23015
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
23016
|
+
}
|
|
23017
|
+
],
|
|
21400
23018
|
_p),
|
|
21401
23019
|
Shipment: (_q = {},
|
|
21402
23020
|
_q[exports.EnumTipoTributo.CBS] = [
|
|
@@ -21673,6 +23291,34 @@
|
|
|
21673
23291
|
rules: [this.taxAmountRequiredValidationRule]
|
|
21674
23292
|
}
|
|
21675
23293
|
],
|
|
23294
|
+
_q[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
23295
|
+
{
|
|
23296
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
23297
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
23298
|
+
},
|
|
23299
|
+
{
|
|
23300
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
23301
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
23302
|
+
},
|
|
23303
|
+
{
|
|
23304
|
+
field: exports.EnumCampoTributo.Valor,
|
|
23305
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
23306
|
+
}
|
|
23307
|
+
],
|
|
23308
|
+
_q[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
23309
|
+
{
|
|
23310
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
23311
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
23312
|
+
},
|
|
23313
|
+
{
|
|
23314
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
23315
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
23316
|
+
},
|
|
23317
|
+
{
|
|
23318
|
+
field: exports.EnumCampoTributo.Valor,
|
|
23319
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
23320
|
+
}
|
|
23321
|
+
],
|
|
21676
23322
|
_q),
|
|
21677
23323
|
Substitute: (_r = {},
|
|
21678
23324
|
_r[exports.EnumTipoTributo.CBS] = [
|
|
@@ -21949,6 +23595,34 @@
|
|
|
21949
23595
|
rules: [this.taxAmountRequiredValidationRule]
|
|
21950
23596
|
}
|
|
21951
23597
|
],
|
|
23598
|
+
_r[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
23599
|
+
{
|
|
23600
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
23601
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
23602
|
+
},
|
|
23603
|
+
{
|
|
23604
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
23605
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
23606
|
+
},
|
|
23607
|
+
{
|
|
23608
|
+
field: exports.EnumCampoTributo.Valor,
|
|
23609
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
23610
|
+
}
|
|
23611
|
+
],
|
|
23612
|
+
_r[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
23613
|
+
{
|
|
23614
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
23615
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
23616
|
+
},
|
|
23617
|
+
{
|
|
23618
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
23619
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
23620
|
+
},
|
|
23621
|
+
{
|
|
23622
|
+
field: exports.EnumCampoTributo.Valor,
|
|
23623
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
23624
|
+
}
|
|
23625
|
+
],
|
|
21952
23626
|
_r),
|
|
21953
23627
|
Transfer: (_s = {},
|
|
21954
23628
|
_s[exports.EnumTipoTributo.CBS] = [
|
|
@@ -22225,6 +23899,34 @@
|
|
|
22225
23899
|
rules: [this.taxAmountRequiredValidationRule]
|
|
22226
23900
|
}
|
|
22227
23901
|
],
|
|
23902
|
+
_s[exports.EnumTipoTributo.CBS_ESTORNO_CREDITO] = [
|
|
23903
|
+
{
|
|
23904
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
23905
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
23906
|
+
},
|
|
23907
|
+
{
|
|
23908
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
23909
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
23910
|
+
},
|
|
23911
|
+
{
|
|
23912
|
+
field: exports.EnumCampoTributo.Valor,
|
|
23913
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
23914
|
+
}
|
|
23915
|
+
],
|
|
23916
|
+
_s[exports.EnumTipoTributo.IBS_ESTORNO_CREDITO] = [
|
|
23917
|
+
{
|
|
23918
|
+
field: exports.EnumCampoTributo.SituacaoTributaria,
|
|
23919
|
+
rules: [this.taxSituationRequiredValidationRule]
|
|
23920
|
+
},
|
|
23921
|
+
{
|
|
23922
|
+
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
23923
|
+
rules: [this.taxClassificationRequiredValidationRule]
|
|
23924
|
+
},
|
|
23925
|
+
{
|
|
23926
|
+
field: exports.EnumCampoTributo.Valor,
|
|
23927
|
+
rules: [this.taxAmountRequiredValidationRule]
|
|
23928
|
+
}
|
|
23929
|
+
],
|
|
22228
23930
|
_s)
|
|
22229
23931
|
};
|
|
22230
23932
|
}
|
|
@@ -24921,9 +26623,14 @@
|
|
|
24921
26623
|
});
|
|
24922
26624
|
_this.changeDetector.detectChanges();
|
|
24923
26625
|
},
|
|
24924
|
-
visible: this.context.document === 'Outgoing Invoice' &&
|
|
24925
|
-
this.context.invoice.type
|
|
24926
|
-
this.context.
|
|
26626
|
+
visible: (this.context.document === 'Outgoing Invoice' &&
|
|
26627
|
+
this.context.invoice.type !== 'Debit') ||
|
|
26628
|
+
(this.context.document === 'Outgoing Invoice' &&
|
|
26629
|
+
this.context.invoice.type === 'Debit' &&
|
|
26630
|
+
this.context.invoice.debitInvoiceType ===
|
|
26631
|
+
'Inventory Loss') ||
|
|
26632
|
+
(this.context.document === 'Incoming Invoice' &&
|
|
26633
|
+
this.context.invoice.type !== 'Credit')
|
|
24927
26634
|
}, {
|
|
24928
26635
|
label: this.translate.instant('erpx.tributos.actions_cbs_ibs_ajuste_label'),
|
|
24929
26636
|
disabled: this.menuItemCBS_IBS_Ajuste,
|
|
@@ -31117,11 +32824,11 @@
|
|
|
31117
32824
|
exports.ɵbc = TaxAmountCalculationRule;
|
|
31118
32825
|
exports.ɵbd = GrossAmountCalculationRule;
|
|
31119
32826
|
exports.ɵbe = GrossAmountCalculator;
|
|
31120
|
-
exports.ɵbf =
|
|
31121
|
-
exports.ɵbg =
|
|
31122
|
-
exports.ɵbh =
|
|
31123
|
-
exports.ɵbi =
|
|
31124
|
-
exports.ɵbj =
|
|
32827
|
+
exports.ɵbf = TaxSituationCalculationRule;
|
|
32828
|
+
exports.ɵbg = TaxClassificationCalculationRule;
|
|
32829
|
+
exports.ɵbh = TaxCalculationTypeCalculationRule;
|
|
32830
|
+
exports.ɵbi = ManualTaxCalculationRule;
|
|
32831
|
+
exports.ɵbj = OutgoingInvoiceCalculationRulesRegistry;
|
|
31125
32832
|
exports.ɵbk = AssessmentPeriodCalculationRule;
|
|
31126
32833
|
exports.ɵbl = SaleOrderCalculationRulesRegistry;
|
|
31127
32834
|
exports.ɵbm = PurchaseOrderCalculationRulesRegistry;
|