diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/admin/_datosPresupuestoItems.php b/ci4/app/Views/themes/vuexy/form/presupuestos/admin/_datosPresupuestoItems.php
index f99d60a1..615b2da0 100644
--- a/ci4/app/Views/themes/vuexy/form/presupuestos/admin/_datosPresupuestoItems.php
+++ b/ci4/app/Views/themes/vuexy/form/presupuestos/admin/_datosPresupuestoItems.php
@@ -143,6 +143,7 @@
diff --git a/httpdocs/assets/js/safekat/pages/presupuestoAdmin/sections/datosGenerales.js b/httpdocs/assets/js/safekat/pages/presupuestoAdmin/sections/datosGenerales.js
index f981d106..742aac2d 100644
--- a/httpdocs/assets/js/safekat/pages/presupuestoAdmin/sections/datosGenerales.js
+++ b/httpdocs/assets/js/safekat/pages/presupuestoAdmin/sections/datosGenerales.js
@@ -15,6 +15,8 @@ class DatosGenerales{
this.coleccion = this.domItem.find('#coleccion');
this.numeroEdicion = this.domItem.find('#numeroEdicion');
this.isbn = this.domItem.find('#isbn');
+
+ this.openCliente = this.domItem.find('#openCliente');
this.cliente = new ClassSelect($('#clienteId'), '/clientes/cliente/getSelect2', 'Seleccione cliente');
@@ -31,6 +33,11 @@ class DatosGenerales{
this.inc_rei.select2({
allowClear: false,
});
+
+ this.openCliente.click(()=>{
+ const urlObj = new URL(window.location.href);
+ window.open(`${urlObj.origin}` + '/clientes/cliente/edit/' + this.cliente.getVal());
+ });
}
cargarDatos(datos){