@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
|
@@ -5629,6 +5629,75 @@ var ParametersLookup = /** @class */ (function (_super) {
|
|
|
5629
5629
|
return ParametersLookup;
|
|
5630
5630
|
}(ErpLookups));
|
|
5631
5631
|
|
|
5632
|
+
var BeneficioFiscalLookup = /** @class */ (function (_super) {
|
|
5633
|
+
__extends(BeneficioFiscalLookup, _super);
|
|
5634
|
+
function BeneficioFiscalLookup(lookupService, translate) {
|
|
5635
|
+
var _this = _super.call(this, lookupService, translate, "beneficioFiscal", [
|
|
5636
|
+
{
|
|
5637
|
+
name: "codigo",
|
|
5638
|
+
type: FieldType.String
|
|
5639
|
+
},
|
|
5640
|
+
{
|
|
5641
|
+
name: "descricao",
|
|
5642
|
+
type: FieldType.String
|
|
5643
|
+
},
|
|
5644
|
+
], [
|
|
5645
|
+
{
|
|
5646
|
+
name: "codigo",
|
|
5647
|
+
type: FieldType.String
|
|
5648
|
+
},
|
|
5649
|
+
{
|
|
5650
|
+
name: "descricao",
|
|
5651
|
+
type: FieldType.String
|
|
5652
|
+
},
|
|
5653
|
+
{
|
|
5654
|
+
name: "abreviatura",
|
|
5655
|
+
type: FieldType.String
|
|
5656
|
+
},
|
|
5657
|
+
{
|
|
5658
|
+
name: "vigenciaInicial",
|
|
5659
|
+
type: FieldType.String
|
|
5660
|
+
},
|
|
5661
|
+
{
|
|
5662
|
+
name: "vigenciaFinal",
|
|
5663
|
+
type: FieldType.String
|
|
5664
|
+
},
|
|
5665
|
+
], [
|
|
5666
|
+
{
|
|
5667
|
+
name: "codigo",
|
|
5668
|
+
type: FieldType.String
|
|
5669
|
+
},
|
|
5670
|
+
{
|
|
5671
|
+
name: "descricao",
|
|
5672
|
+
type: FieldType.String
|
|
5673
|
+
},
|
|
5674
|
+
{
|
|
5675
|
+
name: "abreviatura",
|
|
5676
|
+
type: FieldType.String
|
|
5677
|
+
},
|
|
5678
|
+
{
|
|
5679
|
+
name: "vigenciaInicial",
|
|
5680
|
+
type: FieldType.String
|
|
5681
|
+
},
|
|
5682
|
+
{
|
|
5683
|
+
name: "vigenciaFinal",
|
|
5684
|
+
type: FieldType.String
|
|
5685
|
+
},
|
|
5686
|
+
], "erpx_cpl_imp", "impostos") || this;
|
|
5687
|
+
_this.lookupService = lookupService;
|
|
5688
|
+
_this.translate = translate;
|
|
5689
|
+
return _this;
|
|
5690
|
+
}
|
|
5691
|
+
BeneficioFiscalLookup.ctorParameters = function () { return [
|
|
5692
|
+
{ type: ErpLookupsService },
|
|
5693
|
+
{ type: TranslateService }
|
|
5694
|
+
]; };
|
|
5695
|
+
BeneficioFiscalLookup = __decorate([
|
|
5696
|
+
Injectable()
|
|
5697
|
+
], BeneficioFiscalLookup);
|
|
5698
|
+
return BeneficioFiscalLookup;
|
|
5699
|
+
}(ErpLookups));
|
|
5700
|
+
|
|
5632
5701
|
var ErpLookupsModule = /** @class */ (function () {
|
|
5633
5702
|
function ErpLookupsModule() {
|
|
5634
5703
|
}
|
|
@@ -5733,7 +5802,8 @@ var ErpLookupsModule = /** @class */ (function () {
|
|
|
5733
5802
|
CountryLookup,
|
|
5734
5803
|
BankLookup,
|
|
5735
5804
|
TypeTaxesLookup,
|
|
5736
|
-
ParametersLookup
|
|
5805
|
+
ParametersLookup,
|
|
5806
|
+
BeneficioFiscalLookup
|
|
5737
5807
|
],
|
|
5738
5808
|
declarations: [],
|
|
5739
5809
|
exports: [],
|
|
@@ -6849,5 +6919,5 @@ var ModulesEnum;
|
|
|
6849
6919
|
* Generated bundle index. Do not edit.
|
|
6850
6920
|
*/
|
|
6851
6921
|
|
|
6852
|
-
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 };
|
|
6922
|
+
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 };
|
|
6853
6923
|
//# sourceMappingURL=senior-gestao-empresarial-angular-components.js.map
|