Fix sélection membre aussi sur nouveaux doc
This commit is contained in:
parent
f998feda85
commit
69c728e8ad
|
@ -151,7 +151,7 @@
|
||||||
<dl>
|
<dl>
|
||||||
<dt><label>Reçu adressée à :</label></dt>
|
<dt><label>Reçu adressée à :</label></dt>
|
||||||
<dd>
|
<dd>
|
||||||
{input type="select" name="membre" label="Membre" options=$membres required=1}
|
{input type="select" name="membre_cotis" label="Membre" options=$membres required=1}
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
|
@ -97,7 +97,7 @@ elseif (f('select_cotis'))
|
||||||
$form->check('add_cotis_1',[
|
$form->check('add_cotis_1',[
|
||||||
'numero_facture' => 'required|string',
|
'numero_facture' => 'required|string',
|
||||||
'date_emission' => 'required|date_format:d/m/Y',
|
'date_emission' => 'required|date_format:d/m/Y',
|
||||||
'membre' => 'required|numeric',
|
'membre_cotis' => 'required|numeric',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$step = true;
|
$step = true;
|
||||||
|
@ -107,7 +107,7 @@ elseif (f('add_cotis'))
|
||||||
$form->check('add_cotis_2',[
|
$form->check('add_cotis_2',[
|
||||||
'numero_facture' => 'required|string',
|
'numero_facture' => 'required|string',
|
||||||
'date_emission' => 'required|date_format:d/m/Y',
|
'date_emission' => 'required|date_format:d/m/Y',
|
||||||
'membre' => 'required|numeric',
|
'membre_cotis' => 'required|numeric',
|
||||||
'cotisation' => 'required',
|
'cotisation' => 'required',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
@ -123,14 +123,14 @@ elseif (f('add_cotis'))
|
||||||
$cotis[$field] = f($field.'_'.$num);
|
$cotis[$field] = f($field.'_'.$num);
|
||||||
}
|
}
|
||||||
|
|
||||||
$r = $facture->getCotis(f('membre'), $cotis['id']);
|
$r = $facture->getCotis(f('membre_cotis'), $cotis['id']);
|
||||||
$r = $r[0];
|
$r = $r[0];
|
||||||
|
|
||||||
$data = [
|
$data = [
|
||||||
'type_facture' => COTIS,
|
'type_facture' => COTIS,
|
||||||
'numero' => f('numero_facture'),
|
'numero' => f('numero_facture'),
|
||||||
'receveur_membre' => 1,
|
'receveur_membre' => 1,
|
||||||
'receveur_id' => f('membre'),
|
'receveur_id' => f('membre_cotis'),
|
||||||
'date_emission' => f('date_emission'),
|
'date_emission' => f('date_emission'),
|
||||||
'moyen_paiement' => f('moyen_paiement'),
|
'moyen_paiement' => f('moyen_paiement'),
|
||||||
'total' => $r->paid_amount ?? $r->amount,
|
'total' => $r->paid_amount ?? $r->amount,
|
||||||
|
@ -157,7 +157,7 @@ if ($step)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
$liste = $facture->getCotis((int)f('membre'));
|
$liste = $facture->getCotis((int)f('membre_cotis'));
|
||||||
}
|
}
|
||||||
catch (UserException $e)
|
catch (UserException $e)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue