develop #178

Merged
judaur2005 merged 2 commits from develop into main 2026-03-19 18:00:58 +00:00

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();