Skip to content

Commit

Permalink
fix(fusager): DS ajout liste hébergement sans limite avec statut actif
Browse files Browse the repository at this point in the history
  • Loading branch information
l-scherer committed Feb 10, 2025
1 parent 3aad16a commit de614eb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/backend/src/services/hebergement/Hebergement.js
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,12 @@ module.exports.getByUserId = async (userId, queryParams) => {
queryKey: "adresse",
type: "default",
},
{
filterEnabled: true,
key: "hs.value",
queryKey: "statut",
type: "default",
},
{
filterEnabled: true,
key: "uo.use_id",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@ const { value: hebergements, handleChange: onHebergementsChange } =
hebergementStore.fetch({
organismeId: demandeSejourStore.demandeCourante.organismeId,
statut: hebergementUtils.statut.ACTIF,
limit: 10000,
offset: 0,
sortBy: "nom",
});
const syntheseRows = computed(() => {
Expand Down

0 comments on commit de614eb

Please sign in to comment.