@senior-gestao-empresarial/angular-components 6.10.2 → 6.11.1
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-angular-components.umd.js +163 -1
- package/bundles/senior-gestao-empresarial-angular-components.umd.js.map +1 -1
- package/bundles/senior-gestao-empresarial-angular-components.umd.min.js +1 -1
- package/bundles/senior-gestao-empresarial-angular-components.umd.min.js.map +1 -1
- package/components/lookups/entities/conta-interna-filial-lookup.d.ts +8 -0
- package/components/lookups/entities/e-043-mpc-lookup.d.ts +8 -0
- package/components/lookups/entities/e-043-pcm-lookup.d.ts +8 -0
- package/components/lookups/entities/e-089-doc-lookup.d.ts +8 -0
- package/components/lookups/index.d.ts +4 -0
- package/esm2015/components/lookups/entities/conta-interna-filial-lookup.js +54 -0
- package/esm2015/components/lookups/entities/e-043-mpc-lookup.js +46 -0
- package/esm2015/components/lookups/entities/e-043-pcm-lookup.js +46 -0
- package/esm2015/components/lookups/entities/e-089-doc-lookup.js +26 -0
- package/esm2015/components/lookups/erp-lookups.module.js +10 -2
- package/esm2015/components/lookups/index.js +5 -1
- package/esm5/components/lookups/entities/conta-interna-filial-lookup.js +55 -0
- package/esm5/components/lookups/entities/e-043-mpc-lookup.js +49 -0
- package/esm5/components/lookups/entities/e-043-pcm-lookup.js +49 -0
- package/esm5/components/lookups/entities/e-089-doc-lookup.js +29 -0
- package/esm5/components/lookups/erp-lookups.module.js +10 -2
- package/esm5/components/lookups/index.js +5 -1
- package/fesm2015/senior-gestao-empresarial-angular-components.js +150 -2
- package/fesm2015/senior-gestao-empresarial-angular-components.js.map +1 -1
- package/fesm5/senior-gestao-empresarial-angular-components.js +160 -2
- package/fesm5/senior-gestao-empresarial-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/senior-gestao-empresarial-angular-components.metadata.json +1 -1
|
@@ -6366,6 +6366,160 @@
|
|
|
6366
6366
|
return EntityPersonProductLookup;
|
|
6367
6367
|
}(ErpLookups));
|
|
6368
6368
|
|
|
6369
|
+
var defaultFields$2 = [
|
|
6370
|
+
{ name: "numCco", type: angularComponents.FieldType.String },
|
|
6371
|
+
{ name: "desCco", type: angularComponents.FieldType.String }
|
|
6372
|
+
];
|
|
6373
|
+
var ContaInternaFilialLookup = /** @class */ (function (_super) {
|
|
6374
|
+
__extends(ContaInternaFilialLookup, _super);
|
|
6375
|
+
function ContaInternaFilialLookup(lookupService, translate) {
|
|
6376
|
+
var _this = _super.call(this, lookupService, translate, "contaInternaFilial", defaultFields$2, __spread(defaultFields$2, [
|
|
6377
|
+
{
|
|
6378
|
+
name: "e034tcc.aplTcc",
|
|
6379
|
+
type: angularComponents.FieldType.Enum,
|
|
6380
|
+
options: [
|
|
6381
|
+
{ label: translate.instant("erpx_fin.foundation.enum_tip_tcc_v_1"), value: "V1" },
|
|
6382
|
+
{ label: translate.instant("erpx_fin.foundation.enum_tip_tcc_v_2"), value: "V2" },
|
|
6383
|
+
{ label: translate.instant("erpx_fin.foundation.enum_tip_tcc_v_9"), value: "V9" },
|
|
6384
|
+
{ label: translate.instant("erpx_fin.foundation.enum_tip_tcc_v_10"), value: "V10" }
|
|
6385
|
+
]
|
|
6386
|
+
}
|
|
6387
|
+
]), __spread(defaultFields$2, [
|
|
6388
|
+
{
|
|
6389
|
+
name: "e034tcc.desTcc",
|
|
6390
|
+
type: angularComponents.FieldType.String
|
|
6391
|
+
},
|
|
6392
|
+
{
|
|
6393
|
+
name: "e034tcc.aplTcc",
|
|
6394
|
+
type: angularComponents.FieldType.Enum,
|
|
6395
|
+
options: [
|
|
6396
|
+
{ label: translate.instant("erpx_fin.foundation.enum_tip_tcc_v_1"), value: "V1" },
|
|
6397
|
+
{ label: translate.instant("erpx_fin.foundation.enum_tip_tcc_v_2"), value: "V2" },
|
|
6398
|
+
{ label: translate.instant("erpx_fin.foundation.enum_tip_tcc_v_9"), value: "V9" },
|
|
6399
|
+
{ label: translate.instant("erpx_fin.foundation.enum_tip_tcc_v_10"), value: "V10" }
|
|
6400
|
+
]
|
|
6401
|
+
}
|
|
6402
|
+
]), "erpx_fin", "foundation") || this;
|
|
6403
|
+
_this.lookupService = lookupService;
|
|
6404
|
+
_this.translate = translate;
|
|
6405
|
+
return _this;
|
|
6406
|
+
}
|
|
6407
|
+
ContaInternaFilialLookup.ctorParameters = function () { return [
|
|
6408
|
+
{ type: ErpLookupsService },
|
|
6409
|
+
{ type: core$1.TranslateService }
|
|
6410
|
+
]; };
|
|
6411
|
+
ContaInternaFilialLookup = __decorate([
|
|
6412
|
+
core.Injectable()
|
|
6413
|
+
], ContaInternaFilialLookup);
|
|
6414
|
+
return ContaInternaFilialLookup;
|
|
6415
|
+
}(ErpLookups));
|
|
6416
|
+
|
|
6417
|
+
var defaultFields$3 = [
|
|
6418
|
+
{ name: "codDoc", type: angularComponents.FieldType.String },
|
|
6419
|
+
{ name: "desDoc", type: angularComponents.FieldType.String }
|
|
6420
|
+
];
|
|
6421
|
+
var E089DocLookup = /** @class */ (function (_super) {
|
|
6422
|
+
__extends(E089DocLookup, _super);
|
|
6423
|
+
function E089DocLookup(lookupService, translate) {
|
|
6424
|
+
var _this = _super.call(this, lookupService, translate, "e089doc", defaultFields$3, defaultFields$3, defaultFields$3, "erpx_fin", "foundation") || this;
|
|
6425
|
+
_this.lookupService = lookupService;
|
|
6426
|
+
_this.translate = translate;
|
|
6427
|
+
return _this;
|
|
6428
|
+
}
|
|
6429
|
+
E089DocLookup.ctorParameters = function () { return [
|
|
6430
|
+
{ type: ErpLookupsService },
|
|
6431
|
+
{ type: core$1.TranslateService }
|
|
6432
|
+
]; };
|
|
6433
|
+
E089DocLookup = __decorate([
|
|
6434
|
+
core.Injectable()
|
|
6435
|
+
], E089DocLookup);
|
|
6436
|
+
return E089DocLookup;
|
|
6437
|
+
}(ErpLookups));
|
|
6438
|
+
|
|
6439
|
+
var E043MpcLookup = /** @class */ (function (_super) {
|
|
6440
|
+
__extends(E043MpcLookup, _super);
|
|
6441
|
+
function E043MpcLookup(lookupService, translate) {
|
|
6442
|
+
var _this = _super.call(this, lookupService, translate, "e043mpc", [
|
|
6443
|
+
{
|
|
6444
|
+
name: "codMpc",
|
|
6445
|
+
type: angularComponents.FieldType.Integer
|
|
6446
|
+
}, {
|
|
6447
|
+
name: "desMpc",
|
|
6448
|
+
type: angularComponents.FieldType.String
|
|
6449
|
+
}
|
|
6450
|
+
], [
|
|
6451
|
+
{
|
|
6452
|
+
name: "codMpc",
|
|
6453
|
+
type: angularComponents.FieldType.Integer
|
|
6454
|
+
}, {
|
|
6455
|
+
name: "desMpc",
|
|
6456
|
+
type: angularComponents.FieldType.String
|
|
6457
|
+
}
|
|
6458
|
+
], [
|
|
6459
|
+
{
|
|
6460
|
+
name: "codMpc",
|
|
6461
|
+
type: angularComponents.FieldType.Integer
|
|
6462
|
+
}, {
|
|
6463
|
+
name: "desMpc",
|
|
6464
|
+
type: angularComponents.FieldType.String
|
|
6465
|
+
}
|
|
6466
|
+
], "erpx_fnd", "compliance") || this;
|
|
6467
|
+
_this.lookupService = lookupService;
|
|
6468
|
+
_this.translate = translate;
|
|
6469
|
+
return _this;
|
|
6470
|
+
}
|
|
6471
|
+
E043MpcLookup.ctorParameters = function () { return [
|
|
6472
|
+
{ type: ErpLookupsService },
|
|
6473
|
+
{ type: core$1.TranslateService }
|
|
6474
|
+
]; };
|
|
6475
|
+
E043MpcLookup = __decorate([
|
|
6476
|
+
core.Injectable()
|
|
6477
|
+
], E043MpcLookup);
|
|
6478
|
+
return E043MpcLookup;
|
|
6479
|
+
}(ErpLookups));
|
|
6480
|
+
|
|
6481
|
+
var E043PcmLookup = /** @class */ (function (_super) {
|
|
6482
|
+
__extends(E043PcmLookup, _super);
|
|
6483
|
+
function E043PcmLookup(lookupService, translate) {
|
|
6484
|
+
var _this = _super.call(this, lookupService, translate, "e043pcm", [
|
|
6485
|
+
{
|
|
6486
|
+
name: "claCta",
|
|
6487
|
+
type: angularComponents.FieldType.String
|
|
6488
|
+
}, {
|
|
6489
|
+
name: "desCta",
|
|
6490
|
+
type: angularComponents.FieldType.String
|
|
6491
|
+
}
|
|
6492
|
+
], [
|
|
6493
|
+
{
|
|
6494
|
+
name: "claCta",
|
|
6495
|
+
type: angularComponents.FieldType.String
|
|
6496
|
+
}, {
|
|
6497
|
+
name: "desCta",
|
|
6498
|
+
type: angularComponents.FieldType.String
|
|
6499
|
+
}
|
|
6500
|
+
], [
|
|
6501
|
+
{
|
|
6502
|
+
name: "claCta",
|
|
6503
|
+
type: angularComponents.FieldType.String
|
|
6504
|
+
}, {
|
|
6505
|
+
name: "desCta",
|
|
6506
|
+
type: angularComponents.FieldType.String
|
|
6507
|
+
}
|
|
6508
|
+
], "erpx_fnd", "compliance") || this;
|
|
6509
|
+
_this.lookupService = lookupService;
|
|
6510
|
+
_this.translate = translate;
|
|
6511
|
+
return _this;
|
|
6512
|
+
}
|
|
6513
|
+
E043PcmLookup.ctorParameters = function () { return [
|
|
6514
|
+
{ type: ErpLookupsService },
|
|
6515
|
+
{ type: core$1.TranslateService }
|
|
6516
|
+
]; };
|
|
6517
|
+
E043PcmLookup = __decorate([
|
|
6518
|
+
core.Injectable()
|
|
6519
|
+
], E043PcmLookup);
|
|
6520
|
+
return E043PcmLookup;
|
|
6521
|
+
}(ErpLookups));
|
|
6522
|
+
|
|
6369
6523
|
var ErpLookupsModule = /** @class */ (function () {
|
|
6370
6524
|
function ErpLookupsModule() {
|
|
6371
6525
|
}
|
|
@@ -6481,7 +6635,11 @@
|
|
|
6481
6635
|
AgreementLookup,
|
|
6482
6636
|
NotaFiscalEntradaLookup,
|
|
6483
6637
|
SegmentoLookup,
|
|
6484
|
-
EntityPersonProductLookup
|
|
6638
|
+
EntityPersonProductLookup,
|
|
6639
|
+
ContaInternaFilialLookup,
|
|
6640
|
+
E089DocLookup,
|
|
6641
|
+
E043MpcLookup,
|
|
6642
|
+
E043PcmLookup
|
|
6485
6643
|
],
|
|
6486
6644
|
declarations: [],
|
|
6487
6645
|
exports: [],
|
|
@@ -7628,6 +7786,7 @@
|
|
|
7628
7786
|
exports.BreadcrumbComponent = BreadcrumbComponent;
|
|
7629
7787
|
exports.BreadcrumbModule = BreadcrumbModule;
|
|
7630
7788
|
exports.Breakpoints = Breakpoints;
|
|
7789
|
+
exports.ContaInternaFilialLookup = ContaInternaFilialLookup;
|
|
7631
7790
|
exports.CountryLookup = CountryLookup;
|
|
7632
7791
|
exports.CplTriNotaSaidaE001EndLookup = CplTriNotaSaidaE001EndLookup;
|
|
7633
7792
|
exports.CplTriNotaSaidaE001PesLookup = CplTriNotaSaidaE001PesLookup;
|
|
@@ -7675,6 +7834,8 @@
|
|
|
7675
7834
|
exports.E035OcrLookup = E035OcrLookup;
|
|
7676
7835
|
exports.E036InsLookup = E036InsLookup;
|
|
7677
7836
|
exports.E039PorLookup = E039PorLookup;
|
|
7837
|
+
exports.E043MpcLookup = E043MpcLookup;
|
|
7838
|
+
exports.E043PcmLookup = E043PcmLookup;
|
|
7678
7839
|
exports.E044CcuFinRatDepLookup = E044CcuFinRatDepLookup;
|
|
7679
7840
|
exports.E044CcuLookup = E044CcuLookup;
|
|
7680
7841
|
exports.E045PlaLookup = E045PlaLookup;
|
|
@@ -7696,6 +7857,7 @@
|
|
|
7696
7857
|
exports.E081TabLookup = E081TabLookup;
|
|
7697
7858
|
exports.E082TprLookup = E082TprLookup;
|
|
7698
7859
|
exports.E085PesLookup = E085PesLookup;
|
|
7860
|
+
exports.E089DocLookup = E089DocLookup;
|
|
7699
7861
|
exports.E090HrpComGerLookup = E090HrpComGerLookup;
|
|
7700
7862
|
exports.E090PesLookup = E090PesLookup;
|
|
7701
7863
|
exports.E091PlfFinRatLookup = E091PlfFinRatLookup;
|