Élimination de form->check() pour version 1.3

This commit is contained in:
Jean-Christophe Engel 2023-10-19 10:24:49 +02:00
parent 0ed03eb362
commit 2454883ffc
4 changed files with 150 additions and 209 deletions

View File

@ -49,140 +49,108 @@ if ( !$target ) {
} }
// Traitement // Traitement
$data=[];
$form->runIf(f('save') && !$form->hasErrors(),
function () use ($client, &$data)
{
try
{
if ( count(f('designation')) !== count(f('prix')) )
{
throw new UserException('Nombre de désignations et de prix reçus différent.');
}
if (f('save')) $data = [
{ 'numero' => f('numero_facture'),
$str_moyen = 'moyen_paiement'. (f('type') == CERFA ? '_cerfa':''); 'date_emission' => f('date_emission'),
'date_echeance' => f('date_echeance'),
'reglee' => f('reglee') == 1?1:0,
'archivee' => f('archivee') == 1?1:0,
'moyen_paiement' => f('moyen_paiement'),
'toto' => 0
];
$data['type_facture'] = f('type');
if (in_array(f('type'), [DEVIS, FACT]))
{
foreach(f('designation') as $k=>$value)
{
$data['contenu'][$k]['designation'] = $value;
$data['contenu'][$k]['prix'] = Utils::moneyToInteger(f('prix')[$k]);
$data['toto'] += Utils::moneyToInteger(f('prix')[$k]);
}
$data['total'] = $data['toto'];
unset($data['toto']);
}
elseif ( f('type') == CERFA )
{
$data['moyen_paiement'] = f('moyen_paiement_cerfa');
$data['contenu'] = [
'forme' => f('forme_don'),
'nature' => f('nature_don'),
'texte' => f('texte_don')];
$data['total'] = Utils::moneyToInteger(f('total'));
unset($data['toto']);
}
if (f('base_receveur') == 'client')
{
$data['receveur_membre'] = 0;
$data['receveur_id'] = f('client');
}
elseif (f('base_receveur') == 'membre')
{
$data['receveur_membre'] = 1;
$data['receveur_id'] = f('membre');
}
$form->check($csrf_key, [ }
'type' => 'required|in:'.implode(',', [DEVIS, FACT, CERFA]), catch(UserException $e)
'numero_facture' => $require_number ? 'required|string' : 'string', {
'date_emission' => 'required|date_format:d/m/Y', $form->addError($e->getMessage());
'date_echeance' => 'required|date_format:d/m/Y', }
// 'reglee' => '',
// 'archivee' => '', }, $csrf_key);
'base_receveur' => 'required|in:membre,client',
// 'client' => '',
// 'membre' => '',
$str_moyen => 'required|in:' . implode(',', array_keys($moyens_paiement)),
'designation' => 'array|required',
'prix' => 'array|required'
]);
if (!$form->hasErrors()) $form->runIf(f('select_cotis') && !$form->hasErrors(),
{ function () use ($step)
try {
{ $step = true;
if ( count(f('designation')) !== count(f('prix')) ) }, 'add_cotis_1');
{
throw new UserException('Nombre de désignations et de prix reçus différent.');
}
$data = [ $form->runIf(f('add_cotis') && !$form->hasErrors(),
'numero' => f('numero_facture'), function () use ($radio, $fields, $facture)
'date_emission' => f('date_emission'), {
'date_echeance' => f('date_echeance'), $radio['type'] = f('cotisation');
'reglee' => f('reglee') == 1?1:0, try
'archivee' => f('archivee') == 1?1:0, {
'moyen_paiement' => f('moyen_paiement'), $num = (int) str_replace('cotis_', '', $radio['type']);
'toto' => 0 foreach($fields as $field)
]; {
$data['type_facture'] = f('type'); $cotis[$field] = f($field.'_'.$num);
if (in_array(f('type'), [DEVIS, FACT])) }
{
foreach(f('designation') as $k=>$value)
{
$data['contenu'][$k]['designation'] = $value;
$data['contenu'][$k]['prix'] = Utils::moneyToInteger(f('prix')[$k]);
$data['toto'] += Utils::moneyToInteger(f('prix')[$k]);
}
$data['total'] = $data['toto'];
unset($data['toto']);
}
elseif ( f('type') == CERFA )
{
$data['moyen_paiement'] = f('moyen_paiement_cerfa');
$data['contenu'] = [
'forme' => f('forme_don'),
'nature' => f('nature_don'),
'texte' => f('texte_don')];
$data['total'] = Utils::moneyToInteger(f('total'));
unset($data['toto']);
}
if (f('base_receveur') == 'client')
{
$data['receveur_membre'] = 0;
$data['receveur_id'] = f('client');
}
elseif (f('base_receveur') == 'membre')
{
$data['receveur_membre'] = 1;
$data['receveur_id'] = f('membre');
}
$r = $facture->getCotis(f('membre_cotis'), $cotis['id']);
$r = $r[0];
} $data = [
catch(UserException $e) 'type_facture' => COTIS,
{ 'numero' => f('numero_facture'),
$form->addError($e->getMessage()); 'receveur_membre' => 1,
} 'receveur_id' => f('membre_cotis'),
} 'date_emission' => f('date_emission'),
} 'moyen_paiement' => 'AU',
elseif (f('select_cotis')) 'total' => $r->paid_amount ?? $r->amount,
{ 'contenu' => ['id' => $cotis['id'],
$form->check('add_cotis_1',[ 'intitule' => $cotis['label'],
'numero_facture' => $require_number ? 'required|string' : 'string', 'souscription' => $cotis['date'],
'date_emission' => 'required|date_format:d/m/Y', 'expiration' => $cotis['expiry'] ]
'membre_cotis' => 'required|numeric', ];
]);
$step = true; }
} catch (UserException $e)
elseif (f('add_cotis')) {
{ $form->addError($e->getMessage());
$form->check('add_cotis_2',[ }
'numero_facture' => $require_number ? 'required|string' : 'string', }, 'add_cotis_2');
'date_emission' => 'required|date_format:d/m/Y',
'membre_cotis' => 'required|numeric',
'cotisation' => 'required',
]);
$radio['type'] = f('cotisation');
if (!$form->hasErrors())
{
try
{
$num = (int) str_replace('cotis_', '', $radio['type']);
foreach($fields as $field)
{
$cotis[$field] = f($field.'_'.$num);
}
$r = $facture->getCotis(f('membre_cotis'), $cotis['id']);
$r = $r[0];
$data = [
'type_facture' => COTIS,
'numero' => f('numero_facture'),
'receveur_membre' => 1,
'receveur_id' => f('membre_cotis'),
'date_emission' => f('date_emission'),
'moyen_paiement' => 'AU',
'total' => $r->paid_amount ?? $r->amount,
'contenu' => ['id' => $cotis['id'],
'intitule' => $cotis['label'],
'souscription' => $cotis['date'],
'expiration' => $cotis['expiry'] ]
];
}
catch (UserException $e)
{
$form->addError($e->getMessage());
}
}
}
if ($step) if ($step)
{ {
@ -195,7 +163,7 @@ if ($step)
$form->addError($e->getMessage()); $form->addError($e->getMessage());
} }
} }
elseif (isset($data)) elseif (count($data) > 0)
{ {
if ($target) if ($target)
{ {
@ -333,4 +301,4 @@ if ($target) {
$tpl->display(PLUGIN_ROOT . '/templates/facture_ajouter.tpl'); $tpl->display(PLUGIN_ROOT . '/templates/facture_ajouter.tpl');
} else { } else {
$tpl->display(PLUGIN_ROOT . '/templates/facture_modifier.tpl'); $tpl->display(PLUGIN_ROOT . '/templates/facture_modifier.tpl');
} }

View File

@ -16,38 +16,27 @@ if (!$c)
throw new UserException("Ce client n'existe pas."); throw new UserException("Ce client n'existe pas.");
} }
if(f('save')) $form->runIf(f('save') && !$form->hasErrors(),
{ function () use ($client, $id)
$form->check('edit_client', [ {
'nom' => 'required|string', try
'adresse' => 'required|string', {
'code_postal' => 'required|string', $r = $client->edit($id,[
'ville' => 'required|string', 'nom' => f('nom'),
'telephone' => 'string', 'adresse' => f('adresse'),
'email' => 'email' 'code_postal' => f('code_postal'),
]); 'ville' => f('ville'),
'telephone' => f('telephone'),
'email' => f('email')
]);
if (!$form->hasErrors()) $r ? Utils::redirect(PLUGIN_ADMIN_URL . 'client.php?id='.(int)$id):'';
{ }
try catch (UserException $e)
{ {
$r = $client->edit($id,[ $form->addError($e->getMessage());
'nom' => f('nom'), }
'adresse' => f('adresse'), }, 'edit_client');
'code_postal' => f('code_postal'),
'ville' => f('ville'),
'telephone' => f('telephone'),
'email' => f('email')
]);
$r ? Utils::redirect(PLUGIN_ADMIN_URL . 'client.php?id='.(int)$id):'';
}
catch (UserException $e)
{
$form->addError($e->getMessage());
}
}
}
$tpl->assign('client', $c); $tpl->assign('client', $c);

View File

@ -6,39 +6,27 @@ require_once __DIR__ . '/_inc.php';
$session->requireAccess($session::SECTION_ACCOUNTING, $session::ACCESS_READ); $session->requireAccess($session::SECTION_ACCOUNTING, $session::ACCESS_READ);
if(f('add')) $form->runIf(f('add') && !$form->hasErrors(),
{ function () use ($client)
$form->check('add_client', [ {
'nom' => 'required|string', try
'adresse' => 'required|string', {
'code_postal' => 'required|string', $id = $client->add([
'ville' => 'required|string', 'nom' => f('nom'),
'telephone' => 'string', 'adresse' => f('adresse'),
'email' => 'email' 'code_postal' => f('code_postal'),
]); 'ville' => f('ville'),
'telephone' => f('telephone'),
if (!$form->hasErrors()) 'email' => f('email')
{ ]);
try
{
$id = $client->add([
'nom' => f('nom'),
'adresse' => f('adresse'),
'code_postal' => f('code_postal'),
'ville' => f('ville'),
'telephone' => f('telephone'),
'email' => f('email')
]);
$id ? Utils::redirect(PLUGIN_ADMIN_URL . 'client.php?id='.(int)$id):'';
}
catch (UserException $e)
{
$form->addError($e->getMessage());
}
}
}
$id ? Utils::redirect(PLUGIN_ADMIN_URL . 'client.php?id='.(int)$id):'';
}
catch (UserException $e)
{
$form->addError($e->getMessage());
}
}, 'add_client');
$list = $client->list(); $list = $client->list();
$list->loadFromQueryString(); $list->loadFromQueryString();

View File

@ -17,22 +17,18 @@ if (!$client)
throw new UserException("Ce document n'existe pas."); throw new UserException("Ce document n'existe pas.");
} }
if (f('delete')) $form->runIf(f('delete') && !$form->hasErrors(),
{ function () use ($facture, $f)
$form->check('delete_doc_'.$f->id); {
try {
if (!$form->hasErrors()) $facture->delete($f->id);
{ Utils::redirect(PLUGIN_ADMIN_URL . 'index.php');
try { }
$facture->delete($f->id); catch (UserException $e)
Utils::redirect(PLUGIN_ADMIN_URL . 'index.php'); {
} $form->addError($e->getMessage());
catch (UserException $e) }
{ });
$form->addError($e->getMessage());
}
}
}
$tpl->assign('doc', $f); $tpl->assign('doc', $f);
$tpl->display(PLUGIN_ROOT . '/templates/facture_supprimer.tpl'); $tpl->display(PLUGIN_ROOT . '/templates/facture_supprimer.tpl');