Correction bug oubli choix receveur
This commit is contained in:
parent
93c1daeffd
commit
a187babbac
|
@ -51,7 +51,7 @@ if ( !$target ) {
|
|||
// Traitement
|
||||
$data=[];
|
||||
$form->runIf(f('save') && !$form->hasErrors(),
|
||||
function () use ($client, &$data)
|
||||
function () use ($client, &$data, $form)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
@ -101,6 +101,10 @@ $form->runIf(f('save') && !$form->hasErrors(),
|
|||
$data['receveur_membre'] = 1;
|
||||
$data['receveur_id'] = f('membre');
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new UserException('Vous devez indiquer si le receveur est un client ou un membre');
|
||||
}
|
||||
|
||||
}
|
||||
catch(UserException $e)
|
||||
|
@ -152,6 +156,8 @@ $form->runIf(f('add_cotis') && !$form->hasErrors(),
|
|||
}
|
||||
}, 'add_cotis_2');
|
||||
|
||||
if (! $form->hasErrors())
|
||||
{
|
||||
if ($step)
|
||||
{
|
||||
try
|
||||
|
@ -179,6 +185,7 @@ elseif (count($data) > 0)
|
|||
throw new UserException('Erreur d\'édition du reçu');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Affichage
|
||||
|
||||
|
|
Loading…
Reference in New Issue