@senior-gestao-empresarial/angular-components 7.11.2 → 7.12.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.
- package/bundles/senior-gestao-empresarial-angular-components.umd.js +58 -4
- 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/e-076-mar-lookup.d.ts +8 -0
- package/components/lookups/index.d.ts +1 -0
- package/core/enums/erpx-fnd-produto-backend/enum-sit-reg.d.ts +4 -0
- package/esm2015/components/lookups/entities/e-076-mar-lookup.js +49 -0
- package/esm2015/components/lookups/erp-lookups.module.js +3 -1
- package/esm2015/components/lookups/index.js +2 -1
- package/esm2015/core/enums/erpx-fnd-produto-backend/enum-sit-reg.js +6 -0
- package/esm5/components/lookups/entities/e-076-mar-lookup.js +55 -0
- package/esm5/components/lookups/erp-lookups.module.js +3 -1
- package/esm5/components/lookups/index.js +2 -1
- package/esm5/core/enums/erpx-fnd-produto-backend/enum-sit-reg.js +6 -0
- package/fesm2015/senior-gestao-empresarial-angular-components.js +52 -5
- package/fesm2015/senior-gestao-empresarial-angular-components.js.map +1 -1
- package/fesm5/senior-gestao-empresarial-angular-components.js +58 -5
- 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
|
@@ -1757,6 +1757,58 @@ var E075DerLookup = /** @class */ (function (_super) {
|
|
|
1757
1757
|
return E075DerLookup;
|
|
1758
1758
|
}(ErpLookups));
|
|
1759
1759
|
|
|
1760
|
+
var EnumSitReg;
|
|
1761
|
+
(function (EnumSitReg) {
|
|
1762
|
+
EnumSitReg["VA"] = "VA";
|
|
1763
|
+
EnumSitReg["VI"] = "VI";
|
|
1764
|
+
})(EnumSitReg || (EnumSitReg = {}));
|
|
1765
|
+
|
|
1766
|
+
var getLookupFields = function (_a) {
|
|
1767
|
+
var translateService = _a.translateService;
|
|
1768
|
+
return [
|
|
1769
|
+
{
|
|
1770
|
+
name: "codMar",
|
|
1771
|
+
type: FieldType.String,
|
|
1772
|
+
},
|
|
1773
|
+
{
|
|
1774
|
+
name: "nomMar",
|
|
1775
|
+
type: FieldType.String,
|
|
1776
|
+
},
|
|
1777
|
+
{
|
|
1778
|
+
name: "sitMar",
|
|
1779
|
+
type: FieldType.Enum,
|
|
1780
|
+
options: [
|
|
1781
|
+
{
|
|
1782
|
+
label: translateService.instant("erpx_fnd.produto.enum_sit_reg_va"),
|
|
1783
|
+
value: EnumSitReg.VA,
|
|
1784
|
+
},
|
|
1785
|
+
{
|
|
1786
|
+
label: translateService.instant("erpx_fnd.produto.enum_sit_reg_vi"),
|
|
1787
|
+
value: EnumSitReg.VI,
|
|
1788
|
+
},
|
|
1789
|
+
],
|
|
1790
|
+
},
|
|
1791
|
+
];
|
|
1792
|
+
};
|
|
1793
|
+
var ɵ0 = getLookupFields;
|
|
1794
|
+
var E076MarLookup = /** @class */ (function (_super) {
|
|
1795
|
+
__extends(E076MarLookup, _super);
|
|
1796
|
+
function E076MarLookup(lookupService, translateService) {
|
|
1797
|
+
var _this = _super.call(this, lookupService, translateService, "e076mar", getLookupFields({ translateService: translateService }), getLookupFields({ translateService: translateService }), getLookupFields({ translateService: translateService }), "erpx_fnd", "produto") || this;
|
|
1798
|
+
_this.lookupService = lookupService;
|
|
1799
|
+
_this.translateService = translateService;
|
|
1800
|
+
return _this;
|
|
1801
|
+
}
|
|
1802
|
+
E076MarLookup.ctorParameters = function () { return [
|
|
1803
|
+
{ type: ErpLookupsService },
|
|
1804
|
+
{ type: TranslateService }
|
|
1805
|
+
]; };
|
|
1806
|
+
E076MarLookup = __decorate([
|
|
1807
|
+
Injectable()
|
|
1808
|
+
], E076MarLookup);
|
|
1809
|
+
return E076MarLookup;
|
|
1810
|
+
}(ErpLookups));
|
|
1811
|
+
|
|
1760
1812
|
var lookupFields$1 = [
|
|
1761
1813
|
{
|
|
1762
1814
|
name: "e070emp.codEmp",
|
|
@@ -6096,7 +6148,7 @@ var getFields = function (translateService) {
|
|
|
6096
6148
|
},
|
|
6097
6149
|
];
|
|
6098
6150
|
};
|
|
6099
|
-
var ɵ0 = getFields;
|
|
6151
|
+
var ɵ0$1 = getFields;
|
|
6100
6152
|
var SegmentoLookup = /** @class */ (function (_super) {
|
|
6101
6153
|
__extends(SegmentoLookup, _super);
|
|
6102
6154
|
function SegmentoLookup(lookupService, translate) {
|
|
@@ -6672,7 +6724,7 @@ var getGridFields = function (translateService) {
|
|
|
6672
6724
|
},
|
|
6673
6725
|
]);
|
|
6674
6726
|
};
|
|
6675
|
-
var ɵ0$
|
|
6727
|
+
var ɵ0$2 = getGridFields;
|
|
6676
6728
|
var CaracteristicaFiscalLookup = /** @class */ (function (_super) {
|
|
6677
6729
|
__extends(CaracteristicaFiscalLookup, _super);
|
|
6678
6730
|
function CaracteristicaFiscalLookup(lookupService, translate) {
|
|
@@ -6724,7 +6776,7 @@ var getEnumDifalNaoContribuinteOptions = function (_a) {
|
|
|
6724
6776
|
EnumDifalNaoContribuinte.NAO_SE_APLICA,
|
|
6725
6777
|
]);
|
|
6726
6778
|
};
|
|
6727
|
-
var ɵ0$
|
|
6779
|
+
var ɵ0$3 = getEnumDifalNaoContribuinteOptions;
|
|
6728
6780
|
var getEnumDifalContribuinteOptions = function (_a) {
|
|
6729
6781
|
var translateService = _a.translateService;
|
|
6730
6782
|
return getOptionsFromEnum(translateService, "erpx_cpl_imp.icms.enum_difal_contribuinte_", [
|
|
@@ -6888,7 +6940,7 @@ var getEnumOrigemMercadoriaImpostoOptions = function (_a) {
|
|
|
6888
6940
|
EnumOrigemMercadoriaImposto.IS,
|
|
6889
6941
|
]);
|
|
6890
6942
|
};
|
|
6891
|
-
var ɵ0$
|
|
6943
|
+
var ɵ0$4 = getEnumOrigemMercadoriaImpostoOptions;
|
|
6892
6944
|
var OrigemMercadoriaLookup = /** @class */ (function (_super) {
|
|
6893
6945
|
__extends(OrigemMercadoriaLookup, _super);
|
|
6894
6946
|
function OrigemMercadoriaLookup(lookupService, translateService) {
|
|
@@ -7013,6 +7065,7 @@ var ErpLookupsModule = /** @class */ (function () {
|
|
|
7013
7065
|
E090PesLookup,
|
|
7014
7066
|
E090HrpComGerLookup,
|
|
7015
7067
|
E075DerLookup,
|
|
7068
|
+
E076MarLookup,
|
|
7016
7069
|
E080SerLookup,
|
|
7017
7070
|
E081TabLookup,
|
|
7018
7071
|
E024MsgLookup,
|
|
@@ -8550,5 +8603,5 @@ var ModulesEnum;
|
|
|
8550
8603
|
* Generated bundle index. Do not edit.
|
|
8551
8604
|
*/
|
|
8552
8605
|
|
|
8553
|
-
export { AgreementLookup, BankLookup, BeneficioFiscalLookup, BreadcrumbComponent, BreadcrumbModule, Breakpoints, CaracteristicaFiscalLookup, ClassificacaoTributariaLookup, ComposicaoBaseCalculoLookup, ContaInternaFilialLookup, 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, E006PaiLookup, E007UfsLookup, E008CepLookup, E008RaiLookup, E012FamLookup, E015MedLookup, E020SnfLookup, E021MotLookup, E023CrpLookup, E024MsgLookup, E027EqiLookup, E027StrLookup, E028CpgLookup, E030AgeLookup, E030BanLookup, E031MoeLookup, E032EdcLookup, E034TccLookup, E035OcrLookup, E036InsLookup, E039PorLookup, E041CebLookup, E043MpcLookup, E043PcmLookup, E044CcuLookup, E045PlaLookup, E046HpdLookup, E047NtgLookup, E048FctLookup, E048SfcLookup, E051DisLookup, E066FpgLookup, E067FinLookup, E069GreLookup, E070EmpLookup, E070EntLookup, E070FilLookup, E073PesLookup, E073VeiLookup, E075DerLookup, E080SerLookup, E081TabLookup, E082TprLookup, E085PesLookup, E089DocLookup, E090HrpComGerLookup, E090PesLookup, E091PlfLookup, E095HfoSupGerLookup, E095PesLookup, E099UsuComGerLookup, E099UsuSupCprLookup, E140InsLookup, E140NfsLookup, E200LotLookup, E200SerLookup, E205DepLookup, E210DxpE075DerLookup, E210DxpLookup, E301TcrLookup, E403FprLookup, E420IcpLookup, E420IpcLookup, E420OcpLookup, E501TcpLookup, E600CcoLookup, E640LotLookup, EntityPersonProductLookup, EnumLogicalOperator, EquipmentLookup, ErpLookups, ErpLookupsModule, ErpPolling, ExportUtils, FiltersStorageService, FormUtilsService, HTTP_STATUS_CODE, LeiComplementar1162003Lookup, LigacaoItemFornecedorLookup, LookupValidationUtils, ModulesEnum, NbsLookup, NcmLookup, NotaFiscalEntradaLookup, NpsService, OperacoesLookup, OrigemDestinoLookup, OrigemMercadoriaLookup, ParametersLookup, PrimitiveManager, ProdutoServicoLookup, QuantidadeDisponivelDemandaLookup, RequisicaoLookup, SegmentoLookup, TypeTaxesLookup, UnidadeMedidaLookup, UtilsModule, VerifyModulePermission, VerifyModulePermissions, WebsocketService, naturezaReceitaPisCofins, ɵ0, ɵ1, ɵ2, ErpLookupsService as ɵa, EnumAnaSin as ɵb, EnumNatCtb as ɵc, StorageService as ɵd, UserInformationService as ɵe, VerifyModulePermissionService as ɵf, VerifyModulePermissionsService as ɵg };
|
|
8606
|
+
export { AgreementLookup, BankLookup, BeneficioFiscalLookup, BreadcrumbComponent, BreadcrumbModule, Breakpoints, CaracteristicaFiscalLookup, ClassificacaoTributariaLookup, ComposicaoBaseCalculoLookup, ContaInternaFilialLookup, 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, E006PaiLookup, E007UfsLookup, E008CepLookup, E008RaiLookup, E012FamLookup, E015MedLookup, E020SnfLookup, E021MotLookup, E023CrpLookup, E024MsgLookup, E027EqiLookup, E027StrLookup, E028CpgLookup, E030AgeLookup, E030BanLookup, E031MoeLookup, E032EdcLookup, E034TccLookup, E035OcrLookup, E036InsLookup, E039PorLookup, E041CebLookup, E043MpcLookup, E043PcmLookup, E044CcuLookup, E045PlaLookup, E046HpdLookup, E047NtgLookup, E048FctLookup, E048SfcLookup, E051DisLookup, E066FpgLookup, E067FinLookup, E069GreLookup, E070EmpLookup, E070EntLookup, E070FilLookup, E073PesLookup, E073VeiLookup, E075DerLookup, E076MarLookup, E080SerLookup, E081TabLookup, E082TprLookup, E085PesLookup, E089DocLookup, E090HrpComGerLookup, E090PesLookup, E091PlfLookup, E095HfoSupGerLookup, E095PesLookup, E099UsuComGerLookup, E099UsuSupCprLookup, E140InsLookup, E140NfsLookup, E200LotLookup, E200SerLookup, E205DepLookup, E210DxpE075DerLookup, E210DxpLookup, E301TcrLookup, E403FprLookup, E420IcpLookup, E420IpcLookup, E420OcpLookup, E501TcpLookup, E600CcoLookup, E640LotLookup, EntityPersonProductLookup, EnumLogicalOperator, EquipmentLookup, ErpLookups, ErpLookupsModule, ErpPolling, ExportUtils, FiltersStorageService, FormUtilsService, HTTP_STATUS_CODE, LeiComplementar1162003Lookup, LigacaoItemFornecedorLookup, LookupValidationUtils, ModulesEnum, NbsLookup, NcmLookup, NotaFiscalEntradaLookup, NpsService, OperacoesLookup, OrigemDestinoLookup, OrigemMercadoriaLookup, ParametersLookup, PrimitiveManager, ProdutoServicoLookup, QuantidadeDisponivelDemandaLookup, RequisicaoLookup, SegmentoLookup, TypeTaxesLookup, UnidadeMedidaLookup, UtilsModule, VerifyModulePermission, VerifyModulePermissions, WebsocketService, naturezaReceitaPisCofins, ɵ0, ɵ1, ɵ2, ErpLookupsService as ɵa, EnumAnaSin as ɵb, EnumNatCtb as ɵc, StorageService as ɵd, UserInformationService as ɵe, VerifyModulePermissionService as ɵf, VerifyModulePermissionsService as ɵg };
|
|
8554
8607
|
//# sourceMappingURL=senior-gestao-empresarial-angular-components.js.map
|