Fix Title customer order documents card

This commit is contained in:
Alexandre SPANGARO 2021-05-09 22:36:02 +02:00
parent a908d302b2
commit 7ad4f13036

View File

@ -37,7 +37,7 @@ if (!empty($conf->projet->enabled)) {
} }
// Load translation files required by the page // Load translation files required by the page
$langs->loadLangs(array('companies', 'other', 'bills')); $langs->loadLangs(array('companies', 'other', 'bills', 'orders'));
$action = GETPOST('action', 'aZ09'); $action = GETPOST('action', 'aZ09');
$confirm = GETPOST('confirm'); $confirm = GETPOST('confirm');
@ -94,8 +94,9 @@ include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
/* /*
* View * View
*/ */
$title = $langs->trans('Order')." - ".$langs->trans('Documents');
llxHeader('', $langs->trans('Order'), 'EN:Customers_Orders|FR:Commandes_Clients|ES:Pedidos de clientes'); $help_url = 'EN:Customers_Orders|FR:Commandes_Clients|ES:Pedidos de clientes|DE:Modul_Kundenaufträge';
llxHeader('', $title, $help_url);
$form = new Form($db); $form = new Form($db);