@senior-gestao-empresarial/angular-components 6.6.0 → 6.7.0

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.
@@ -0,0 +1,13 @@
1
+ export var EnumPerfilTributarioSegmento;
2
+ (function (EnumPerfilTributarioSegmento) {
3
+ EnumPerfilTributarioSegmento["INDUSTRIA"] = "INDUSTRIA";
4
+ EnumPerfilTributarioSegmento["COMERCIO"] = "COMERCIO";
5
+ EnumPerfilTributarioSegmento["SERVICO"] = "SERVICO";
6
+ EnumPerfilTributarioSegmento["DISTRIBUIDOR"] = "DISTRIBUIDOR";
7
+ EnumPerfilTributarioSegmento["COOPERATIVA"] = "COOPERATIVA";
8
+ EnumPerfilTributarioSegmento["PRODUTOR_RURAL"] = "PRODUTOR_RURAL";
9
+ EnumPerfilTributarioSegmento["FINANCEIRA"] = "FINANCEIRA";
10
+ EnumPerfilTributarioSegmento["IMOBILIARIA"] = "IMOBILIARIA";
11
+ EnumPerfilTributarioSegmento["CONSTRUCAO_CIVIL"] = "CONSTRUCAO_CIVIL";
12
+ })(EnumPerfilTributarioSegmento || (EnumPerfilTributarioSegmento = {}));
13
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW51bS1wZXJmaWwtdHJpYnV0YXJpby1zZWdtZW50by5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BzZW5pb3ItZ2VzdGFvLWVtcHJlc2FyaWFsL2FuZ3VsYXItY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbImNvcmUvZW51bXMvZW51bS1wZXJmaWwtdHJpYnV0YXJpby1zZWdtZW50by50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQU4sSUFBWSw0QkFVWDtBQVZELFdBQVksNEJBQTRCO0lBQ3BDLHVEQUF1QixDQUFBO0lBQ3ZCLHFEQUFxQixDQUFBO0lBQ3JCLG1EQUFtQixDQUFBO0lBQ25CLDZEQUE2QixDQUFBO0lBQzdCLDJEQUEyQixDQUFBO0lBQzNCLGlFQUFpQyxDQUFBO0lBQ2pDLHlEQUF5QixDQUFBO0lBQ3pCLDJEQUEyQixDQUFBO0lBQzNCLHFFQUFxQyxDQUFBO0FBQ3pDLENBQUMsRUFWVyw0QkFBNEIsS0FBNUIsNEJBQTRCLFFBVXZDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGVudW0gRW51bVBlcmZpbFRyaWJ1dGFyaW9TZWdtZW50byB7XG4gICAgSU5EVVNUUklBID0gXCJJTkRVU1RSSUFcIixcbiAgICBDT01FUkNJTyA9IFwiQ09NRVJDSU9cIixcbiAgICBTRVJWSUNPID0gXCJTRVJWSUNPXCIsXG4gICAgRElTVFJJQlVJRE9SID0gXCJESVNUUklCVUlET1JcIixcbiAgICBDT09QRVJBVElWQSA9IFwiQ09PUEVSQVRJVkFcIixcbiAgICBQUk9EVVRPUl9SVVJBTCA9IFwiUFJPRFVUT1JfUlVSQUxcIixcbiAgICBGSU5BTkNFSVJBID0gXCJGSU5BTkNFSVJBXCIsXG4gICAgSU1PQklMSUFSSUEgPSBcIklNT0JJTElBUklBXCIsXG4gICAgQ09OU1RSVUNBT19DSVZJTCA9IFwiQ09OU1RSVUNBT19DSVZJTFwiLFxufVxuIl19
@@ -5701,6 +5701,85 @@ NotaFiscalEntradaLookup = __decorate([
5701
5701
  Injectable()
5702
5702
  ], NotaFiscalEntradaLookup);
5703
5703
 
