@senior-gestao-empresarial/angular-components 6.6.0 → 6.7.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 +86 -1
- 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/segmento-lookup.d.ts +8 -0
- package/components/lookups/index.d.ts +1 -0
- package/core/enums/enum-perfil-tributario-segmento.d.ts +11 -0
- package/esm2015/components/lookups/entities/segmento-lookup.js +75 -0
- package/esm2015/components/lookups/erp-lookups.module.js +4 -2
- package/esm2015/components/lookups/index.js +2 -1
- package/esm2015/core/enums/enum-perfil-tributario-segmento.js +13 -0
- package/esm5/components/lookups/entities/segmento-lookup.js +78 -0
- package/esm5/components/lookups/erp-lookups.module.js +4 -2
- package/esm5/components/lookups/index.js +2 -1
- package/esm5/core/enums/enum-perfil-tributario-segmento.js +13 -0
- package/fesm2015/senior-gestao-empresarial-angular-components.js +82 -2
- package/fesm2015/senior-gestao-empresarial-angular-components.js.map +1 -1
- package/fesm5/senior-gestao-empresarial-angular-components.js +85 -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
|
@@ -6033,6 +6033,88 @@ var NotaFiscalEntradaLookup = /** @class */ (function (_super) {
|
|
|
6033
6033
|
return NotaFiscalEntradaLookup;
|
|
6034
6034
|
}(ErpLookups));
|
|
6035
6035
|
|
|
6036
|
+
var EnumPerfilTributarioSegmento;
|
|
6037
|
+
(function (EnumPerfilTributarioSegmento) {
|
|
6038
|
+
EnumPerfilTributarioSegmento["INDUSTRIA"] = "INDUSTRIA";
|
|
6039
|
+
EnumPerfilTributarioSegmento["COMERCIO"] = "COMERCIO";
|
|
6040
|
+
EnumPerfilTributarioSegmento["SERVICO"] = "SERVICO";
|
|
6041
|
+
EnumPerfilTributarioSegmento["DISTRIBUIDOR"] = "DISTRIBUIDOR";
|
|
6042
|
+
EnumPerfilTributarioSegmento["COOPERATIVA"] = "COOPERATIVA";
|
|
6043
|
+
EnumPerfilTributarioSegmento["PRODUTOR_RURAL"] = "PRODUTOR_RURAL";
|
|
6044
|
+
EnumPerfilTributarioSegmento["FINANCEIRA"] = "FINANCEIRA";
|
|
6045
|
+
EnumPerfilTributarioSegmento["IMOBILIARIA"] = "IMOBILIARIA";
|
|
6046
|
+
EnumPerfilTributarioSegmento["CONSTRUCAO_CIVIL"] = "CONSTRUCAO_CIVIL";
|
|
6047
|
+
})(EnumPerfilTributarioSegmento || (EnumPerfilTributarioSegmento = {}));
|
|
6048
|
+
|
|
6049
|
+
var getFields = function (translateService) {
|
|
6050
|
+
return [
|
|
6051
|
+
{
|
|
6052
|
+
name: "descricao",
|
|
6053
|
+
type: FieldType.String,
|
|
6054
|
+
},
|
|
6055
|
+
{
|
|
6056
|
+
name: "tipoPerfilTributarioSegmento",
|
|
6057
|
+
type: FieldType.Enum,
|
|
6058
|
+
options: [
|
|
6059
|
+
{
|
|
6060
|
+
label: translateService.instant("erpx_cpl_imp.impostos.enum_perfil_tributario_segmento_industria"),
|
|
6061
|
+
value: EnumPerfilTributarioSegmento.INDUSTRIA,
|
|
6062
|
+
},
|
|
6063
|
+
{
|
|
6064
|
+
label: translateService.instant("erpx_cpl_imp.impostos.enum_perfil_tributario_segmento_comercio"),
|
|
6065
|
+
value: EnumPerfilTributarioSegmento.COMERCIO,
|
|
6066
|
+
},
|
|
6067
|
+
{
|
|
6068
|
+
label: translateService.instant("erpx_cpl_imp.impostos.enum_perfil_tributario_segmento_servico"),
|
|
6069
|
+
value: EnumPerfilTributarioSegmento.SERVICO,
|
|
6070
|
+
},
|
|
6071
|
+
{
|
|
6072
|
+
label: translateService.instant("erpx_cpl_imp.impostos.enum_perfil_tributario_segmento_distribuidor"),
|
|
6073
|
+
value: EnumPerfilTributarioSegmento.DISTRIBUIDOR,
|
|
6074
|
+
},
|
|
6075
|
+
{
|
|
6076
|
+
label: translateService.instant("erpx_cpl_imp.impostos.enum_perfil_tributario_segmento_cooperativa"),
|
|
6077
|
+
value: EnumPerfilTributarioSegmento.COOPERATIVA,
|
|
6078
|
+
},
|
|
6079
|
+
{
|
|
6080
|
+
label: translateService.instant("erpx_cpl_imp.impostos.enum_perfil_tributario_segmento_produtor_rural"),
|
|
6081
|
+
value: EnumPerfilTributarioSegmento.PRODUTOR_RURAL,
|
|
6082
|
+
},
|
|
6083
|
+
{
|
|
6084
|
+
label: translateService.instant("erpx_cpl_imp.impostos.enum_perfil_tributario_segmento_financeira"),
|
|
6085
|
+
value: EnumPerfilTributarioSegmento.FINANCEIRA,
|
|
6086
|
+
},
|
|
6087
|
+
{
|
|
6088
|
+
label: translateService.instant("erpx_cpl_imp.impostos.enum_perfil_tributario_segmento_imobiliaria"),
|
|
6089
|
+
value: EnumPerfilTributarioSegmento.IMOBILIARIA,
|
|
6090
|
+
},
|
|
6091
|
+
{
|
|
6092
|
+
label: translateService.instant("erpx_cpl_imp.impostos.enum_perfil_tributario_segmento_construcao_civil"),
|
|
6093
|
+
value: EnumPerfilTributarioSegmento.CONSTRUCAO_CIVIL,
|
|
6094
|
+
},
|
|
6095
|
+
],
|
|
6096
|
+
},
|
|
6097
|
+
];
|
|
6098
|
+
};
|
|
6099
|
+
var ɵ0 = getFields;
|
|
6100
|
+
var SegmentoLookup = /** @class */ (function (_super) {
|
|
6101
|
+
__extends(SegmentoLookup, _super);
|
|
6102
|
+
function SegmentoLookup(lookupService, translate) {
|
|
6103
|
+
var _this = _super.call(this, lookupService, translate, "segmento", getFields(translate), getFields(translate), getFields(translate), "erpx_cpl_imp", "impostos") || this;
|
|
6104
|
+
_this.lookupService = lookupService;
|
|
6105
|
+
_this.translate = translate;
|
|
6106
|
+
return _this;
|
|
6107
|
+
}
|
|
6108
|
+
SegmentoLookup.ctorParameters = function () { return [
|
|
6109
|
+
{ type: ErpLookupsService },
|
|
6110
|
+
{ type: TranslateService }
|
|
6111
|
+
]; };
|
|
6112
|
+
SegmentoLookup = __decorate([
|
|
6113
|
+
Injectable()
|
|
6114
|
+
], SegmentoLookup);
|
|
6115
|
+
return SegmentoLookup;
|
|
6116
|
+
}(ErpLookups));
|
|
6117
|
+
|
|
6036
6118
|
var ErpLookupsModule = /** @class */ (function () {
|
|
6037
6119
|
function ErpLookupsModule() {
|
|
6038
6120
|
}
|
|
@@ -6146,7 +6228,8 @@ var ErpLookupsModule = /** @class */ (function () {
|
|
|
6146
6228
|
E069GreLookup,
|
|
6147
6229
|
E501TcpLookup,
|
|
6148
6230
|
AgreementLookup,
|
|
6149
|
-
NotaFiscalEntradaLookup
|
|
6231
|
+
NotaFiscalEntradaLookup,
|
|
6232
|
+
SegmentoLookup
|
|
6150
6233
|
],
|
|
6151
6234
|
declarations: [],
|
|
6152
6235
|
exports: [],
|
|
@@ -7304,5 +7387,5 @@ var ModulesEnum;
|
|
|
7304
7387
|
* Generated bundle index. Do not edit.
|
|
7305
7388
|
*/
|
|
7306
7389
|
|
|
7307
|
-
export { AgreementLookup, 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, DocumentoLookup, 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, E069GreLookup, E070EmpLookup, E070EntLookup, E070FilLookup, E073PesLookup, E073VeiLookup, E075DerLookup, E080SerLookup, E081TabLookup, E082TprLookup, E085PesLookup, E090HrpComGerLookup, E090PesLookup, E091PlfFinRatLookup, E095PesLookup, E099UsuComGerLookup, E099UsuSupCprLookup, E140InsLookup, E140NfsLookup, E200LotLookup, E200SerLookup, E205DepLookup, E210DxpE075DerLookup, E210DxpLookup, E301TcrLookup, E403FprLookup, E420IcpLookup, E420IpcLookup, E420OcpLookup, E501TcpLookup, E600CcoLookup, E640LotLookup, EnumLogicalOperator, EquipmentLookup, ErpLookups, ErpLookupsModule, ErpPolling, ExportUtils, FiltersStorageService, FormUtilsService, HTTP_STATUS_CODE, LigacaoItemFornecedorLookup, LookupValidationUtils, ModulesEnum, NcmLookup, NotaFiscalEntradaLookup, NpsService, ParametersLookup, ProdutoServicoLookup, QuantidadeDisponivelDemandaLookup, RequisicaoLookup, TypeTaxesLookup, UnidadeMedidaLookup, UtilsModule, VerifyModulePermission, WebsocketService, naturezaReceitaPisCofins, ErpLookupsService as ɵa, StorageService as ɵb, VerifyModulePermissionService as ɵc };
|
|
7390
|
+
export { AgreementLookup, 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, DocumentoLookup, 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, E069GreLookup, E070EmpLookup, E070EntLookup, E070FilLookup, E073PesLookup, E073VeiLookup, E075DerLookup, E080SerLookup, E081TabLookup, E082TprLookup, E085PesLookup, E090HrpComGerLookup, E090PesLookup, E091PlfFinRatLookup, E095PesLookup, E099UsuComGerLookup, E099UsuSupCprLookup, E140InsLookup, E140NfsLookup, E200LotLookup, E200SerLookup, E205DepLookup, E210DxpE075DerLookup, E210DxpLookup, E301TcrLookup, E403FprLookup, E420IcpLookup, E420IpcLookup, E420OcpLookup, E501TcpLookup, E600CcoLookup, E640LotLookup, EnumLogicalOperator, EquipmentLookup, ErpLookups, ErpLookupsModule, ErpPolling, ExportUtils, FiltersStorageService, FormUtilsService, HTTP_STATUS_CODE, LigacaoItemFornecedorLookup, LookupValidationUtils, ModulesEnum, NcmLookup, NotaFiscalEntradaLookup, NpsService, ParametersLookup, ProdutoServicoLookup, QuantidadeDisponivelDemandaLookup, RequisicaoLookup, SegmentoLookup, TypeTaxesLookup, UnidadeMedidaLookup, UtilsModule, VerifyModulePermission, WebsocketService, naturezaReceitaPisCofins, ɵ0, ErpLookupsService as ɵa, StorageService as ɵb, VerifyModulePermissionService as ɵc };
|
|
7308
7391
|
//# sourceMappingURL=senior-gestao-empresarial-angular-components.js.map
|