@senior-gestao-empresarial/angular-components 4.23.0 → 4.23.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 +72 -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/beneficio-fiscal-lookup.d.ts +8 -0
- package/components/lookups/index.d.ts +1 -0
- package/esm2015/components/lookups/entities/beneficio-fiscal-lookup.js +73 -0
- package/esm2015/components/lookups/erp-lookups.module.js +4 -2
- package/esm2015/components/lookups/index.js +2 -1
- package/esm5/components/lookups/entities/beneficio-fiscal-lookup.js +76 -0
- package/esm5/components/lookups/erp-lookups.module.js +4 -2
- package/esm5/components/lookups/index.js +2 -1
- package/fesm2015/senior-gestao-empresarial-angular-components.js +69 -2
- package/fesm2015/senior-gestao-empresarial-angular-components.js.map +1 -1
- package/fesm5/senior-gestao-empresarial-angular-components.js +72 -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
|
@@ -5321,6 +5321,72 @@ ParametersLookup = __decorate([
|
|
|
5321
5321
|
Injectable()
|
|
5322
5322
|
], ParametersLookup);
|
|
5323
5323
|
|
|
5324
|
+
let BeneficioFiscalLookup = class BeneficioFiscalLookup extends ErpLookups {
|
|
5325
|
+
constructor(lookupService, translate) {
|
|
5326
|
+
super(lookupService, translate, "beneficioFiscal", [
|
|
5327
|
+
{
|
|
5328
|
+
name: "codigo",
|
|
5329
|
+
type: FieldType.String
|
|
5330
|
+
},
|
|
5331
|
+
{
|
|
5332
|
+
name: "descricao",
|
|
5333
|
+
type: FieldType.String
|
|
5334
|
+
},
|
|
5335
|
+
], [
|
|
5336
|
+
{
|
|
5337
|
+
name: "codigo",
|
|
5338
|
+
type: FieldType.String
|
|
5339
|
+
},
|
|
5340
|
+
{
|
|
5341
|
+
name: "descricao",
|
|
5342
|
+
type: FieldType.String
|
|
5343
|
+
},
|
|
5344
|
+
{
|
|
5345
|
+
name: "abreviatura",
|
|
5346
|
+
type: FieldType.String
|
|
5347
|
+
},
|
|
5348
|
+
{
|
|
5349
|
+
name: "vigenciaInicial",
|
|
5350
|
+
type: FieldType.String
|
|
5351
|
+
},
|
|
5352
|
+
{
|
|
5353
|
+
name: "vigenciaFinal",
|
|
5354
|
+
type: FieldType.String
|
|
5355
|
+
},
|
|
5356
|
+
], [
|
|
5357
|
+
{
|
|
5358
|
+
name: "codigo",
|
|
5359
|
+
type: FieldType.String
|
|
5360
|
+
},
|
|
5361
|
+
{
|
|
5362
|
+
name: "descricao",
|
|
5363
|
+
type: FieldType.String
|
|
5364
|
+
},
|
|
5365
|
+
{
|
|
5366
|
+
name: "abreviatura",
|
|
5367
|
+
type: FieldType.String
|
|
5368
|
+
},
|
|
5369
|
+
{
|
|
5370
|
+
name: "vigenciaInicial",
|
|
5371
|
+
type: FieldType.String
|
|
5372
|
+
},
|
|
5373
|
+
{
|
|
5374
|
+
name: "vigenciaFinal",
|
|
5375
|
+
type: FieldType.String
|
|
5376
|
+
},
|
|
5377
|
+
], "erpx_cpl_imp", "impostos");
|
|
5378
|
+
this.lookupService = lookupService;
|
|
5379
|
+
this.translate = translate;
|
|
5380
|
+
}
|
|
5381
|
+
};
|
|
5382
|
+
BeneficioFiscalLookup.ctorParameters = () => [
|
|
5383
|
+
{ type: ErpLookupsService },
|
|
5384
|
+
{ type: TranslateService }
|
|
5385
|
+
];
|
|
5386
|
+
BeneficioFiscalLookup = __decorate([
|
|
5387
|
+
Injectable()
|
|
5388
|
+
], BeneficioFiscalLookup);
|
|
5389
|
+
|
|
5324
5390
|
let ErpLookupsModule = class ErpLookupsModule {
|
|
5325
5391
|
};
|
|
5326
5392
|
ErpLookupsModule = __decorate([
|
|
@@ -5424,7 +5490,8 @@ ErpLookupsModule = __decorate([
|
|
|
5424
5490
|
CountryLookup,
|
|
5425
5491
|
BankLookup,
|
|
5426
5492
|
TypeTaxesLookup,
|
|
5427
|
-
ParametersLookup
|
|
5493
|
+
ParametersLookup,
|
|
5494
|
+
BeneficioFiscalLookup
|
|
5428
5495
|
],
|
|
5429
5496
|
declarations: [],
|
|
5430
5497
|
exports: [],
|
|
@@ -6346,5 +6413,5 @@ var ModulesEnum;
|
|
|
6346
6413
|
* Generated bundle index. Do not edit.
|
|
6347
6414
|
*/
|
|
6348
6415
|
|
|
6349
|
-
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 };
|
|
6416
|
+
export { BankLookup, BeneficioFiscalLookup, 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 };
|
|
6350
6417
|
//# sourceMappingURL=senior-gestao-empresarial-angular-components.js.map
|