fusion maj parcelle,batiment,ulo et leur enquete #177

Merged
judaur2005 merged 1 commits from features/fiche_refonte into develop 2026-03-19 18:00:14 +00:00
Showing only changes of commit d85b622acf - Show all commits

View File

@@ -51,13 +51,13 @@ public interface ParcelleGeomRepository extends JpaRepository<ParcelleGeom, Long
@Modifying
@Transactional
@Query(value = "update parcelle_geom " +
" set statut_parcelle = 'ENQUETER_BATIE' " +
" set statut_parcelle = 'ENQUETE_BATIE' " +
" where nup_provisoire= ?1 ",nativeQuery = true)
void majStatutParcelleGeomBatie(String nupProvisoire);
@Modifying
@Transactional
@Query(value = "update parcelle_geom " +
" set statut_parcelle = 'ENQUETER_NON_BATIE' " +
" set statut_parcelle = 'ENQUETE_NON_BATIE' " +
" where nup_provisoire= ?1 ",nativeQuery = true)
void majStatutParcelleGeomNonBatie(String nupProvisoire);
@Modifying
@@ -88,7 +88,7 @@ public interface ParcelleGeomRepository extends JpaRepository<ParcelleGeom, Long
where upper(p.q)=upper(pg.q)
and upper(p.i)=upper(pg.ilot)
and upper(p.p)=upper(pg.p)
and parcelle_is is null;
and parcelle_id is null;
""",nativeQuery = true)
void majParcelleId();