@senior-gestao-empresarial/angular-components 6.5.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.
Files changed (24) hide show
  1. package/bundles/senior-gestao-empresarial-angular-components.umd.js +111 -1
  2. package/bundles/senior-gestao-empresarial-angular-components.umd.js.map +1 -1
  3. package/bundles/senior-gestao-empresarial-angular-components.umd.min.js +2 -2
  4. package/bundles/senior-gestao-empresarial-angular-components.umd.min.js.map +1 -1
  5. package/components/lookups/entities/nota-fiscal-entrada-lookup.d.ts +8 -0
  6. package/components/lookups/entities/segmento-lookup.d.ts +8 -0
  7. package/components/lookups/index.d.ts +2 -0
  8. package/core/enums/enum-perfil-tributario-segmento.d.ts +11 -0
  9. package/esm2015/components/lookups/entities/nota-fiscal-entrada-lookup.js +27 -0
  10. package/esm2015/components/lookups/entities/segmento-lookup.js +75 -0
  11. package/esm2015/components/lookups/erp-lookups.module.js +6 -2
  12. package/esm2015/components/lookups/index.js +3 -1
  13. package/esm2015/core/enums/enum-perfil-tributario-segmento.js +13 -0
  14. package/esm5/components/lookups/entities/nota-fiscal-entrada-lookup.js +30 -0
  15. package/esm5/components/lookups/entities/segmento-lookup.js +78 -0
  16. package/esm5/components/lookups/erp-lookups.module.js +6 -2
  17. package/esm5/components/lookups/index.js +3 -1
  18. package/esm5/core/enums/enum-perfil-tributario-segmento.js +13 -0
  19. package/fesm2015/senior-gestao-empresarial-angular-components.js +103 -2
  20. package/fesm2015/senior-gestao-empresarial-angular-components.js.map +1 -1
  21. package/fesm5/senior-gestao-empresarial-angular-components.js +109 -2
  22. package/fesm5/senior-gestao-empresarial-angular-components.js.map +1 -1
  23. package/package.json +1 -1
  24. package/senior-gestao-empresarial-angular-components.metadata.json +1 -1
@@ -6010,6 +6010,111 @@ var AgreementLookup = /** @class */ (function (_super) {
6010
6010
  return AgreementLookup;
6011
6011
  }(ErpLookups));
6012
6012
 
6013
+ var defaultFields$1 = [
6014
+ { name: "numNfc", type: FieldType.String },
6015
+ { name: "e020snf.codSnf", type: FieldType.String },
6016
+ { name: "e020snf.desSnf", type: FieldType.String }
6017
+ ];
6018
+ var NotaFiscalEntradaLookup = /** @class */ (function (_super) {
6019
+ __extends(NotaFiscalEntradaLookup, _super);
6020
+ function NotaFiscalEntradaLookup(lookupService, translate) {
6021
+ var _this = _super.call(this, lookupService, translate, "notaFiscalEntrada", defaultFields$1, defaultFields$1, defaultFields$1, "erpx_fin", "fnd_contas_pagar") || this;
6022
+ _this.lookupService = lookupService;
6023
+ _this.translate = translate;
6024
+ return _this;
6025
+ }
6026
+ NotaFiscalEntradaLookup.ctorParameters = function () { return [
6027
+ { type: ErpLookupsService },
6028
+ { type: TranslateService }
6029
+ ]; };
6030
+ NotaFiscalEntradaLookup = __decorate([
6031
+ Injectable()
6032
+ ], NotaFiscalEntradaLookup);
6033
+ return NotaFiscalEntradaLookup;
6034
+ }(ErpLookups));
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_segmento_industria"),
6061
+ value: EnumPerfilTributarioSegmento.INDUSTRIA,
6062
+ },
6063
+ {
6064
+ label: translateService.instant("erpx_cpl_imp.impostos.enum_segmento_comercio"),
6065
+ value: EnumPerfilTributarioSegmento.COMERCIO,
6066
+ },
6067
+ {
6068
+ label: translateService.instant("erpx_cpl_imp.impostos.enum_segmento_servico"),
6069
+ value: EnumPerfilTributarioSegmento.SERVICO,
6070
+ },
6071
+ {
6072
+ label: translateService.instant("erpx_cpl_imp.impostos.enum_segmento_distribuidor"),
6073
+ value: EnumPerfilTributarioSegmento.DISTRIBUIDOR,
6074
+ },
6075
+ {
6076
+ label: translateService.instant("erpx_cpl_imp.impostos.enum_segmento_cooperativa"),
6077
+ value: EnumPerfilTributarioSegmento.COOPERATIVA,
6078
+ },
6079
+ {
6080
+ label: translateService.instant("erpx_cpl_imp.impostos.enum_segmento_produtor_rural"),
6081
+ value: EnumPerfilTributarioSegmento.PRODUTOR_RURAL,
6082
+ },
6083
+ {
6084
+ label: translateService.instant("erpx_cpl_imp.impostos.enum_segmento_financeira"),
6085
+ value: EnumPerfilTributarioSegmento.FINANCEIRA,
6086
+ },
6087
+ {
6088
+ label: translateService.instant("erpx_cpl_imp.impostos.enum_segmento_imobiliaria"),
6089
+ value: EnumPerfilTributarioSegmento.IMOBILIARIA,
6090
+ },
6091
+ {
6092
+ label: translateService.instant("erpx_cpl_imp.impostos.enum_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
+
6013
6118
  var ErpLookupsModule = /** @class */ (function () {
6014
6119
  function ErpLookupsModule() {
6015
6120
  }
@@ -6122,7 +6227,9 @@ var ErpLookupsModule = /** @class */ (function () {
6122
6227
  E099UsuSupCprLookup,
6123
6228
  E069GreLookup,
6124
6229
  E501TcpLookup,
6125
- AgreementLookup
6230
+ AgreementLookup,
6231
+ NotaFiscalEntradaLookup,
6232
+ SegmentoLookup
6126
6233
  ],
6127
6234
  declarations: [],
6128
6235
  exports: [],
@@ -7280,5 +7387,5 @@ var ModulesEnum;
7280
7387
  * Generated bundle index. Do not edit.
7281
7388
  */
7282
7389
 
7283
- 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, 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 };
7284
7391
  //# sourceMappingURL=senior-gestao-empresarial-angular-components.js.map