Fix Title customer order sendings card

This commit is contained in:
Alexandre SPANGARO 2021-05-09 22:41:52 +02:00
parent e5d0999073
commit 14d743db1e

View File

@ -48,7 +48,7 @@ if (!empty($conf->product->enabled) || !empty($conf->service->enabled)) {
} }
// Load translation files required by the page // Load translation files required by the page
$langs->loadLangs(array('orders', "companies", "bills", 'propal', 'deliveries', 'stocks', "productbatch", 'incoterm', 'other')); $langs->loadLangs(array('orders', 'sendings', 'companies', 'bills', 'propal', 'deliveries', 'stocks', 'productbatch', 'incoterm', 'other'));
$id = GETPOST('id', 'int'); // id of order $id = GETPOST('id', 'int'); // id of order
$ref = GETPOST('ref', 'alpha'); $ref = GETPOST('ref', 'alpha');
@ -232,7 +232,9 @@ if (!empty($conf->projet->enabled)) {
$formproject = new FormProjets($db); $formproject = new FormProjets($db);
} }
llxHeader('', $langs->trans('OrderCard'), ''); $title = $langs->trans('Order')." - ".$langs->trans('Shipments');
$help_url = 'EN:Customers_Orders|FR:Commandes_Clients|ES:Pedidos de clientes|DE:Modul_Kundenaufträge';
llxHeader('', $title, $help_url);
if ($id > 0 || !empty($ref)) { if ($id > 0 || !empty($ref)) {