44 lines
1.2 KiB
PHP
44 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Paheko;
|
|
|
|
require_once __DIR__ . '/_inc.php';
|
|
|
|
$session->requireAccess($session::SECTION_ACCOUNTING, $session::ACCESS_WRITE);
|
|
|
|
f(['id' => 'required|numeric']);
|
|
$id = (int) qg('id');
|
|
|
|
$c = $client->get($id);
|
|
|
|
if (!$c)
|
|
{
|
|
throw new UserException("Ce client n'existe pas.");
|
|
}
|
|
|
|
$form->runIf(f('save') && !$form->hasErrors(),
|
|
function () use ($client, $id)
|
|
{
|
|
try
|
|
{
|
|
$r = $client->edit($id,[
|
|
'nom' => f('nom'),
|
|
'adresse' => f('adresse'),
|
|
'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());
|
|
}
|
|
}, 'edit_client');
|
|
|
|
|
|
$tpl->assign('client', $c);
|
|
$tpl->display(PLUGIN_ROOT . '/templates/client_modifier.tpl');
|