mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 21:34:25 +00:00
Merge remote-tracking branch 'origin/master' into 111_exports_suite
This commit is contained in:
commit
060d5d5ca3
@ -323,9 +323,9 @@ This is the minimal activity data: Activité n°
|
|||||||
|
|
||||||
docgen:
|
docgen:
|
||||||
Activity basic: Echange
|
Activity basic: Echange
|
||||||
A basic context for activity: Contexte pour les échanges
|
A basic context for activity: Contexte pour les activités
|
||||||
Accompanying period with a list of activities: Parcours d'accompagnement avec liste des échanges
|
Accompanying period with a list of activities: Parcours d'accompagnement avec liste des activités
|
||||||
Accompanying period with a list of activities description: Ce contexte reprend les informations du parcours, et tous les échanges pour un parcours. Les échanges ne sont pas filtrés.
|
Accompanying period with a list of activities description: Ce contexte reprend les informations du parcours, et tous les activités pour un parcours. Les activités ne sont pas filtrés.
|
||||||
|
|
||||||
export:
|
export:
|
||||||
list:
|
list:
|
||||||
|
@ -231,4 +231,4 @@ This is the minimal activity data: Activité n°
|
|||||||
|
|
||||||
docgen:
|
docgen:
|
||||||
Activity basic: Echange
|
Activity basic: Echange
|
||||||
A basic context for activity: Contexte pour les échanges
|
A basic context for activity: Contexte pour les activités
|
||||||
|
@ -16,8 +16,8 @@ For this type of activity, document is required: Pour ce type d'activité, un do
|
|||||||
For this type of activity, emergency is required: Pour ce type d'activité, le champ "Urgent" est requis
|
For this type of activity, emergency is required: Pour ce type d'activité, le champ "Urgent" est requis
|
||||||
For this type of activity, accompanying period is required: Pour ce type d'activité, le parcours d'accompagnement est requis
|
For this type of activity, accompanying period is required: Pour ce type d'activité, le parcours d'accompagnement est requis
|
||||||
For this type of activity, you must add at least one social issue: Pour ce type d'activité, vous devez ajouter au moins une problématique sociale
|
For this type of activity, you must add at least one social issue: Pour ce type d'activité, vous devez ajouter au moins une problématique sociale
|
||||||
For this type of activity, you must add at least one social action: Pour ce type d'activité, vous devez indiquez au moins une action sociale
|
For this type of activity, you must add at least one social action: Pour ce type d'activité, vous devez indiquer au moins une action sociale
|
||||||
|
|
||||||
# admin
|
# admin
|
||||||
This parameter must be equal to social issue parameter: Ce paramètre doit être égal au paramètre "Visibilité du champs Problématiques sociales"
|
This parameter must be equal to social issue parameter: Ce paramètre doit être égal au paramètre "Visibilité du champs Problématiques sociales"
|
||||||
The socialActionsVisible value is not compatible with the socialIssuesVisible value: Cette valeur du paramètre "Visibilité du champs Actions sociales" n'est pas compatible avec la valeur du paramètre "Visibilité du champs Problématiques sociales"
|
The socialActionsVisible value is not compatible with the socialIssuesVisible value: Cette valeur du paramètre "Visibilité du champs Actions sociales" n'est pas compatible avec la valeur du paramètre "Visibilité du champs Problématiques sociales"
|
||||||
|
@ -37,8 +37,9 @@ class LoadAddressesBEFromBestAddressCommand extends Command
|
|||||||
{
|
{
|
||||||
$this
|
$this
|
||||||
->setName('chill:main:address-ref-from-best-addresses')
|
->setName('chill:main:address-ref-from-best-addresses')
|
||||||
->addArgument('lang', InputArgument::REQUIRED)
|
->addArgument('lang', InputArgument::REQUIRED, "Language code, for example 'fr'")
|
||||||
->addArgument('list', InputArgument::IS_ARRAY, 'The list to add');
|
->addArgument('list', InputArgument::IS_ARRAY, "The list to add, for example 'full', or 'extract' (dev) or '1xxx' (brussel CP)")
|
||||||
|
->setDescription('Import BE addresses from BeST Address (see https://osoc19.github.io/best/)');
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function execute(InputInterface $input, OutputInterface $output): int
|
protected function execute(InputInterface $input, OutputInterface $output): int
|
||||||
|
@ -31,7 +31,7 @@ class LoadAddressesFRFromBANOCommand extends Command
|
|||||||
{
|
{
|
||||||
$this->setName('chill:main:address-ref-from-bano')
|
$this->setName('chill:main:address-ref-from-bano')
|
||||||
->addArgument('departementNo', InputArgument::REQUIRED | InputArgument::IS_ARRAY, 'a list of departement numbers')
|
->addArgument('departementNo', InputArgument::REQUIRED | InputArgument::IS_ARRAY, 'a list of departement numbers')
|
||||||
->setDescription('Import addresses from bano (see https://bano.openstreetmap.fr');
|
->setDescription('Import FR addresses from bano (see https://bano.openstreetmap.fr');
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function execute(InputInterface $input, OutputInterface $output): int
|
protected function execute(InputInterface $input, OutputInterface $output): int
|
||||||
|
@ -133,8 +133,7 @@ class EntityWorkflowStep
|
|||||||
if (!$this->destUser->contains($user)) {
|
if (!$this->destUser->contains($user)) {
|
||||||
$this->destUser[] = $user;
|
$this->destUser[] = $user;
|
||||||
$this->getEntityWorkflow()
|
$this->getEntityWorkflow()
|
||||||
->addSubscriberToFinal($user)
|
->addSubscriberToFinal($user);
|
||||||
->addSubscriberToStep($user);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
@ -145,8 +144,7 @@ class EntityWorkflowStep
|
|||||||
if (!$this->destUserByAccessKey->contains($user) && !$this->destUser->contains($user)) {
|
if (!$this->destUserByAccessKey->contains($user) && !$this->destUser->contains($user)) {
|
||||||
$this->destUserByAccessKey[] = $user;
|
$this->destUserByAccessKey[] = $user;
|
||||||
$this->getEntityWorkflow()
|
$this->getEntityWorkflow()
|
||||||
->addSubscriberToFinal($user)
|
->addSubscriberToFinal($user);
|
||||||
->addSubscriberToStep($user);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
|
@ -97,8 +97,8 @@ class PostalCodeBEFromBestAddress
|
|||||||
trim($record['postal_info_objectid']),
|
trim($record['postal_info_objectid']),
|
||||||
$record['municipality_objectid'],
|
$record['municipality_objectid'],
|
||||||
'bestaddress',
|
'bestaddress',
|
||||||
$record['Y'],
|
(float) $record['Y'],
|
||||||
$record['X'],
|
(float) $record['X'],
|
||||||
3812
|
3812
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -477,8 +477,8 @@ workflow:
|
|||||||
Previous workflow transitionned help: Workflows où vous avez exécuté une action.
|
Previous workflow transitionned help: Workflows où vous avez exécuté une action.
|
||||||
For: Pour
|
For: Pour
|
||||||
You must select a next step, pick another decision if no next steps are available: Il faut une prochaine étape. Choissisez une autre décision si nécessaire.
|
You must select a next step, pick another decision if no next steps are available: Il faut une prochaine étape. Choissisez une autre décision si nécessaire.
|
||||||
An access key was also sent to those addresses: Un lien d'accès a été envoyé à ces addresses
|
An access key was also sent to those addresses: Un lien d'accès a été envoyé à ces adresses
|
||||||
Those users are also granted to apply a transition by using an access key: Ces utilisateurs ont obtennu l'accès grâce au lien reçu par email
|
Those users are also granted to apply a transition by using an access key: Ces utilisateurs ont obtenu l'accès grâce au lien reçu par email
|
||||||
Access link copied: Lien d'accès copié
|
Access link copied: Lien d'accès copié
|
||||||
This link grant any user to apply a transition: Le lien d'accès suivant permet d'appliquer une transition
|
This link grant any user to apply a transition: Le lien d'accès suivant permet d'appliquer une transition
|
||||||
The workflow may be accssed through this link: Une transition peut être appliquée sur ce workflow grâce au lien d'accès suivant
|
The workflow may be accssed through this link: Une transition peut être appliquée sur ce workflow grâce au lien d'accès suivant
|
||||||
|
Loading…
x
Reference in New Issue
Block a user