@senior-gestao-empresarial/angular-components 4.20.4 → 4.22.0-5b65c0a7-384a-4f22-b4d9-413308f621ab
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 +174 -36
- package/bundles/senior-gestao-empresarial-angular-components.umd.js.map +1 -1
- package/bundles/senior-gestao-empresarial-angular-components.umd.min.js +2 -2
- package/bundles/senior-gestao-empresarial-angular-components.umd.min.js.map +1 -1
- package/components/lookups/entities/apuracao-foundation/parameters-lookup.d.ts +8 -0
- package/components/lookups/entities/apuracao-foundation/type-taxes-lookup.d.ts +8 -0
- package/components/lookups/index.d.ts +2 -0
- package/components/permissions/protocols/query-module.d.ts +1 -0
- package/components/permissions/verify-module-permission.d.ts +2 -1
- package/components/websocket/websocket.service.d.ts +7 -4
- package/esm2015/components/lookups/entities/apuracao-foundation/parameters-lookup.js +76 -0
- package/esm2015/components/lookups/entities/apuracao-foundation/type-taxes-lookup.js +52 -0
- package/esm2015/components/lookups/erp-lookups.module.js +6 -2
- package/esm2015/components/lookups/index.js +3 -1
- package/esm2015/components/permissions/protocols/query-module.js +1 -1
- package/esm2015/components/permissions/verify-module-permission.js +7 -5
- package/esm2015/components/websocket/websocket.service.js +32 -30
- package/esm5/components/lookups/entities/apuracao-foundation/parameters-lookup.js +79 -0
- package/esm5/components/lookups/entities/apuracao-foundation/type-taxes-lookup.js +55 -0
- package/esm5/components/lookups/erp-lookups.module.js +6 -2
- package/esm5/components/lookups/index.js +3 -1
- package/esm5/components/permissions/protocols/query-module.js +1 -1
- package/esm5/components/permissions/verify-module-permission.js +7 -5
- package/esm5/components/websocket/websocket.service.js +45 -33
- package/fesm2015/senior-gestao-empresarial-angular-components.js +155 -35
- package/fesm2015/senior-gestao-empresarial-angular-components.js.map +1 -1
- package/fesm5/senior-gestao-empresarial-angular-components.js +174 -38
- 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
|
@@ -4,7 +4,7 @@ import { CommonModule } from '@angular/common';
|
|
|
4
4
|
import { BreadcrumbModule as BreadcrumbModule$1 } from 'primeng/breadcrumb';
|
|
5
5
|
import { NavigationEnd, PRIMARY_OUTLET, ActivatedRoute, Router, RouterModule } from '@angular/router';
|
|
6
6
|
import { Subject, throwError, interval, of, ReplaySubject } from 'rxjs';
|
|
7
|
-
import { takeUntil, filter, catchError, map, takeWhile, switchMap, take } from 'rxjs/operators';
|
|
7
|
+
import { takeUntil, filter, catchError, map, takeWhile, switchMap, first, take } from 'rxjs/operators';
|
|
8
8
|
import * as moment_ from 'moment';
|
|
9
9
|
import { FormField, FieldType } from '@seniorsistemas/angular-components';
|
|
10
10
|
import { HttpParams, HttpClient } from '@angular/common/http';
|
|
@@ -5510,6 +5510,126 @@ var BankLookup = /** @class */ (function (_super) {
|
|
|
5510
5510
|
return BankLookup;
|
|
5511
5511
|
}(ErpLookups));
|
|
5512
5512
|
|
|
5513
|
+
var TypeTaxesLookup = /** @class */ (function (_super) {
|
|
5514
|
+
__extends(TypeTaxesLookup, _super);
|
|
5515
|
+
function TypeTaxesLookup(lookupService, translate) {
|
|
5516
|
+
var _this = _super.call(this, lookupService, translate, "impostoTipo", [
|
|
5517
|
+
{
|
|
5518
|
+
name: "codigo",
|
|
5519
|
+
type: FieldType.Integer
|
|
5520
|
+
}, {
|
|
5521
|
+
name: "descricao",
|
|
5522
|
+
type: FieldType.String
|
|
5523
|
+
},
|
|
5524
|
+
], [
|
|
5525
|
+
{
|
|
5526
|
+
name: "codigo",
|
|
5527
|
+
type: FieldType.Integer
|
|
5528
|
+
}, {
|
|
5529
|
+
name: "descricao",
|
|
5530
|
+
type: FieldType.String
|
|
5531
|
+
}, {
|
|
5532
|
+
name: "chave",
|
|
5533
|
+
type: FieldType.String
|
|
5534
|
+
},
|
|
5535
|
+
], [
|
|
5536
|
+
{
|
|
5537
|
+
name: "codigo",
|
|
5538
|
+
type: FieldType.Integer
|
|
5539
|
+
}, {
|
|
5540
|
+
name: "descricao",
|
|
5541
|
+
type: FieldType.String
|
|
5542
|
+
}, {
|
|
5543
|
+
name: "chave",
|
|
5544
|
+
type: FieldType.String
|
|
5545
|
+
},
|
|
5546
|
+
], "erpx_cpl_tri", "apuracao_foundation") || this;
|
|
5547
|
+
_this.lookupService = lookupService;
|
|
5548
|
+
_this.translate = translate;
|
|
5549
|
+
return _this;
|
|
5550
|
+
}
|
|
5551
|
+
TypeTaxesLookup.ctorParameters = function () { return [
|
|
5552
|
+
{ type: ErpLookupsService },
|
|
5553
|
+
{ type: TranslateService }
|
|
5554
|
+
]; };
|
|
5555
|
+
TypeTaxesLookup = __decorate([
|
|
5556
|
+
Injectable()
|
|
5557
|
+
], TypeTaxesLookup);
|
|
5558
|
+
return TypeTaxesLookup;
|
|
5559
|
+
}(ErpLookups));
|
|
5560
|
+
|
|
5561
|
+
var ParametersLookup = /** @class */ (function (_super) {
|
|
5562
|
+
__extends(ParametersLookup, _super);
|
|
5563
|
+
function ParametersLookup(lookupService, translate) {
|
|
5564
|
+
var _this = _super.call(this, lookupService, translate, "parametros", [
|
|
5565
|
+
{
|
|
5566
|
+
name: "codigo",
|
|
5567
|
+
type: FieldType.Integer
|
|
5568
|
+
}, {
|
|
5569
|
+
name: "imposto",
|
|
5570
|
+
type: FieldType.Enum
|
|
5571
|
+
},
|
|
5572
|
+
], [
|
|
5573
|
+
{
|
|
5574
|
+
name: "codigo",
|
|
5575
|
+
type: FieldType.Integer
|
|
5576
|
+
}, {
|
|
5577
|
+
name: "imposto",
|
|
5578
|
+
type: FieldType.Enum,
|
|
5579
|
+
}, {
|
|
5580
|
+
name: "codigoArrecadacao",
|
|
5581
|
+
type: FieldType.String
|
|
5582
|
+
}, {
|
|
5583
|
+
name: "regimeControleRetencao",
|
|
5584
|
+
type: FieldType.Enum
|
|
5585
|
+
}, {
|
|
5586
|
+
name: "fornecedor",
|
|
5587
|
+
type: FieldType.String
|
|
5588
|
+
}, {
|
|
5589
|
+
name: "extIntSts",
|
|
5590
|
+
type: FieldType.String
|
|
5591
|
+
}, {
|
|
5592
|
+
name: "extIntMsg",
|
|
5593
|
+
type: FieldType.String
|
|
5594
|
+
},
|
|
5595
|
+
], [
|
|
5596
|
+
{
|
|
5597
|
+
name: "codigo",
|
|
5598
|
+
type: FieldType.Integer
|
|
5599
|
+
}, {
|
|
5600
|
+
name: "imposto",
|
|
5601
|
+
type: FieldType.Enum,
|
|
5602
|
+
}, {
|
|
5603
|
+
name: "codigoArrecadacao",
|
|
5604
|
+
type: FieldType.String
|
|
5605
|
+
}, {
|
|
5606
|
+
name: "regimeControleRetencao",
|
|
5607
|
+
type: FieldType.Enum
|
|
5608
|
+
}, {
|
|
5609
|
+
name: "fornecedor",
|
|
5610
|
+
type: FieldType.String
|
|
5611
|
+
}, {
|
|
5612
|
+
name: "extIntSts",
|
|
5613
|
+
type: FieldType.String
|
|
5614
|
+
}, {
|
|
5615
|
+
name: "extIntMsg",
|
|
5616
|
+
type: FieldType.String
|
|
5617
|
+
},
|
|
5618
|
+
], "erpx_cpl_imp", "guias_impostos") || this;
|
|
5619
|
+
_this.lookupService = lookupService;
|
|
5620
|
+
_this.translate = translate;
|
|
5621
|
+
return _this;
|
|
5622
|
+
}
|
|
5623
|
+
ParametersLookup.ctorParameters = function () { return [
|
|
5624
|
+
{ type: ErpLookupsService },
|
|
5625
|
+
{ type: TranslateService }
|
|
5626
|
+
]; };
|
|
5627
|
+
ParametersLookup = __decorate([
|
|
5628
|
+
Injectable()
|
|
5629
|
+
], ParametersLookup);
|
|
5630
|
+
return ParametersLookup;
|
|
5631
|
+
}(ErpLookups));
|
|
5632
|
+
|
|
5513
5633
|
var ErpLookupsModule = /** @class */ (function () {
|
|
5514
5634
|
function ErpLookupsModule() {
|
|
5515
5635
|
}
|
|
@@ -5612,7 +5732,9 @@ var ErpLookupsModule = /** @class */ (function () {
|
|
|
5612
5732
|
E048SfcLookup,
|
|
5613
5733
|
CurrencyLookup,
|
|
5614
5734
|
CountryLookup,
|
|
5615
|
-
BankLookup
|
|
5735
|
+
BankLookup,
|
|
5736
|
+
TypeTaxesLookup,
|
|
5737
|
+
ParametersLookup
|
|
5616
5738
|
],
|
|
5617
5739
|
declarations: [],
|
|
5618
5740
|
exports: [],
|
|
@@ -6290,7 +6412,6 @@ var WebsocketService = /** @class */ (function () {
|
|
|
6290
6412
|
this.connected = false;
|
|
6291
6413
|
this.isConnecting = false;
|
|
6292
6414
|
this.stompSubscriptions = new Map();
|
|
6293
|
-
// private primitiveSubjects: Map<string, Subject<any>> = new Map<string, Subject<any>>();
|
|
6294
6415
|
this.primitiveManagers = new Map();
|
|
6295
6416
|
this.disconnectSubject = new Subject();
|
|
6296
6417
|
this.connect$ = new Subject();
|
|
@@ -6300,7 +6421,7 @@ var WebsocketService = /** @class */ (function () {
|
|
|
6300
6421
|
}
|
|
6301
6422
|
WebsocketService_1 = WebsocketService;
|
|
6302
6423
|
/**
|
|
6303
|
-
* Observable
|
|
6424
|
+
* Observable responsável por emitir uma notificação quando a conexão websocket é estabelecida.
|
|
6304
6425
|
* @return Um `Observable<void>` que emite uma notificação quando a conexão websocket é estabelecida ou já está em andamento.
|
|
6305
6426
|
*/
|
|
6306
6427
|
WebsocketService.prototype.onConnect = function () {
|
|
@@ -6313,7 +6434,7 @@ var WebsocketService = /** @class */ (function () {
|
|
|
6313
6434
|
return this.connect$.asObservable();
|
|
6314
6435
|
};
|
|
6315
6436
|
/**
|
|
6316
|
-
* Observable
|
|
6437
|
+
* Observable responsável por emitir uma notificação quando a conexão é finalizada.
|
|
6317
6438
|
* @return Um `Observable<void>` que emite uma notificação quando a conexão é finalizada.
|
|
6318
6439
|
*/
|
|
6319
6440
|
WebsocketService.prototype.onDisconnect = function () {
|
|
@@ -6340,14 +6461,7 @@ var WebsocketService = /** @class */ (function () {
|
|
|
6340
6461
|
publishedEvents: [],
|
|
6341
6462
|
};
|
|
6342
6463
|
if (this.isConnected()) {
|
|
6343
|
-
|
|
6344
|
-
this.primitiveManagers.set(primitive, primitiveManager);
|
|
6345
|
-
var stompSubscription = this._stompClient.subscribe(url, function (message) {
|
|
6346
|
-
var event = JSON.parse(message.body || "{}");
|
|
6347
|
-
_this.addPublishedEvent(primitiveManager, event);
|
|
6348
|
-
primitiveManager.subject.next(event);
|
|
6349
|
-
});
|
|
6350
|
-
this.stompSubscriptions.set(primitive, stompSubscription);
|
|
6464
|
+
this.createStompSubscriptions(domain, service, primitive, primitiveManager);
|
|
6351
6465
|
return primitiveManager.subject.asObservable();
|
|
6352
6466
|
}
|
|
6353
6467
|
else {
|
|
@@ -6355,22 +6469,15 @@ var WebsocketService = /** @class */ (function () {
|
|
|
6355
6469
|
this.connect();
|
|
6356
6470
|
}
|
|
6357
6471
|
this.onConnect()
|
|
6358
|
-
.pipe(
|
|
6472
|
+
.pipe(first())
|
|
6359
6473
|
.subscribe(function () {
|
|
6360
|
-
|
|
6361
|
-
_this.primitiveManagers.set(primitive, primitiveManager);
|
|
6362
|
-
var stompSubscription = _this._stompClient.subscribe(url, function (message) {
|
|
6363
|
-
var event = JSON.parse(message.body || "{}");
|
|
6364
|
-
_this.addPublishedEvent(primitiveManager, event);
|
|
6365
|
-
primitiveManager.subject.next(event);
|
|
6366
|
-
});
|
|
6367
|
-
_this.stompSubscriptions.set(primitive, stompSubscription);
|
|
6474
|
+
_this.createStompSubscriptions(domain, service, primitive, primitiveManager);
|
|
6368
6475
|
});
|
|
6369
6476
|
return primitiveManager.subject.asObservable();
|
|
6370
6477
|
}
|
|
6371
6478
|
};
|
|
6372
6479
|
/**
|
|
6373
|
-
* Retorna todos os eventos ouvidos
|
|
6480
|
+
* Retorna todos os eventos ouvidos pela primitiva com os respectivos identificadores.
|
|
6374
6481
|
* @typeParam `<T>` Tipo do evento retornado pela primitiva.
|
|
6375
6482
|
* @param primitive Primitiva que será "observada" pelo client.
|
|
6376
6483
|
* @param identifiers Array com os indentificadores interessados.
|
|
@@ -6405,9 +6512,7 @@ var WebsocketService = /** @class */ (function () {
|
|
|
6405
6512
|
WebsocketService.prototype.addPublishedEvent = function (primitiveManager, event) {
|
|
6406
6513
|
var _this = this;
|
|
6407
6514
|
var identifier = this.getIdentifierFromEvent(primitiveManager.identifierPath, event);
|
|
6408
|
-
var eventIndex = primitiveManager.publishedEvents.findIndex(function (x) {
|
|
6409
|
-
return _this.getIdentifierFromEvent(primitiveManager.identifierPath, x) === identifier;
|
|
6410
|
-
});
|
|
6515
|
+
var eventIndex = primitiveManager.publishedEvents.findIndex(function (x) { return _this.getIdentifierFromEvent(primitiveManager.identifierPath, x) === identifier; });
|
|
6411
6516
|
if (eventIndex !== -1) {
|
|
6412
6517
|
primitiveManager.publishedEvents[eventIndex] = __assign(__assign({}, primitiveManager.publishedEvents[eventIndex]), event);
|
|
6413
6518
|
}
|
|
@@ -6415,6 +6520,14 @@ var WebsocketService = /** @class */ (function () {
|
|
|
6415
6520
|
primitiveManager.publishedEvents.push(event);
|
|
6416
6521
|
}
|
|
6417
6522
|
};
|
|
6523
|
+
WebsocketService.prototype.createStompSubscriptions = function (domain, service, primitive, primitiveManager) {
|
|
6524
|
+
var withTokenUrl = this.getSubscriptionUrlWithToken(domain, service, primitive);
|
|
6525
|
+
this.primitiveManagers.set(primitive, primitiveManager);
|
|
6526
|
+
var stompSubscriptionWithToken = this.createStompSubscription(withTokenUrl, primitiveManager);
|
|
6527
|
+
var withoutTokenUrl = this.getSubscriptionUrlWithoutToken(domain, service, primitive);
|
|
6528
|
+
var stompSubscriptionWithoutToken = this.createStompSubscription(withoutTokenUrl, primitiveManager);
|
|
6529
|
+
this.stompSubscriptions.set(primitive, [stompSubscriptionWithToken, stompSubscriptionWithoutToken]);
|
|
6530
|
+
};
|
|
6418
6531
|
WebsocketService.prototype.getIdentifierFromEvent = function (identifierPath, event) {
|
|
6419
6532
|
var e_2, _a;
|
|
6420
6533
|
var properties = identifierPath.split(".");
|
|
@@ -6440,9 +6553,7 @@ var WebsocketService = /** @class */ (function () {
|
|
|
6440
6553
|
this.isConnecting = true;
|
|
6441
6554
|
this._stompClient.connect({}, function () {
|
|
6442
6555
|
_this.setConnected(true);
|
|
6443
|
-
// console.log('setou false isConnecting');
|
|
6444
6556
|
_this.isConnecting = false;
|
|
6445
|
-
// console.log('connectou dentro do connect cb');
|
|
6446
6557
|
_this.publishOnConnect();
|
|
6447
6558
|
}, function () {
|
|
6448
6559
|
_this.setConnected(false);
|
|
@@ -6476,8 +6587,21 @@ var WebsocketService = /** @class */ (function () {
|
|
|
6476
6587
|
finally { if (e_3) throw e_3.error; }
|
|
6477
6588
|
}
|
|
6478
6589
|
if (observersCount === 0) {
|
|
6479
|
-
this.stompSubscriptions.forEach(function (
|
|
6480
|
-
|
|
6590
|
+
this.stompSubscriptions.forEach(function (stompSubscriptions) {
|
|
6591
|
+
var e_5, _a;
|
|
6592
|
+
try {
|
|
6593
|
+
for (var stompSubscriptions_1 = __values(stompSubscriptions), stompSubscriptions_1_1 = stompSubscriptions_1.next(); !stompSubscriptions_1_1.done; stompSubscriptions_1_1 = stompSubscriptions_1.next()) {
|
|
6594
|
+
var stompSubscription = stompSubscriptions_1_1.value;
|
|
6595
|
+
stompSubscription.unsubscribe();
|
|
6596
|
+
}
|
|
6597
|
+
}
|
|
6598
|
+
catch (e_5_1) { e_5 = { error: e_5_1 }; }
|
|
6599
|
+
finally {
|
|
6600
|
+
try {
|
|
6601
|
+
if (stompSubscriptions_1_1 && !stompSubscriptions_1_1.done && (_a = stompSubscriptions_1.return)) _a.call(stompSubscriptions_1);
|
|
6602
|
+
}
|
|
6603
|
+
finally { if (e_5) throw e_5.error; }
|
|
6604
|
+
}
|
|
6481
6605
|
});
|
|
6482
6606
|
try {
|
|
6483
6607
|
for (var _e = __values(this.primitiveManagers.values()), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
@@ -6507,11 +6631,23 @@ var WebsocketService = /** @class */ (function () {
|
|
|
6507
6631
|
WebsocketService.prototype.setConnected = function (connected) {
|
|
6508
6632
|
this.connected = connected;
|
|
6509
6633
|
};
|
|
6510
|
-
WebsocketService.prototype.
|
|
6634
|
+
WebsocketService.prototype.getSubscriptionUrlWithToken = function (domain, service, primitive) {
|
|
6511
6635
|
var tenant = WebsocketService_1.TOKEN ? WebsocketService_1.TOKEN.username.split("@")[1] : null;
|
|
6512
6636
|
var token = WebsocketService_1.TOKEN ? WebsocketService_1.TOKEN.access_token : null;
|
|
6513
6637
|
return "/topic/" + tenant + "/" + token + "/" + domain + "/" + service + "/" + primitive;
|
|
6514
6638
|
};
|
|
6639
|
+
WebsocketService.prototype.getSubscriptionUrlWithoutToken = function (domain, service, primitive) {
|
|
6640
|
+
var tenant = WebsocketService_1.TOKEN ? WebsocketService_1.TOKEN.username.split("@")[1] : null;
|
|
6641
|
+
return "/topic/" + tenant + "/" + domain + "/" + service + "/" + primitive;
|
|
6642
|
+
};
|
|
6643
|
+
WebsocketService.prototype.createStompSubscription = function (destination, primitiveManager) {
|
|
6644
|
+
var _this = this;
|
|
6645
|
+
return this._stompClient.subscribe(destination, function (message) {
|
|
6646
|
+
var event = JSON.parse(message.body || "{}");
|
|
6647
|
+
_this.addPublishedEvent(primitiveManager, event);
|
|
6648
|
+
primitiveManager.subject.next(event);
|
|
6649
|
+
});
|
|
6650
|
+
};
|
|
6515
6651
|
WebsocketService.prototype.createStompClient = function () {
|
|
6516
6652
|
var ws = new SockJS(WebsocketService_1.WEBSOCKET_URL + "subscription", null, { timeout: WebsocketService_1.CONNECTION_TIMEOUT });
|
|
6517
6653
|
this._stompClient = Stomp.over(ws);
|
|
@@ -6529,12 +6665,10 @@ var WebsocketService = /** @class */ (function () {
|
|
|
6529
6665
|
this._stompClient.disconnect();
|
|
6530
6666
|
var baseUrl = this.getBaseUrl();
|
|
6531
6667
|
if (this.baseUrl !== null && baseUrl != this.baseUrl) {
|
|
6532
|
-
// //console.log('ws disconnected: base url changed', this.baseUrl, ' -> ', baseUrl || 'null');
|
|
6533
6668
|
return;
|
|
6534
6669
|
}
|
|
6535
6670
|
var username = this.getUserName();
|
|
6536
6671
|
if (this.username !== null && username != this.username) {
|
|
6537
|
-
// //console.log('ws disconnected: username changed', this.username, ' -> ', username || 'null');
|
|
6538
6672
|
return;
|
|
6539
6673
|
}
|
|
6540
6674
|
setTimeout(function () {
|
|
@@ -6595,18 +6729,20 @@ var VerifyModulePermission = /** @class */ (function () {
|
|
|
6595
6729
|
/**
|
|
6596
6730
|
* Method to verify if user has permission on a specific module
|
|
6597
6731
|
* @param module Module to verify the permission
|
|
6732
|
+
* @param requestPermission Indicative if must be call the primitive
|
|
6598
6733
|
* @returns An boolean Observable
|
|
6599
6734
|
*/
|
|
6600
|
-
VerifyModulePermission.prototype.hasPermission = function (module) {
|
|
6735
|
+
VerifyModulePermission.prototype.hasPermission = function (module, requestPermission) {
|
|
6601
6736
|
var moduleSubject = VerifyModulePermission_1.subjectsPerModuleMap.get(module);
|
|
6602
|
-
if (!moduleSubject) {
|
|
6737
|
+
if (!moduleSubject || requestPermission) {
|
|
6603
6738
|
var newModuleSubject_1 = new ReplaySubject(1);
|
|
6604
6739
|
VerifyModulePermission_1.subjectsPerModuleMap.set(module, newModuleSubject_1);
|
|
6605
6740
|
this.verifyModulePermissionService
|
|
6606
|
-
.queryModule({ modulo: module })
|
|
6741
|
+
.queryModule({ modulo: module, somenteAtivo: true })
|
|
6607
6742
|
.pipe(take(1))
|
|
6608
6743
|
.subscribe(function (response) {
|
|
6609
|
-
var
|
|
6744
|
+
var _a;
|
|
6745
|
+
var hasPermission = ((_a = response === null || response === void 0 ? void 0 : response.modulos) === null || _a === void 0 ? void 0 : _a.length) > 0;
|
|
6610
6746
|
newModuleSubject_1.next(hasPermission);
|
|
6611
6747
|
}, function (err) {
|
|
6612
6748
|
VerifyModulePermission_1.subjectsPerModuleMap.delete(module);
|
|
@@ -6641,5 +6777,5 @@ var ModulesEnum;
|
|
|
6641
6777
|
* Generated bundle index. Do not edit.
|
|
6642
6778
|
*/
|
|
6643
6779
|
|
|
6644
|
-
export { BankLookup, BreadcrumbComponent, BreadcrumbModule, Breakpoints, CountryLookup, CplTriNotaSaidaE001EndLookup, CplTriNotaSaidaE001PesLookup, CplTriNotaSaidaE001TnsLookup, CplTriNotaSaidaE007UfsLookup, CplTriNotaSaidaE008RaiLookup, CplTriNotaSaidaE015MedLookup, CplTriNotaSaidaE020SnfLookup, CplTriNotaSaidaE024MsgLookup, CplTriNotaSaidaE028CpgLookup, CplTriNotaSaidaE032EdcLookup, CplTriNotaSaidaE051DisLookup, CplTriNotaSaidaE066FpgLookup, CplTriNotaSaidaE070EmpLookup, CplTriNotaSaidaE070FilLookup, CplTriNotaSaidaE075DerLookup, CplTriNotaSaidaE080SerLookup, CplTriNotaSaidaNaturezaReceitaPisCofinsLookup, CplTriNotaSaidaNcmLookup, CplTriNotaSaidaNfEntradaLookup, CplTriNotaSaidaNfSaidaLookup, CurrencyLookup, E001EndLookup, E001PesLookup, E001TnsLookup, E001TnsSupEstLookup, E002TptLookup, E007UfsLookup, E008CepLookup, E008RaiLookup, E012FamLookup, E015MedLookup, E020SnfLookup, E021MotLookup, E023CrpLookup, E024MsgLookup, E027EqiLookup, E027StrLookup, E028CpgLookup, E030AgeLookup, E030BanLookup, E031MoeLookup, E032EdcLookup, E035OcrLookup, E036InsLookup, E039PorLookup, E044CcuFinRatDepLookup, E044CcuLookup, E045PlaLookup, E046HpdLookup, E047NtgLookup, E048FctLookup, E048SfcLookup, E051DisLookup, E066FpgLookup, E067FinLookup, E070EmpLookup, E070EntLookup, E070FilLookup, E073PesLookup, E073VeiLookup, E075DerLookup, E080SerLookup, E082TprLookup, E085PesLookup, E090PesLookup, E091PlfFinRatLookup, E095PesLookup, E099UsuComGerLookup, E140InsLookup, E140NfsLookup, E200LotLookup, E200SerLookup, E205DepLookup, E210DxpE075DerLookup, E210DxpLookup, E301TcrLookup, E403FprLookup, E420IcpLookup, E420IpcLookup, E420OcpLookup, E600CcoLookup, E640LotLookup, EnumLogicalOperator, EquipmentLookup, ErpLookups, ErpLookupsModule, ErpPolling, ExportUtils, FiltersStorageService, FormUtilsService, LigacaoItemFornecedorLookup, LookupValidationUtils, ModulesEnum, NcmLookup, NpsService, ProdutoServicoLookup, QuantidadeDisponivelDemandaLookup, RequisicaoLookup, UnidadeMedidaLookup, UtilsModule, VerifyModulePermission, WebsocketService, naturezaReceitaPisCofins, ErpLookupsService as ɵa, StorageService as ɵb, VerifyModulePermissionService as ɵc };
|
|
6780
|
+
export { BankLookup, BreadcrumbComponent, BreadcrumbModule, Breakpoints, CountryLookup, CplTriNotaSaidaE001EndLookup, CplTriNotaSaidaE001PesLookup, CplTriNotaSaidaE001TnsLookup, CplTriNotaSaidaE007UfsLookup, CplTriNotaSaidaE008RaiLookup, CplTriNotaSaidaE015MedLookup, CplTriNotaSaidaE020SnfLookup, CplTriNotaSaidaE024MsgLookup, CplTriNotaSaidaE028CpgLookup, CplTriNotaSaidaE032EdcLookup, CplTriNotaSaidaE051DisLookup, CplTriNotaSaidaE066FpgLookup, CplTriNotaSaidaE070EmpLookup, CplTriNotaSaidaE070FilLookup, CplTriNotaSaidaE075DerLookup, CplTriNotaSaidaE080SerLookup, CplTriNotaSaidaNaturezaReceitaPisCofinsLookup, CplTriNotaSaidaNcmLookup, CplTriNotaSaidaNfEntradaLookup, CplTriNotaSaidaNfSaidaLookup, CurrencyLookup, E001EndLookup, E001PesLookup, E001TnsLookup, E001TnsSupEstLookup, E002TptLookup, E007UfsLookup, E008CepLookup, E008RaiLookup, E012FamLookup, E015MedLookup, E020SnfLookup, E021MotLookup, E023CrpLookup, E024MsgLookup, E027EqiLookup, E027StrLookup, E028CpgLookup, E030AgeLookup, E030BanLookup, E031MoeLookup, E032EdcLookup, E035OcrLookup, E036InsLookup, E039PorLookup, E044CcuFinRatDepLookup, E044CcuLookup, E045PlaLookup, E046HpdLookup, E047NtgLookup, E048FctLookup, E048SfcLookup, E051DisLookup, E066FpgLookup, E067FinLookup, E070EmpLookup, E070EntLookup, E070FilLookup, E073PesLookup, E073VeiLookup, E075DerLookup, E080SerLookup, E082TprLookup, E085PesLookup, E090PesLookup, E091PlfFinRatLookup, E095PesLookup, E099UsuComGerLookup, E140InsLookup, E140NfsLookup, E200LotLookup, E200SerLookup, E205DepLookup, E210DxpE075DerLookup, E210DxpLookup, E301TcrLookup, E403FprLookup, E420IcpLookup, E420IpcLookup, E420OcpLookup, E600CcoLookup, E640LotLookup, EnumLogicalOperator, EquipmentLookup, ErpLookups, ErpLookupsModule, ErpPolling, ExportUtils, FiltersStorageService, FormUtilsService, LigacaoItemFornecedorLookup, LookupValidationUtils, ModulesEnum, NcmLookup, NpsService, ParametersLookup, ProdutoServicoLookup, QuantidadeDisponivelDemandaLookup, RequisicaoLookup, TypeTaxesLookup, UnidadeMedidaLookup, UtilsModule, VerifyModulePermission, WebsocketService, naturezaReceitaPisCofins, ErpLookupsService as ɵa, StorageService as ɵb, VerifyModulePermissionService as ɵc };
|
|
6645
6781
|
//# sourceMappingURL=senior-gestao-empresarial-angular-components.js.map
|