5704
+ var EnumPerfilTributarioSegmento;
5705
+ (function (EnumPerfilTributarioSegmento) {
5706
+ EnumPerfilTributarioSegmento["INDUSTRIA"] = "INDUSTRIA";
5707
+ EnumPerfilTributarioSegmento["COMERCIO"] = "COMERCIO";
5708
+ EnumPerfilTributarioSegmento["SERVICO"] = "SERVICO";
5709
+ EnumPerfilTributarioSegmento["DISTRIBUIDOR"] = "DISTRIBUIDOR";
5710
+ EnumPerfilTributarioSegmento["COOPERATIVA"] = "COOPERATIVA";
5711
+ EnumPerfilTributarioSegmento["PRODUTOR_RURAL"] = "PRODUTOR_RURAL";
5712
+ EnumPerfilTributarioSegmento["FINANCEIRA"] = "FINANCEIRA";
5713
+ EnumPerfilTributarioSegmento["IMOBILIARIA"] = "IMOBILIARIA";
5714
+ EnumPerfilTributarioSegmento["CONSTRUCAO_CIVIL"] = "CONSTRUCAO_CIVIL";
5715
+ })(EnumPerfilTributarioSegmento || (EnumPerfilTributarioSegmento = {}));
5716
+
5717
+ const getFields = (translateService) => {
5718
+ return [
5719
+ {
5720
+ name: "descricao",
5721
+ type: FieldType.String,
5722
+ },
5723
+ {
5724
+ name: "tipoPerfilTributarioSegmento",
5725
+ type: FieldType.Enum,
5726
+ options: [
5727
+ {
5728
+ label: translateService.instant("erpx_cpl_imp.impostos.enum_segmento_industria"),
5729
+ value: EnumPerfilTributarioSegmento.INDUSTRIA,
5730
+ },
5731
+ {
5732
+ label: translateService.instant("erpx_cpl_imp.impostos.enum_segmento_comercio"),
5733
+ value: EnumPerfilTributarioSegmento.COMERCIO,
5734
+ },
5735
+ {
5736
+ label: translateService.instant("erpx_cpl_imp.impostos.enum_segmento_servico"),
5737
+ value: EnumPerfilTributarioSegmento.SERVICO,
5738
+ },
5739
+ {
5740
+ label: translateService.instant("erpx_cpl_imp.impostos.enum_segmento_distribuidor"),
5741
+ value: EnumPerfilTributarioSegmento.DISTRIBUIDOR,
5742
+ },
5743
+ {
5744
+ label: translateService.instant("erpx_cpl_imp.impostos.enum_segmento_cooperativa"),
5745
+ value: EnumPerfilTributarioSegmento.COOPERATIVA,
5746
+ },
5747
+ {
5748
+ label: translateService.instant("erpx_cpl_imp.impostos.enum_segmento_produtor_rural"),
5749
+ value: EnumPerfilTributarioSegmento.PRODUTOR_RURAL,
5750
+ },
5751
+ {
5752
+ label: translateService.instant("erpx_cpl_imp.impostos.enum_segmento_financeira"),
5753
+ value: EnumPerfilTributarioSegmento.FINANCEIRA,
5754
+ },
5755
+ {
5756
+ label: translateService.instant("erpx_cpl_imp.impostos.enum_segmento_imobiliaria"),
5757
+ value: EnumPerfilTributarioSegmento.IMOBILIARIA,
5758
+ },
5759
+ {
5760
+ label: translateService.instant("erpx_cpl_imp.impostos.enum_segmento_construcao_civil"),
5761
+ value: EnumPerfilTributarioSegmento.CONSTRUCAO_CIVIL,
5762
+ },
5763
+ ],
5764
+ },
5765
+ ];
5766
+ };
5767
+ const ɵ0 = getFields;
5768
+ let SegmentoLookup = class SegmentoLookup extends ErpLookups {
5769
+ constructor(lookupService, translate) {
5770
+ super(lookupService, translate, "segmento", getFields(translate), getFields(translate), getFields(translate), "erpx_cpl_imp", "impostos");
5771
+ this.lookupService = lookupService;
5772
+ this.translate = translate;
5773
+ }
5774
+ };
5775
+ SegmentoLookup.ctorParameters = () => [
5776
+ { type: ErpLookupsService },
5777
+ { type: TranslateService }
5778
+ ];
5779
+ SegmentoLookup = __decorate([
5780
+ Injectable()
5781
+ ], SegmentoLookup);
5782
+
5704
5783
  let ErpLookupsModule = class ErpLookupsModule {
5705
5784
  };
5706
5785
  ErpLookupsModule = __decorate([
@@ -5813,7 +5892,8 @@ ErpLookupsModule = __decorate([
5813
5892
  E069GreLookup,
5814
5893
  E501TcpLookup,
5815
5894
  AgreementLookup,
5816
- NotaFiscalEntradaLookup
5895
+ NotaFiscalEntradaLookup,
5896
+ SegmentoLookup
5817
5897
  ],
5818
5898
  declarations: [],
5819
5899
  exports: [],
@@ -6799,5 +6879,5 @@ var ModulesEnum;
6799
6879
  * Generated bundle index. Do not edit.
6800
6880
  */
6801
6881
 
6802
- 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 };
6882
+ 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 };
6803
6883
  //# sourceMappingURL=senior-gestao-empresarial-angular-components.js.map