@senior-gestao-empresarial/erpx-components 4.14.0 → 4.16.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 +281 -60
- 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/esm2015/components/tributos/rules/status/registries/incoming-invoice-status-rules.registry.js +81 -1
- package/esm2015/components/tributos/rules/status/registries/outgoing-invoice-status-rules.registry.js +137 -1
- package/esm2015/components/tributos/rules/status/rules/apply-net-value-to-document-status-rule.js +10 -7
- package/esm2015/components/tributos/rules/validation/registries/incoming-invoice-validation-rules.registry.js +21 -21
- package/esm2015/components/tributos/rules/validation/registries/outgoing-invoice-validation-rules.registry.js +35 -35
- package/esm2015/components/tributos/rules/validation/rules/required/apply-net-value-to-document-required-validation-rule.js +3 -1
- package/esm5/components/tributos/rules/status/registries/incoming-invoice-status-rules.registry.js +81 -1
- package/esm5/components/tributos/rules/status/registries/outgoing-invoice-status-rules.registry.js +137 -1
- package/esm5/components/tributos/rules/status/rules/apply-net-value-to-document-status-rule.js +10 -7
- package/esm5/components/tributos/rules/validation/registries/incoming-invoice-validation-rules.registry.js +21 -21
- package/esm5/components/tributos/rules/validation/registries/outgoing-invoice-validation-rules.registry.js +35 -35
- package/esm5/components/tributos/rules/validation/rules/required/apply-net-value-to-document-required-validation-rule.js +3 -1
- package/fesm2015/senior-gestao-empresarial-erpx-components.js +281 -60
- package/fesm2015/senior-gestao-empresarial-erpx-components.js.map +1 -1
- package/fesm5/senior-gestao-empresarial-erpx-components.js +281 -60
- package/fesm5/senior-gestao-empresarial-erpx-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -11285,16 +11285,19 @@
|
|
|
11285
11285
|
switch (taxType) {
|
|
11286
11286
|
case exports.EnumTipoTributo.CBS:
|
|
11287
11287
|
case exports.EnumTipoTributo.CBS_CREDITO_PRESUMIDO:
|
|
11288
|
+
case exports.EnumTipoTributo.IBS_ESTADUAL:
|
|
11289
|
+
case exports.EnumTipoTributo.IBS_MUNICIPAL:
|
|
11288
11290
|
{
|
|
11289
11291
|
switch (document) {
|
|
11290
11292
|
case 'Incoming Invoice':
|
|
11291
11293
|
case 'Outgoing Invoice':
|
|
11292
|
-
|
|
11293
|
-
|
|
11294
|
-
|
|
11295
|
-
|
|
11296
|
-
|
|
11297
|
-
|
|
11294
|
+
{
|
|
11295
|
+
formGroup
|
|
11296
|
+
.get(exports.EnumCampoTributo.AplicarValorLiquidoDocumento)
|
|
11297
|
+
.enable({
|
|
11298
|
+
emitEvent: false
|
|
11299
|
+
});
|
|
11300
|
+
}
|
|
11298
11301
|
break;
|
|
11299
11302
|
default:
|
|
11300
11303
|
throw new Error("Regra ApplyNetValueToDocumentStatusRule n\u00E3o implementada para o imposto " + taxType + ", documento " + document + ".");
|
|
@@ -11444,6 +11447,10 @@
|
|
|
11444
11447
|
{
|
|
11445
11448
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11446
11449
|
rule: this.taxClassificationStatusRule
|
|
11450
|
+
},
|
|
11451
|
+
{
|
|
11452
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
11453
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
11447
11454
|
}
|
|
11448
11455
|
],
|
|
11449
11456
|
_a[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -11456,6 +11463,10 @@
|
|
|
11456
11463
|
{
|
|
11457
11464
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11458
11465
|
rule: this.taxClassificationStatusRule
|
|
11466
|
+
},
|
|
11467
|
+
{
|
|
11468
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
11469
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
11459
11470
|
}
|
|
11460
11471
|
],
|
|
11461
11472
|
_a[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -11511,6 +11522,10 @@
|
|
|
11511
11522
|
{
|
|
11512
11523
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11513
11524
|
rule: this.taxClassificationStatusRule
|
|
11525
|
+
},
|
|
11526
|
+
{
|
|
11527
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
11528
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
11514
11529
|
}
|
|
11515
11530
|
],
|
|
11516
11531
|
_b[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -11523,6 +11538,10 @@
|
|
|
11523
11538
|
{
|
|
11524
11539
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11525
11540
|
rule: this.taxClassificationStatusRule
|
|
11541
|
+
},
|
|
11542
|
+
{
|
|
11543
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
11544
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
11526
11545
|
}
|
|
11527
11546
|
],
|
|
11528
11547
|
_b[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -11578,6 +11597,10 @@
|
|
|
11578
11597
|
{
|
|
11579
11598
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11580
11599
|
rule: this.taxClassificationStatusRule
|
|
11600
|
+
},
|
|
11601
|
+
{
|
|
11602
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
11603
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
11581
11604
|
}
|
|
11582
11605
|
],
|
|
11583
11606
|
_c[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -11590,6 +11613,10 @@
|
|
|
11590
11613
|
{
|
|
11591
11614
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11592
11615
|
rule: this.taxClassificationStatusRule
|
|
11616
|
+
},
|
|
11617
|
+
{
|
|
11618
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
11619
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
11593
11620
|
}
|
|
11594
11621
|
],
|
|
11595
11622
|
_c[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -11645,6 +11672,10 @@
|
|
|
11645
11672
|
{
|
|
11646
11673
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11647
11674
|
rule: this.taxClassificationStatusRule
|
|
11675
|
+
},
|
|
11676
|
+
{
|
|
11677
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
11678
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
11648
11679
|
}
|
|
11649
11680
|
],
|
|
11650
11681
|
_d[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -11657,6 +11688,10 @@
|
|
|
11657
11688
|
{
|
|
11658
11689
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11659
11690
|
rule: this.taxClassificationStatusRule
|
|
11691
|
+
},
|
|
11692
|
+
{
|
|
11693
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
11694
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
11660
11695
|
}
|
|
11661
11696
|
],
|
|
11662
11697
|
_d[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -11712,6 +11747,10 @@
|
|
|
11712
11747
|
{
|
|
11713
11748
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11714
11749
|
rule: this.taxClassificationStatusRule
|
|
11750
|
+
},
|
|
11751
|
+
{
|
|
11752
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
11753
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
11715
11754
|
}
|
|
11716
11755
|
],
|
|
11717
11756
|
_e[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -11724,6 +11763,10 @@
|
|
|
11724
11763
|
{
|
|
11725
11764
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11726
11765
|
rule: this.taxClassificationStatusRule
|
|
11766
|
+
},
|
|
11767
|
+
{
|
|
11768
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
11769
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
11727
11770
|
}
|
|
11728
11771
|
],
|
|
11729
11772
|
_e[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -11779,6 +11822,10 @@
|
|
|
11779
11822
|
{
|
|
11780
11823
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11781
11824
|
rule: this.taxClassificationStatusRule
|
|
11825
|
+
},
|
|
11826
|
+
{
|
|
11827
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
11828
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
11782
11829
|
}
|
|
11783
11830
|
],
|
|
11784
11831
|
_f[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -11791,6 +11838,10 @@
|
|
|
11791
11838
|
{
|
|
11792
11839
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11793
11840
|
rule: this.taxClassificationStatusRule
|
|
11841
|
+
},
|
|
11842
|
+
{
|
|
11843
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
11844
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
11794
11845
|
}
|
|
11795
11846
|
],
|
|
11796
11847
|
_f[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -11834,6 +11885,10 @@
|
|
|
11834
11885
|
{
|
|
11835
11886
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11836
11887
|
rule: this.taxClassificationStatusRule
|
|
11888
|
+
},
|
|
11889
|
+
{
|
|
11890
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
11891
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
11837
11892
|
}
|
|
11838
11893
|
],
|
|
11839
11894
|
_g[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -11846,6 +11901,10 @@
|
|
|
11846
11901
|
{
|
|
11847
11902
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11848
11903
|
rule: this.taxClassificationStatusRule
|
|
11904
|
+
},
|
|
11905
|
+
{
|
|
11906
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
11907
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
11849
11908
|
}
|
|
11850
11909
|
],
|
|
11851
11910
|
_g[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -11901,6 +11960,10 @@
|
|
|
11901
11960
|
{
|
|
11902
11961
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11903
11962
|
rule: this.taxClassificationStatusRule
|
|
11963
|
+
},
|
|
11964
|
+
{
|
|
11965
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
11966
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
11904
11967
|
}
|
|
11905
11968
|
],
|
|
11906
11969
|
_h[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -11913,6 +11976,10 @@
|
|
|
11913
11976
|
{
|
|
11914
11977
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11915
11978
|
rule: this.taxClassificationStatusRule
|
|
11979
|
+
},
|
|
11980
|
+
{
|
|
11981
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
11982
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
11916
11983
|
}
|
|
11917
11984
|
],
|
|
11918
11985
|
_h[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -11968,6 +12035,10 @@
|
|
|
11968
12035
|
{
|
|
11969
12036
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11970
12037
|
rule: this.taxClassificationStatusRule
|
|
12038
|
+
},
|
|
12039
|
+
{
|
|
12040
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12041
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
11971
12042
|
}
|
|
11972
12043
|
],
|
|
11973
12044
|
_j[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -11980,6 +12051,10 @@
|
|
|
11980
12051
|
{
|
|
11981
12052
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
11982
12053
|
rule: this.taxClassificationStatusRule
|
|
12054
|
+
},
|
|
12055
|
+
{
|
|
12056
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12057
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
11983
12058
|
}
|
|
11984
12059
|
],
|
|
11985
12060
|
_j[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12035,6 +12110,10 @@
|
|
|
12035
12110
|
{
|
|
12036
12111
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12037
12112
|
rule: this.taxClassificationStatusRule
|
|
12113
|
+
},
|
|
12114
|
+
{
|
|
12115
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12116
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12038
12117
|
}
|
|
12039
12118
|
],
|
|
12040
12119
|
_k[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12047,6 +12126,10 @@
|
|
|
12047
12126
|
{
|
|
12048
12127
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12049
12128
|
rule: this.taxClassificationStatusRule
|
|
12129
|
+
},
|
|
12130
|
+
{
|
|
12131
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12132
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12050
12133
|
}
|
|
12051
12134
|
],
|
|
12052
12135
|
_k[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12125,6 +12208,10 @@
|
|
|
12125
12208
|
{
|
|
12126
12209
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12127
12210
|
rule: this.taxClassificationStatusRule
|
|
12211
|
+
},
|
|
12212
|
+
{
|
|
12213
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12214
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12128
12215
|
}
|
|
12129
12216
|
],
|
|
12130
12217
|
_a[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12137,6 +12224,10 @@
|
|
|
12137
12224
|
{
|
|
12138
12225
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12139
12226
|
rule: this.taxClassificationStatusRule
|
|
12227
|
+
},
|
|
12228
|
+
{
|
|
12229
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12230
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12140
12231
|
}
|
|
12141
12232
|
],
|
|
12142
12233
|
_a[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12192,6 +12283,10 @@
|
|
|
12192
12283
|
{
|
|
12193
12284
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12194
12285
|
rule: this.taxClassificationStatusRule
|
|
12286
|
+
},
|
|
12287
|
+
{
|
|
12288
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12289
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12195
12290
|
}
|
|
12196
12291
|
],
|
|
12197
12292
|
_b[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12204,6 +12299,10 @@
|
|
|
12204
12299
|
{
|
|
12205
12300
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12206
12301
|
rule: this.taxClassificationStatusRule
|
|
12302
|
+
},
|
|
12303
|
+
{
|
|
12304
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12305
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12207
12306
|
}
|
|
12208
12307
|
],
|
|
12209
12308
|
_b[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12259,6 +12358,10 @@
|
|
|
12259
12358
|
{
|
|
12260
12359
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12261
12360
|
rule: this.taxClassificationStatusRule
|
|
12361
|
+
},
|
|
12362
|
+
{
|
|
12363
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12364
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12262
12365
|
}
|
|
12263
12366
|
],
|
|
12264
12367
|
_c[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12271,6 +12374,10 @@
|
|
|
12271
12374
|
{
|
|
12272
12375
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12273
12376
|
rule: this.taxClassificationStatusRule
|
|
12377
|
+
},
|
|
12378
|
+
{
|
|
12379
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12380
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12274
12381
|
}
|
|
12275
12382
|
],
|
|
12276
12383
|
_c[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12326,6 +12433,10 @@
|
|
|
12326
12433
|
{
|
|
12327
12434
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12328
12435
|
rule: this.taxClassificationStatusRule
|
|
12436
|
+
},
|
|
12437
|
+
{
|
|
12438
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12439
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12329
12440
|
}
|
|
12330
12441
|
],
|
|
12331
12442
|
_d[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12338,6 +12449,10 @@
|
|
|
12338
12449
|
{
|
|
12339
12450
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12340
12451
|
rule: this.taxClassificationStatusRule
|
|
12452
|
+
},
|
|
12453
|
+
{
|
|
12454
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12455
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12341
12456
|
}
|
|
12342
12457
|
],
|
|
12343
12458
|
_d[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12393,6 +12508,10 @@
|
|
|
12393
12508
|
{
|
|
12394
12509
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12395
12510
|
rule: this.taxClassificationStatusRule
|
|
12511
|
+
},
|
|
12512
|
+
{
|
|
12513
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12514
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12396
12515
|
}
|
|
12397
12516
|
],
|
|
12398
12517
|
_e[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12405,6 +12524,10 @@
|
|
|
12405
12524
|
{
|
|
12406
12525
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12407
12526
|
rule: this.taxClassificationStatusRule
|
|
12527
|
+
},
|
|
12528
|
+
{
|
|
12529
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12530
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12408
12531
|
}
|
|
12409
12532
|
],
|
|
12410
12533
|
_e[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12460,6 +12583,10 @@
|
|
|
12460
12583
|
{
|
|
12461
12584
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12462
12585
|
rule: this.taxClassificationStatusRule
|
|
12586
|
+
},
|
|
12587
|
+
{
|
|
12588
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12589
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12463
12590
|
}
|
|
12464
12591
|
],
|
|
12465
12592
|
_f[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12472,6 +12599,10 @@
|
|
|
12472
12599
|
{
|
|
12473
12600
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12474
12601
|
rule: this.taxClassificationStatusRule
|
|
12602
|
+
},
|
|
12603
|
+
{
|
|
12604
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12605
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12475
12606
|
}
|
|
12476
12607
|
],
|
|
12477
12608
|
_f[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12527,6 +12658,10 @@
|
|
|
12527
12658
|
{
|
|
12528
12659
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12529
12660
|
rule: this.taxClassificationStatusRule
|
|
12661
|
+
},
|
|
12662
|
+
{
|
|
12663
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12664
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12530
12665
|
}
|
|
12531
12666
|
],
|
|
12532
12667
|
_g[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12539,6 +12674,10 @@
|
|
|
12539
12674
|
{
|
|
12540
12675
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12541
12676
|
rule: this.taxClassificationStatusRule
|
|
12677
|
+
},
|
|
12678
|
+
{
|
|
12679
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12680
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12542
12681
|
}
|
|
12543
12682
|
],
|
|
12544
12683
|
_g[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12594,6 +12733,10 @@
|
|
|
12594
12733
|
{
|
|
12595
12734
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12596
12735
|
rule: this.taxClassificationStatusRule
|
|
12736
|
+
},
|
|
12737
|
+
{
|
|
12738
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12739
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12597
12740
|
}
|
|
12598
12741
|
],
|
|
12599
12742
|
_h[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12606,6 +12749,10 @@
|
|
|
12606
12749
|
{
|
|
12607
12750
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12608
12751
|
rule: this.taxClassificationStatusRule
|
|
12752
|
+
},
|
|
12753
|
+
{
|
|
12754
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12755
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12609
12756
|
}
|
|
12610
12757
|
],
|
|
12611
12758
|
_h[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12661,6 +12808,10 @@
|
|
|
12661
12808
|
{
|
|
12662
12809
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12663
12810
|
rule: this.taxClassificationStatusRule
|
|
12811
|
+
},
|
|
12812
|
+
{
|
|
12813
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12814
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12664
12815
|
}
|
|
12665
12816
|
],
|
|
12666
12817
|
_j[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12673,6 +12824,10 @@
|
|
|
12673
12824
|
{
|
|
12674
12825
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12675
12826
|
rule: this.taxClassificationStatusRule
|
|
12827
|
+
},
|
|
12828
|
+
{
|
|
12829
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12830
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12676
12831
|
}
|
|
12677
12832
|
],
|
|
12678
12833
|
_j[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12728,6 +12883,10 @@
|
|
|
12728
12883
|
{
|
|
12729
12884
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12730
12885
|
rule: this.taxClassificationStatusRule
|
|
12886
|
+
},
|
|
12887
|
+
{
|
|
12888
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12889
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12731
12890
|
}
|
|
12732
12891
|
],
|
|
12733
12892
|
_k[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12740,6 +12899,10 @@
|
|
|
12740
12899
|
{
|
|
12741
12900
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12742
12901
|
rule: this.taxClassificationStatusRule
|
|
12902
|
+
},
|
|
12903
|
+
{
|
|
12904
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12905
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12743
12906
|
}
|
|
12744
12907
|
],
|
|
12745
12908
|
_k[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12807,6 +12970,10 @@
|
|
|
12807
12970
|
{
|
|
12808
12971
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12809
12972
|
rule: this.taxClassificationStatusRule
|
|
12973
|
+
},
|
|
12974
|
+
{
|
|
12975
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12976
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12810
12977
|
}
|
|
12811
12978
|
],
|
|
12812
12979
|
_l[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12819,6 +12986,10 @@
|
|
|
12819
12986
|
{
|
|
12820
12987
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12821
12988
|
rule: this.taxClassificationStatusRule
|
|
12989
|
+
},
|
|
12990
|
+
{
|
|
12991
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
12992
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12822
12993
|
}
|
|
12823
12994
|
],
|
|
12824
12995
|
_l[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12874,6 +13045,10 @@
|
|
|
12874
13045
|
{
|
|
12875
13046
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12876
13047
|
rule: this.taxClassificationStatusRule
|
|
13048
|
+
},
|
|
13049
|
+
{
|
|
13050
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
13051
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12877
13052
|
}
|
|
12878
13053
|
],
|
|
12879
13054
|
_m[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12886,6 +13061,10 @@
|
|
|
12886
13061
|
{
|
|
12887
13062
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12888
13063
|
rule: this.taxClassificationStatusRule
|
|
13064
|
+
},
|
|
13065
|
+
{
|
|
13066
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
13067
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12889
13068
|
}
|
|
12890
13069
|
],
|
|
12891
13070
|
_m[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12941,6 +13120,10 @@
|
|
|
12941
13120
|
{
|
|
12942
13121
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12943
13122
|
rule: this.taxClassificationStatusRule
|
|
13123
|
+
},
|
|
13124
|
+
{
|
|
13125
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
13126
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12944
13127
|
}
|
|
12945
13128
|
],
|
|
12946
13129
|
_o[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -12953,6 +13136,10 @@
|
|
|
12953
13136
|
{
|
|
12954
13137
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
12955
13138
|
rule: this.taxClassificationStatusRule
|
|
13139
|
+
},
|
|
13140
|
+
{
|
|
13141
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
13142
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
12956
13143
|
}
|
|
12957
13144
|
],
|
|
12958
13145
|
_o[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -13008,6 +13195,10 @@
|
|
|
13008
13195
|
{
|
|
13009
13196
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
13010
13197
|
rule: this.taxClassificationStatusRule
|
|
13198
|
+
},
|
|
13199
|
+
{
|
|
13200
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
13201
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
13011
13202
|
}
|
|
13012
13203
|
],
|
|
13013
13204
|
_p[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -13020,6 +13211,10 @@
|
|
|
13020
13211
|
{
|
|
13021
13212
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
13022
13213
|
rule: this.taxClassificationStatusRule
|
|
13214
|
+
},
|
|
13215
|
+
{
|
|
13216
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
13217
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
13023
13218
|
}
|
|
13024
13219
|
],
|
|
13025
13220
|
_p[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -13075,6 +13270,10 @@
|
|
|
13075
13270
|
{
|
|
13076
13271
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
13077
13272
|
rule: this.taxClassificationStatusRule
|
|
13273
|
+
},
|
|
13274
|
+
{
|
|
13275
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
13276
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
13078
13277
|
}
|
|
13079
13278
|
],
|
|
13080
13279
|
_q[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -13087,6 +13286,10 @@
|
|
|
13087
13286
|
{
|
|
13088
13287
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
13089
13288
|
rule: this.taxClassificationStatusRule
|
|
13289
|
+
},
|
|
13290
|
+
{
|
|
13291
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
13292
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
13090
13293
|
}
|
|
13091
13294
|
],
|
|
13092
13295
|
_q[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -13142,6 +13345,10 @@
|
|
|
13142
13345
|
{
|
|
13143
13346
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
13144
13347
|
rule: this.taxClassificationStatusRule
|
|
13348
|
+
},
|
|
13349
|
+
{
|
|
13350
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
13351
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
13145
13352
|
}
|
|
13146
13353
|
],
|
|
13147
13354
|
_r[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -13154,6 +13361,10 @@
|
|
|
13154
13361
|
{
|
|
13155
13362
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
13156
13363
|
rule: this.taxClassificationStatusRule
|
|
13364
|
+
},
|
|
13365
|
+
{
|
|
13366
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
13367
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
13157
13368
|
}
|
|
13158
13369
|
],
|
|
13159
13370
|
_r[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -13209,6 +13420,10 @@
|
|
|
13209
13420
|
{
|
|
13210
13421
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
13211
13422
|
rule: this.taxClassificationStatusRule
|
|
13423
|
+
},
|
|
13424
|
+
{
|
|
13425
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
13426
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
13212
13427
|
}
|
|
13213
13428
|
],
|
|
13214
13429
|
_s[exports.EnumTipoTributo.IBS_ESTADUAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -13221,6 +13436,10 @@
|
|
|
13221
13436
|
{
|
|
13222
13437
|
field: exports.EnumCampoTributo.ClassificacaoTributaria,
|
|
13223
13438
|
rule: this.taxClassificationStatusRule
|
|
13439
|
+
},
|
|
13440
|
+
{
|
|
13441
|
+
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
13442
|
+
rule: this.applyNetValueToDocumentStatusRule
|
|
13224
13443
|
}
|
|
13225
13444
|
],
|
|
13226
13445
|
_s[exports.EnumTipoTributo.IBS_MUNICIPAL_TRIBUTACAO_REGULAR] = [
|
|
@@ -13338,6 +13557,8 @@
|
|
|
13338
13557
|
switch (taxType) {
|
|
13339
13558
|
case exports.EnumTipoTributo.CBS:
|
|
13340
13559
|
case exports.EnumTipoTributo.CBS_CREDITO_PRESUMIDO:
|
|
13560
|
+
case exports.EnumTipoTributo.IBS_ESTADUAL:
|
|
13561
|
+
case exports.EnumTipoTributo.IBS_MUNICIPAL:
|
|
13341
13562
|
{
|
|
13342
13563
|
switch (document) {
|
|
13343
13564
|
case 'Incoming Invoice':
|
|
@@ -16574,7 +16795,7 @@
|
|
|
16574
16795
|
},
|
|
16575
16796
|
{
|
|
16576
16797
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
16577
|
-
rules: []
|
|
16798
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
16578
16799
|
}
|
|
16579
16800
|
],
|
|
16580
16801
|
_a[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -16642,7 +16863,7 @@
|
|
|
16642
16863
|
},
|
|
16643
16864
|
{
|
|
16644
16865
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
16645
|
-
rules: []
|
|
16866
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
16646
16867
|
}
|
|
16647
16868
|
],
|
|
16648
16869
|
_a[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -16878,7 +17099,7 @@
|
|
|
16878
17099
|
},
|
|
16879
17100
|
{
|
|
16880
17101
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
16881
|
-
rules: []
|
|
17102
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
16882
17103
|
}
|
|
16883
17104
|
],
|
|
16884
17105
|
_b[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -16946,7 +17167,7 @@
|
|
|
16946
17167
|
},
|
|
16947
17168
|
{
|
|
16948
17169
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
16949
|
-
rules: []
|
|
17170
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
16950
17171
|
}
|
|
16951
17172
|
],
|
|
16952
17173
|
_b[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -17182,7 +17403,7 @@
|
|
|
17182
17403
|
},
|
|
17183
17404
|
{
|
|
17184
17405
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
17185
|
-
rules: []
|
|
17406
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
17186
17407
|
}
|
|
17187
17408
|
],
|
|
17188
17409
|
_c[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -17250,7 +17471,7 @@
|
|
|
17250
17471
|
},
|
|
17251
17472
|
{
|
|
17252
17473
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
17253
|
-
rules: []
|
|
17474
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
17254
17475
|
}
|
|
17255
17476
|
],
|
|
17256
17477
|
_c[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -17486,7 +17707,7 @@
|
|
|
17486
17707
|
},
|
|
17487
17708
|
{
|
|
17488
17709
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
17489
|
-
rules: []
|
|
17710
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
17490
17711
|
}
|
|
17491
17712
|
],
|
|
17492
17713
|
_d[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -17554,7 +17775,7 @@
|
|
|
17554
17775
|
},
|
|
17555
17776
|
{
|
|
17556
17777
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
17557
|
-
rules: []
|
|
17778
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
17558
17779
|
}
|
|
17559
17780
|
],
|
|
17560
17781
|
_d[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -17790,7 +18011,7 @@
|
|
|
17790
18011
|
},
|
|
17791
18012
|
{
|
|
17792
18013
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
17793
|
-
rules: []
|
|
18014
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
17794
18015
|
}
|
|
17795
18016
|
],
|
|
17796
18017
|
_e[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -17858,7 +18079,7 @@
|
|
|
17858
18079
|
},
|
|
17859
18080
|
{
|
|
17860
18081
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
17861
|
-
rules: []
|
|
18082
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
17862
18083
|
}
|
|
17863
18084
|
],
|
|
17864
18085
|
_e[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -18094,7 +18315,7 @@
|
|
|
18094
18315
|
},
|
|
18095
18316
|
{
|
|
18096
18317
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
18097
|
-
rules: []
|
|
18318
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
18098
18319
|
}
|
|
18099
18320
|
],
|
|
18100
18321
|
_f[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -18162,7 +18383,7 @@
|
|
|
18162
18383
|
},
|
|
18163
18384
|
{
|
|
18164
18385
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
18165
|
-
rules: []
|
|
18386
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
18166
18387
|
}
|
|
18167
18388
|
],
|
|
18168
18389
|
_f[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -18398,7 +18619,7 @@
|
|
|
18398
18619
|
},
|
|
18399
18620
|
{
|
|
18400
18621
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
18401
|
-
rules: []
|
|
18622
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
18402
18623
|
}
|
|
18403
18624
|
],
|
|
18404
18625
|
_g[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -18466,7 +18687,7 @@
|
|
|
18466
18687
|
},
|
|
18467
18688
|
{
|
|
18468
18689
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
18469
|
-
rules: []
|
|
18690
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
18470
18691
|
}
|
|
18471
18692
|
],
|
|
18472
18693
|
_g[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -18702,7 +18923,7 @@
|
|
|
18702
18923
|
},
|
|
18703
18924
|
{
|
|
18704
18925
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
18705
|
-
rules: []
|
|
18926
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
18706
18927
|
}
|
|
18707
18928
|
],
|
|
18708
18929
|
_h[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -18770,7 +18991,7 @@
|
|
|
18770
18991
|
},
|
|
18771
18992
|
{
|
|
18772
18993
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
18773
|
-
rules: []
|
|
18994
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
18774
18995
|
}
|
|
18775
18996
|
],
|
|
18776
18997
|
_h[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -19006,7 +19227,7 @@
|
|
|
19006
19227
|
},
|
|
19007
19228
|
{
|
|
19008
19229
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
19009
|
-
rules: []
|
|
19230
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
19010
19231
|
}
|
|
19011
19232
|
],
|
|
19012
19233
|
_j[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -19074,7 +19295,7 @@
|
|
|
19074
19295
|
},
|
|
19075
19296
|
{
|
|
19076
19297
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
19077
|
-
rules: []
|
|
19298
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
19078
19299
|
}
|
|
19079
19300
|
],
|
|
19080
19301
|
_j[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -19310,7 +19531,7 @@
|
|
|
19310
19531
|
},
|
|
19311
19532
|
{
|
|
19312
19533
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
19313
|
-
rules: []
|
|
19534
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
19314
19535
|
}
|
|
19315
19536
|
],
|
|
19316
19537
|
_k[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -19378,7 +19599,7 @@
|
|
|
19378
19599
|
},
|
|
19379
19600
|
{
|
|
19380
19601
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
19381
|
-
rules: []
|
|
19602
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
19382
19603
|
}
|
|
19383
19604
|
],
|
|
19384
19605
|
_k[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -19723,7 +19944,7 @@
|
|
|
19723
19944
|
},
|
|
19724
19945
|
{
|
|
19725
19946
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
19726
|
-
rules: []
|
|
19947
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
19727
19948
|
}
|
|
19728
19949
|
],
|
|
19729
19950
|
_a[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -19791,7 +20012,7 @@
|
|
|
19791
20012
|
},
|
|
19792
20013
|
{
|
|
19793
20014
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
19794
|
-
rules: []
|
|
20015
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
19795
20016
|
}
|
|
19796
20017
|
],
|
|
19797
20018
|
_a[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -20027,7 +20248,7 @@
|
|
|
20027
20248
|
},
|
|
20028
20249
|
{
|
|
20029
20250
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
20030
|
-
rules: []
|
|
20251
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
20031
20252
|
}
|
|
20032
20253
|
],
|
|
20033
20254
|
_b[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -20095,7 +20316,7 @@
|
|
|
20095
20316
|
},
|
|
20096
20317
|
{
|
|
20097
20318
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
20098
|
-
rules: []
|
|
20319
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
20099
20320
|
}
|
|
20100
20321
|
],
|
|
20101
20322
|
_b[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -20331,7 +20552,7 @@
|
|
|
20331
20552
|
},
|
|
20332
20553
|
{
|
|
20333
20554
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
20334
|
-
rules: []
|
|
20555
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
20335
20556
|
}
|
|
20336
20557
|
],
|
|
20337
20558
|
_c[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -20399,7 +20620,7 @@
|
|
|
20399
20620
|
},
|
|
20400
20621
|
{
|
|
20401
20622
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
20402
|
-
rules: []
|
|
20623
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
20403
20624
|
}
|
|
20404
20625
|
],
|
|
20405
20626
|
_c[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -20635,7 +20856,7 @@
|
|
|
20635
20856
|
},
|
|
20636
20857
|
{
|
|
20637
20858
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
20638
|
-
rules: []
|
|
20859
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
20639
20860
|
}
|
|
20640
20861
|
],
|
|
20641
20862
|
_d[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -20703,7 +20924,7 @@
|
|
|
20703
20924
|
},
|
|
20704
20925
|
{
|
|
20705
20926
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
20706
|
-
rules: []
|
|
20927
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
20707
20928
|
}
|
|
20708
20929
|
],
|
|
20709
20930
|
_d[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -20939,7 +21160,7 @@
|
|
|
20939
21160
|
},
|
|
20940
21161
|
{
|
|
20941
21162
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
20942
|
-
rules: []
|
|
21163
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
20943
21164
|
}
|
|
20944
21165
|
],
|
|
20945
21166
|
_e[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -21007,7 +21228,7 @@
|
|
|
21007
21228
|
},
|
|
21008
21229
|
{
|
|
21009
21230
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
21010
|
-
rules: []
|
|
21231
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
21011
21232
|
}
|
|
21012
21233
|
],
|
|
21013
21234
|
_e[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -21243,7 +21464,7 @@
|
|
|
21243
21464
|
},
|
|
21244
21465
|
{
|
|
21245
21466
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
21246
|
-
rules: []
|
|
21467
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
21247
21468
|
}
|
|
21248
21469
|
],
|
|
21249
21470
|
_f[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -21311,7 +21532,7 @@
|
|
|
21311
21532
|
},
|
|
21312
21533
|
{
|
|
21313
21534
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
21314
|
-
rules: []
|
|
21535
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
21315
21536
|
}
|
|
21316
21537
|
],
|
|
21317
21538
|
_f[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -21547,7 +21768,7 @@
|
|
|
21547
21768
|
},
|
|
21548
21769
|
{
|
|
21549
21770
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
21550
|
-
rules: []
|
|
21771
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
21551
21772
|
}
|
|
21552
21773
|
],
|
|
21553
21774
|
_g[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -21615,7 +21836,7 @@
|
|
|
21615
21836
|
},
|
|
21616
21837
|
{
|
|
21617
21838
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
21618
|
-
rules: []
|
|
21839
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
21619
21840
|
}
|
|
21620
21841
|
],
|
|
21621
21842
|
_g[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -21851,7 +22072,7 @@
|
|
|
21851
22072
|
},
|
|
21852
22073
|
{
|
|
21853
22074
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
21854
|
-
rules: []
|
|
22075
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
21855
22076
|
}
|
|
21856
22077
|
],
|
|
21857
22078
|
_h[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -21919,7 +22140,7 @@
|
|
|
21919
22140
|
},
|
|
21920
22141
|
{
|
|
21921
22142
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
21922
|
-
rules: []
|
|
22143
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
21923
22144
|
}
|
|
21924
22145
|
],
|
|
21925
22146
|
_h[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -22155,7 +22376,7 @@
|
|
|
22155
22376
|
},
|
|
22156
22377
|
{
|
|
22157
22378
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
22158
|
-
rules: []
|
|
22379
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
22159
22380
|
}
|
|
22160
22381
|
],
|
|
22161
22382
|
_j[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -22223,7 +22444,7 @@
|
|
|
22223
22444
|
},
|
|
22224
22445
|
{
|
|
22225
22446
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
22226
|
-
rules: []
|
|
22447
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
22227
22448
|
}
|
|
22228
22449
|
],
|
|
22229
22450
|
_j[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -22459,7 +22680,7 @@
|
|
|
22459
22680
|
},
|
|
22460
22681
|
{
|
|
22461
22682
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
22462
|
-
rules: []
|
|
22683
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
22463
22684
|
}
|
|
22464
22685
|
],
|
|
22465
22686
|
_k[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -22527,7 +22748,7 @@
|
|
|
22527
22748
|
},
|
|
22528
22749
|
{
|
|
22529
22750
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
22530
|
-
rules: []
|
|
22751
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
22531
22752
|
}
|
|
22532
22753
|
],
|
|
22533
22754
|
_k[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -22827,7 +23048,7 @@
|
|
|
22827
23048
|
},
|
|
22828
23049
|
{
|
|
22829
23050
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
22830
|
-
rules: []
|
|
23051
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
22831
23052
|
}
|
|
22832
23053
|
],
|
|
22833
23054
|
_l[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -22895,7 +23116,7 @@
|
|
|
22895
23116
|
},
|
|
22896
23117
|
{
|
|
22897
23118
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
22898
|
-
rules: []
|
|
23119
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
22899
23120
|
}
|
|
22900
23121
|
],
|
|
22901
23122
|
_l[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -23131,7 +23352,7 @@
|
|
|
23131
23352
|
},
|
|
23132
23353
|
{
|
|
23133
23354
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
23134
|
-
rules: []
|
|
23355
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
23135
23356
|
}
|
|
23136
23357
|
],
|
|
23137
23358
|
_m[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -23199,7 +23420,7 @@
|
|
|
23199
23420
|
},
|
|
23200
23421
|
{
|
|
23201
23422
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
23202
|
-
rules: []
|
|
23423
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
23203
23424
|
}
|
|
23204
23425
|
],
|
|
23205
23426
|
_m[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -23435,7 +23656,7 @@
|
|
|
23435
23656
|
},
|
|
23436
23657
|
{
|
|
23437
23658
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
23438
|
-
rules: []
|
|
23659
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
23439
23660
|
}
|
|
23440
23661
|
],
|
|
23441
23662
|
_o[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -23503,7 +23724,7 @@
|
|
|
23503
23724
|
},
|
|
23504
23725
|
{
|
|
23505
23726
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
23506
|
-
rules: []
|
|
23727
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
23507
23728
|
}
|
|
23508
23729
|
],
|
|
23509
23730
|
_o[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -23739,7 +23960,7 @@
|
|
|
23739
23960
|
},
|
|
23740
23961
|
{
|
|
23741
23962
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
23742
|
-
rules: []
|
|
23963
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
23743
23964
|
}
|
|
23744
23965
|
],
|
|
23745
23966
|
_p[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -23807,7 +24028,7 @@
|
|
|
23807
24028
|
},
|
|
23808
24029
|
{
|
|
23809
24030
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
23810
|
-
rules: []
|
|
24031
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
23811
24032
|
}
|
|
23812
24033
|
],
|
|
23813
24034
|
_p[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -24043,7 +24264,7 @@
|
|
|
24043
24264
|
},
|
|
24044
24265
|
{
|
|
24045
24266
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
24046
|
-
rules: []
|
|
24267
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
24047
24268
|
}
|
|
24048
24269
|
],
|
|
24049
24270
|
_q[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -24111,7 +24332,7 @@
|
|
|
24111
24332
|
},
|
|
24112
24333
|
{
|
|
24113
24334
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
24114
|
-
rules: []
|
|
24335
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
24115
24336
|
}
|
|
24116
24337
|
],
|
|
24117
24338
|
_q[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -24347,7 +24568,7 @@
|
|
|
24347
24568
|
},
|
|
24348
24569
|
{
|
|
24349
24570
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
24350
|
-
rules: []
|
|
24571
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
24351
24572
|
}
|
|
24352
24573
|
],
|
|
24353
24574
|
_r[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -24415,7 +24636,7 @@
|
|
|
24415
24636
|
},
|
|
24416
24637
|
{
|
|
24417
24638
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
24418
|
-
rules: []
|
|
24639
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
24419
24640
|
}
|
|
24420
24641
|
],
|
|
24421
24642
|
_r[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|
|
@@ -24651,7 +24872,7 @@
|
|
|
24651
24872
|
},
|
|
24652
24873
|
{
|
|
24653
24874
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
24654
|
-
rules: []
|
|
24875
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
24655
24876
|
}
|
|
24656
24877
|
],
|
|
24657
24878
|
_s[exports.EnumTipoTributo.IBS_ESTADUAL_DIFERIDO] = [
|
|
@@ -24719,7 +24940,7 @@
|
|
|
24719
24940
|
},
|
|
24720
24941
|
{
|
|
24721
24942
|
field: exports.EnumCampoTributo.AplicarValorLiquidoDocumento,
|
|
24722
|
-
rules: []
|
|
24943
|
+
rules: [this.applyNetValueToDocumentRequiredValidationRule]
|
|
24723
24944
|
}
|
|
24724
24945
|
],
|
|
24725
24946
|
_s[exports.EnumTipoTributo.IBS_MUNICIPAL_DIFERIDO] = [
|