@senior-gestao-empresarial/angular-components 7.11.2 → 7.13.0-584ee0ff-60ad-48be-996f-110eca7a1720
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 +142 -19
- 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/entities/ind-operacao-fornecimento-lookup.d.ts +8 -0
- package/components/lookups/index.d.ts +3 -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/entities/ind-operacao-fornecimento-lookup.js +75 -0
- package/esm2015/components/lookups/erp-lookups.module.js +28 -26
- package/esm2015/components/lookups/index.js +4 -1
- package/esm2015/core/enums/erpx-fnd-produto-backend/enum-sit-reg.js +6 -0
- package/esm2015/senior-gestao-empresarial-angular-components.js +7 -8
- package/esm5/components/lookups/entities/e-076-mar-lookup.js +55 -0
- package/esm5/components/lookups/entities/ind-operacao-fornecimento-lookup.js +78 -0
- package/esm5/components/lookups/erp-lookups.module.js +28 -26
- package/esm5/components/lookups/index.js +4 -1
- package/esm5/core/enums/erpx-fnd-produto-backend/enum-sit-reg.js +6 -0
- package/esm5/senior-gestao-empresarial-angular-components.js +7 -8
- package/fesm2015/senior-gestao-empresarial-angular-components.js +120 -8
- package/fesm2015/senior-gestao-empresarial-angular-components.js.map +1 -1
- package/fesm5/senior-gestao-empresarial-angular-components.js +129 -8
- package/fesm5/senior-gestao-empresarial-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/senior-gestao-empresarial-angular-components.d.ts +6 -7
- 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) {
|
|
@@ -6974,14 +7026,81 @@ var E095HfoSupGerLookup = /** @class */ (function (_super) {
|
|
|
6974
7026
|
return E095HfoSupGerLookup;
|
|
6975
7027
|
}(ErpLookups));
|
|
6976
7028
|
|
|
7029
|
+
var IndOperacaoFornecimentoLookup = /** @class */ (function (_super) {
|
|
7030
|
+
__extends(IndOperacaoFornecimentoLookup, _super);
|
|
7031
|
+
function IndOperacaoFornecimentoLookup(lookupService, translate) {
|
|
7032
|
+
var _this = _super.call(this, lookupService, translate, "indOperacaoFornecimento", [
|
|
7033
|
+
{
|
|
7034
|
+
name: "codigo",
|
|
7035
|
+
type: FieldType.String,
|
|
7036
|
+
},
|
|
7037
|
+
{
|
|
7038
|
+
name: "descricao",
|
|
7039
|
+
type: FieldType.String,
|
|
7040
|
+
},
|
|
7041
|
+
], [
|
|
7042
|
+
{
|
|
7043
|
+
name: "codigo",
|
|
7044
|
+
type: FieldType.String,
|
|
7045
|
+
},
|
|
7046
|
+
{
|
|
7047
|
+
name: "descricao",
|
|
7048
|
+
type: FieldType.String,
|
|
7049
|
+
},
|
|
7050
|
+
], [
|
|
7051
|
+
{
|
|
7052
|
+
name: "tipoOrigem",
|
|
7053
|
+
type: FieldType.Enum,
|
|
7054
|
+
options: [
|
|
7055
|
+
{
|
|
7056
|
+
label: translate.instant("erpx_cpl_imp.cadastros.enum_tipo_origem_parceiro"),
|
|
7057
|
+
value: EnumTipoOrigem.PARCEIRO,
|
|
7058
|
+
},
|
|
7059
|
+
{
|
|
7060
|
+
label: translate.instant("erpx_cpl_imp.cadastros.enum_tipo_origem_senior"),
|
|
7061
|
+
value: EnumTipoOrigem.SENIOR,
|
|
7062
|
+
},
|
|
7063
|
+
{
|
|
7064
|
+
label: translate.instant("erpx_cpl_imp.cadastros.enum_tipo_origem_usuario"),
|
|
7065
|
+
value: EnumTipoOrigem.USUARIO,
|
|
7066
|
+
},
|
|
7067
|
+
],
|
|
7068
|
+
},
|
|
7069
|
+
{
|
|
7070
|
+
name: "situacao",
|
|
7071
|
+
type: FieldType.Enum,
|
|
7072
|
+
options: [
|
|
7073
|
+
{
|
|
7074
|
+
label: translate.instant("erpx_cpl_imp.cadastros.enum_situacao_ativo"),
|
|
7075
|
+
value: EnumSituacaoCaracteristicaFiscal.ATIVO,
|
|
7076
|
+
},
|
|
7077
|
+
{
|
|
7078
|
+
label: translate.instant("erpx_cpl_imp.cadastros.enum_situacao_inativo"),
|
|
7079
|
+
value: EnumSituacaoCaracteristicaFiscal.INATIVO,
|
|
7080
|
+
},
|
|
7081
|
+
],
|
|
7082
|
+
},
|
|
7083
|
+
], "erpx_cpl_imp", "cadastros") || this;
|
|
7084
|
+
_this.lookupService = lookupService;
|
|
7085
|
+
_this.translate = translate;
|
|
7086
|
+
return _this;
|
|
7087
|
+
}
|
|
7088
|
+
IndOperacaoFornecimentoLookup.ctorParameters = function () { return [
|
|
7089
|
+
{ type: ErpLookupsService },
|
|
7090
|
+
{ type: TranslateService }
|
|
7091
|
+
]; };
|
|
7092
|
+
IndOperacaoFornecimentoLookup = __decorate([
|
|
7093
|
+
Injectable()
|
|
7094
|
+
], IndOperacaoFornecimentoLookup);
|
|
7095
|
+
return IndOperacaoFornecimentoLookup;
|
|
7096
|
+
}(ErpLookups));
|
|
7097
|
+
|
|
6977
7098
|
var ErpLookupsModule = /** @class */ (function () {
|
|
6978
7099
|
function ErpLookupsModule() {
|
|
6979
7100
|
}
|
|
6980
7101
|
ErpLookupsModule = __decorate([
|
|
6981
7102
|
NgModule({
|
|
6982
|
-
imports: [
|
|
6983
|
-
HttpInterceptorModule
|
|
6984
|
-
],
|
|
7103
|
+
imports: [HttpInterceptorModule],
|
|
6985
7104
|
providers: [
|
|
6986
7105
|
ErpLookupsService,
|
|
6987
7106
|
E099UsuComGerLookup,
|
|
@@ -7013,6 +7132,7 @@ var ErpLookupsModule = /** @class */ (function () {
|
|
|
7013
7132
|
E090PesLookup,
|
|
7014
7133
|
E090HrpComGerLookup,
|
|
7015
7134
|
E075DerLookup,
|
|
7135
|
+
E076MarLookup,
|
|
7016
7136
|
E080SerLookup,
|
|
7017
7137
|
E081TabLookup,
|
|
7018
7138
|
E024MsgLookup,
|
|
@@ -7105,6 +7225,7 @@ var ErpLookupsModule = /** @class */ (function () {
|
|
|
7105
7225
|
E041CebLookup,
|
|
7106
7226
|
OrigemMercadoriaLookup,
|
|
7107
7227
|
E095HfoSupGerLookup,
|
|
7228
|
+
IndOperacaoFornecimentoLookup,
|
|
7108
7229
|
],
|
|
7109
7230
|
declarations: [],
|
|
7110
7231
|
exports: [],
|
|
@@ -8550,5 +8671,5 @@ var ModulesEnum;
|
|
|
8550
8671
|
* Generated bundle index. Do not edit.
|
|
8551
8672
|
*/
|
|
8552
8673
|
|
|
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,
|
|
8674
|
+
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, ErpLookupsService, ErpPolling, ExportUtils, FiltersStorageService, FormUtilsService, HTTP_STATUS_CODE, IndOperacaoFornecimentoLookup, 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, EnumAnaSin as ɵa, EnumNatCtb as ɵb, StorageService as ɵc, UserInformationService as ɵd, VerifyModulePermissionService as ɵe, VerifyModulePermissionsService as ɵf };
|
|
8554
8675
|
//# sourceMappingURL=senior-gestao-empresarial-angular-components.js.map
|