@senior-gestao-empresarial/angular-components 4.20.4 → 4.22.0-c6f90211-2bfd-46c1-b41f-98ce3aba88b5
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 +175 -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 +6 -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 +33 -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 +46 -33
- package/fesm2015/senior-gestao-empresarial-angular-components.js +156 -35
- package/fesm2015/senior-gestao-empresarial-angular-components.js.map +1 -1
- package/fesm5/senior-gestao-empresarial-angular-components.js +175 -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,23 @@ 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 _this = this;
|
|
6525
|
+
var withUserUrl = this.getSubscriptionWithUserUrl(domain, service, primitive);
|
|
6526
|
+
this.primitiveManagers.set(primitive, primitiveManager);
|
|
6527
|
+
var stompSubscriptionWithUser = this._stompClient.subscribe(withUserUrl, function (message) {
|
|
6528
|
+
var event = JSON.parse(message.body || "{}");
|
|
6529
|
+
_this.addPublishedEvent(primitiveManager, event);
|
|
6530
|
+
primitiveManager.subject.next(event);
|
|
6531
|
+
});
|
|
6532
|
+
var withoutUserUrl = this.getSubscriptionWithoutUserUrl(domain, service, primitive);
|
|
6533
|
+
var stompSubscriptionWithoutUser = this._stompClient.subscribe(withoutUserUrl, function (message) {
|
|
6534
|
+
var event = JSON.parse(message.body || "{}");
|
|
6535
|
+
_this.addPublishedEvent(primitiveManager, event);
|
|
6536
|
+
primitiveManager.subject.next(event);
|
|
6537
|
+
});
|
|
6538
|
+
this.stompSubscriptions.set(primitive, [stompSubscriptionWithUser, stompSubscriptionWithoutUser]);
|
|
6539
|
+
};
|
|
6418
6540
|
WebsocketService.prototype.getIdentifierFromEvent = function (identifierPath, event) {
|
|
6419
6541
|
var e_2, _a;
|
|
6420
6542
|
var properties = identifierPath.split(".");
|
|
@@ -6440,9 +6562,7 @@ var WebsocketService = /** @class */ (function () {
|
|
|
6440
6562
|
this.isConnecting = true;
|
|
6441
6563
|
this._stompClient.connect({}, function () {
|
|
6442
6564
|
_this.setConnected(true);
|
|
6443
|
-
// console.log('setou false isConnecting');
|
|
6444
6565
|
_this.isConnecting = false;
|
|
6445
|
-
// console.log('connectou dentro do connect cb');
|
|
6446
6566
|
_this.publishOnConnect();
|
|
6447
6567
|
}, function () {
|
|
6448
6568
|
_this.setConnected(false);
|
|
@@ -6476,8 +6596,21 @@ var WebsocketService = /** @class */ (function () {
|
|
|
6476
6596
|
finally { if (e_3) throw e_3.error; }
|
|
6477
6597
|
}
|
|
6478
6598
|
if (observersCount === 0) {
|
|
6479
|
-
this.stompSubscriptions.forEach(function (
|
|
6480
|
-
|
|
6599
|
+
this.stompSubscriptions.forEach(function (stompSubscriptions) {
|
|
6600
|
+
var e_5, _a;
|
|
6601
|
+
try {
|
|
6602
|
+
for (var stompSubscriptions_1 = __values(stompSubscriptions), stompSubscriptions_1_1 = stompSubscriptions_1.next(); !stompSubscriptions_1_1.done; stompSubscriptions_1_1 = stompSubscriptions_1.next()) {
|
|
6603
|
+
var stompSubscription = stompSubscriptions_1_1.value;
|
|
6604
|
+
stompSubscription.unsubscribe();
|
|
6605
|
+
}
|
|
6606
|
+
}
|
|
6607
|
+
catch (e_5_1) { e_5 = { error: e_5_1 }; }
|
|
6608
|
+
finally {
|
|
6609
|
+
try {
|
|
6610
|
+
if (stompSubscriptions_1_1 && !stompSubscriptions_1_1.done && (_a = stompSubscriptions_1.return)) _a.call(stompSubscriptions_1);
|
|
6611
|
+
}
|
|
6612
|
+
finally { if (e_5) throw e_5.error; }
|
|
6613
|
+
}
|
|
6481
6614
|
});
|
|
6482
6615
|
try {
|
|
6483
6616
|
for (var _e = __values(this.primitiveManagers.values()), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
@@ -6507,11 +6640,15 @@ var WebsocketService = /** @class */ (function () {
|
|
|
6507
6640
|
WebsocketService.prototype.setConnected = function (connected) {
|
|
6508
6641
|
this.connected = connected;
|
|
6509
6642
|
};
|
|
6510
|
-
WebsocketService.prototype.
|
|
6643
|
+
WebsocketService.prototype.getSubscriptionWithUserUrl = function (domain, service, primitive) {
|
|
6511
6644
|
var tenant = WebsocketService_1.TOKEN ? WebsocketService_1.TOKEN.username.split("@")[1] : null;
|
|
6512
6645
|
var token = WebsocketService_1.TOKEN ? WebsocketService_1.TOKEN.access_token : null;
|
|
6513
6646
|
return "/topic/" + tenant + "/" + token + "/" + domain + "/" + service + "/" + primitive;
|
|
6514
6647
|
};
|
|
6648
|
+
WebsocketService.prototype.getSubscriptionWithoutUserUrl = function (domain, service, primitive) {
|
|
6649
|
+
var tenant = WebsocketService_1.TOKEN ? WebsocketService_1.TOKEN.username.split("@")[1] : null;
|
|
6650
|
+
return "/topic/" + tenant + "/" + domain + "/" + service + "/" + primitive;
|
|
6651
|
+
};
|
|
6515
6652
|
WebsocketService.prototype.createStompClient = function () {
|
|
6516
6653
|
var ws = new SockJS(WebsocketService_1.WEBSOCKET_URL + "subscription", null, { timeout: WebsocketService_1.CONNECTION_TIMEOUT });
|
|
6517
6654
|
this._stompClient = Stomp.over(ws);
|
|
@@ -6529,12 +6666,10 @@ var WebsocketService = /** @class */ (function () {
|
|
|
6529
6666
|
this._stompClient.disconnect();
|
|
6530
6667
|
var baseUrl = this.getBaseUrl();
|
|
6531
6668
|
if (this.baseUrl !== null && baseUrl != this.baseUrl) {
|
|
6532
|
-
// //console.log('ws disconnected: base url changed', this.baseUrl, ' -> ', baseUrl || 'null');
|
|
6533
6669
|
return;
|
|
6534
6670
|
}
|
|
6535
6671
|
var username = this.getUserName();
|
|
6536
6672
|
if (this.username !== null && username != this.username) {
|
|
6537
|
-
// //console.log('ws disconnected: username changed', this.username, ' -> ', username || 'null');
|
|
6538
6673
|
return;
|
|
6539
6674
|
}
|
|
6540
6675
|
setTimeout(function () {
|
|
@@ -6595,18 +6730,20 @@ var VerifyModulePermission = /** @class */ (function () {
|
|
|
6595
6730
|
/**
|
|
6596
6731
|
* Method to verify if user has permission on a specific module
|
|
6597
6732
|
* @param module Module to verify the permission
|
|
6733
|
+
* @param requestPermission Indicative if must be call the primitive
|
|
6598
6734
|
* @returns An boolean Observable
|
|
6599
6735
|
*/
|
|
6600
|
-
VerifyModulePermission.prototype.hasPermission = function (module) {
|
|
6736
|
+
VerifyModulePermission.prototype.hasPermission = function (module, requestPermission) {
|
|
6601
6737
|
var moduleSubject = VerifyModulePermission_1.subjectsPerModuleMap.get(module);
|
|
6602
|
-
if (!moduleSubject) {
|
|
6738
|
+
if (!moduleSubject || requestPermission) {
|
|
6603
6739
|
var newModuleSubject_1 = new ReplaySubject(1);
|
|
6604
6740
|
VerifyModulePermission_1.subjectsPerModuleMap.set(module, newModuleSubject_1);
|
|
6605
6741
|
this.verifyModulePermissionService
|
|
6606
|
-
.queryModule({ modulo: module })
|
|
6742
|
+
.queryModule({ modulo: module, somenteAtivo: true })
|
|
6607
6743
|
.pipe(take(1))
|
|
6608
6744
|
.subscribe(function (response) {
|
|
6609
|
-
var
|
|
6745
|
+
var _a;
|
|
6746
|
+
var hasPermission = ((_a = response === null || response === void 0 ? void 0 : response.modulos) === null || _a === void 0 ? void 0 : _a.length) > 0;
|
|
6610
6747
|
newModuleSubject_1.next(hasPermission);
|
|
6611
6748
|
}, function (err) {
|
|
6612
6749
|
VerifyModulePermission_1.subjectsPerModuleMap.delete(module);
|
|
@@ -6641,5 +6778,5 @@ var ModulesEnum;
|
|
|
6641
6778
|
* Generated bundle index. Do not edit.
|
|
6642
6779
|
*/
|
|
6643
6780
|
|
|
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 };
|
|
6781
|
+
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
6782
|
//# sourceMappingURL=senior-gestao-empresarial-angular-components.js.map
|