facturation/admin/client_modifier.php

45 lines
1.2 KiB
PHP
Raw Permalink Normal View History

2019-11-02 17:53:27 +01:00
<?php
2023-08-01 22:56:38 +02:00
namespace Paheko;
2019-11-02 17:53:27 +01:00
require_once __DIR__ . '/_inc.php';
2021-04-11 14:25:59 +02:00
$session->requireAccess($session::SECTION_ACCOUNTING, $session::ACCESS_WRITE);
2019-11-02 17:53:27 +01:00
2023-08-01 22:56:38 +02:00
f(['id' => 'required|numeric']);
2019-11-02 17:53:27 +01:00
$id = (int) qg('id');
$c = $client->get($id);
if (!$c)
{
throw new UserException("Ce client n'existe pas.");
}
$form->runIf(f('save') && !$form->hasErrors(),
2024-01-12 11:50:04 +01:00
function () use ($client, $id, $form)
{
try
{
$r = $client->edit($id,[
'nom' => f('nom'),
'adresse' => f('adresse'),
'code_postal' => f('code_postal'),
'ville' => f('ville'),
'siret' => f('siret'),
'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');
2019-11-02 17:53:27 +01:00
$tpl->assign('client', $c);
$tpl->display(PLUGIN_ROOT . '/templates/client_modifier.tpl');