Consulta de base local personas y empresas

This commit is contained in:
james 2023-02-14 11:21:50 -05:00
parent 72d3128c5d
commit 55e813ad42
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ public class PersonDetailController extends AbstractController<TcustPersonDetail
}
try {
String select = "select identificacion,id_rep_legal,rep_legal,nombre,razon_social,direccion,profesion,estado_civil,genero,descripcion"
+ " from comaco.tmp_identificaciones where identificacion=:identificacion;";
+ " from comaco.tmp_identificaciones where identificacion=:identificacion";
Query query = PersistenceHelper.getEntityManager().createQuery(select);
query.setParameter("identificacion", identificacion);
List<Object[]> temp = query.getResultList();