Merge pull request 'develop' (#289) from develop into main
All checks were successful
CD - Deploy on main / deploy (push) Successful in 1m3s
All checks were successful
CD - Deploy on main / deploy (push) Successful in 1m3s
Reviewed-on: #289
This commit was merged in pull request #289.
This commit is contained in:
@@ -94,7 +94,7 @@ public class DonneesImpositionTfu extends BaseEntity implements Serializable {
|
||||
private Long nombrePiscine;
|
||||
private Long nombreUlog;
|
||||
private Long nombreBat;
|
||||
@Column(nullable = true, columnDefinition = "boolean default true")
|
||||
//@Column(nullable = true, columnDefinition = "boolean default true")
|
||||
private Boolean homologable ;
|
||||
@JsonFormat(pattern = "dd-MM-yyyy")
|
||||
@JsonDeserialize(using = LocalDateDeserializer.class)
|
||||
|
||||
@@ -667,7 +667,7 @@ SELECT new io.gmss.fiscad.paylaods.request.crudweb.DonneesImpositionPaylaodWeb(
|
||||
LEFT join d.structure s
|
||||
LEFT join d.zoneRfu z
|
||||
WHERE itfu.id = :impositionTfuId
|
||||
and (d.homologable is true or d.homologable is null)
|
||||
and d.homologable is null
|
||||
order by d.nomProp,d.nomProp asc
|
||||
""")
|
||||
Page<DonneesImpositionPaylaodWeb> findAllByImpositionTfuIdHomologablePageable(
|
||||
@@ -682,7 +682,7 @@ SELECT new io.gmss.fiscad.paylaods.request.crudweb.DonneesImpositionPaylaodWeb(
|
||||
UPDATE DonneesImpositionTfu d
|
||||
SET d.homologable = true
|
||||
WHERE d.impositionsTfu.id = :impositionsTfuId
|
||||
AND (d.homologable IS NULL OR d.homologable = true)
|
||||
AND d.homologable IS NULL
|
||||
""")
|
||||
int homologuerDonneesImposition(
|
||||
@Param("impositionsTfuId") Long impositionsTfuId
|
||||
|
||||
Reference in New Issue
Block a user