@senior-gestao-empresarial/angular-components 6.4.0 → 6.5.0-e8a6dbef-ef33-4c87-a0e0-f11040d9f6e6
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 +55 -1
- 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/agreement-lookup.d.ts +8 -0
- package/components/lookups/entities/nota-fiscal-entrada-lookup.d.ts +8 -0
- package/components/lookups/index.d.ts +2 -0
- package/esm2015/components/lookups/entities/agreement-lookup.js +31 -0
- package/esm2015/components/lookups/entities/nota-fiscal-entrada-lookup.js +27 -0
- package/esm2015/components/lookups/erp-lookups.module.js +6 -2
- package/esm2015/components/lookups/index.js +3 -1
- package/esm5/components/lookups/entities/agreement-lookup.js +34 -0
- package/esm5/components/lookups/entities/nota-fiscal-entrada-lookup.js +30 -0
- package/esm5/components/lookups/erp-lookups.module.js +6 -2
- package/esm5/components/lookups/index.js +3 -1
- package/fesm2015/senior-gestao-empresarial-angular-components.js +48 -2
- package/fesm2015/senior-gestao-empresarial-angular-components.js.map +1 -1
- package/fesm5/senior-gestao-empresarial-angular-components.js +54 -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
|
@@ -5983,6 +5983,56 @@ var E501TcpLookup = /** @class */ (function (_super) {
|
|
|
5983
5983
|
return E501TcpLookup;
|
|
5984
5984
|
}(ErpLookups));
|
|
5985
5985
|
|
|
5986
|
+
var defaultFields = [
|
|
5987
|
+
{
|
|
5988
|
+
name: "number",
|
|
5989
|
+
type: FieldType.Integer
|
|
5990
|
+
}, {
|
|
5991
|
+
name: "description",
|
|
5992
|
+
type: FieldType.String
|
|
5993
|
+
}
|
|
5994
|
+
];
|
|
5995
|
+
var AgreementLookup = /** @class */ (function (_super) {
|
|
5996
|
+
__extends(AgreementLookup, _super);
|
|
5997
|
+
function AgreementLookup(lookupService, translate) {
|
|
5998
|
+
var _this = _super.call(this, lookupService, translate, "agreement", defaultFields, defaultFields, defaultFields, "erpx_fin", "foundation") || this;
|
|
5999
|
+
_this.lookupService = lookupService;
|
|
6000
|
+
_this.translate = translate;
|
|
6001
|
+
return _this;
|
|
6002
|
+
}
|
|
6003
|
+
AgreementLookup.ctorParameters = function () { return [
|
|
6004
|
+
{ type: ErpLookupsService },
|
|
6005
|
+
{ type: TranslateService }
|
|
6006
|
+
]; };
|
|
6007
|
+
AgreementLookup = __decorate([
|
|
6008
|
+
Injectable()
|
|
6009
|
+
], AgreementLookup);
|
|
6010
|
+
return AgreementLookup;
|
|
6011
|
+
}(ErpLookups));
|
|
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
|
+
|
|
5986
6036
|
var ErpLookupsModule = /** @class */ (function () {
|
|
5987
6037
|
function ErpLookupsModule() {
|
|
5988
6038
|
}
|
|
@@ -6094,7 +6144,9 @@ var ErpLookupsModule = /** @class */ (function () {
|
|
|
6094
6144
|
DocumentoLookup,
|
|
6095
6145
|
E099UsuSupCprLookup,
|
|
6096
6146
|
E069GreLookup,
|
|
6097
|
-
E501TcpLookup
|
|
6147
|
+
E501TcpLookup,
|
|
6148
|
+
AgreementLookup,
|
|
6149
|
+
NotaFiscalEntradaLookup
|
|
6098
6150
|
],
|
|
6099
6151
|
declarations: [],
|
|
6100
6152
|
exports: [],
|
|
@@ -7252,5 +7304,5 @@ var ModulesEnum;
|
|
|
7252
7304
|
* Generated bundle index. Do not edit.
|
|
7253
7305
|
*/
|
|
7254
7306
|
|
|
7255
|
-
export { 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 };
|
|
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 };
|
|
7256
7308
|
//# sourceMappingURL=senior-gestao-empresarial-angular-components.js.map
|