diff --git a/htdocs/expedition/fiche.php b/htdocs/expedition/fiche.php index f9a8d612c00..246518b9646 100644 --- a/htdocs/expedition/fiche.php +++ b/htdocs/expedition/fiche.php @@ -181,7 +181,7 @@ if ($_REQUEST["action"] == 'confirm_delete' && $_REQUEST["confirm"] == 'yes') $result = $expedition->delete(); if ($result > 0) { - Header("Location: liste.php"); + Header("Location: ".DOL_URL_ROOT.'/expedition/index.php'); exit; } else @@ -357,7 +357,7 @@ if ($_GET["action"] == 'create') print '
| '; + print ' | |||
| '; if ($origin == 'commande' && $conf->commande->enabled) { print $langs->trans("RefOrder").' | '.img_object($langs->trans("ShowOrder"),'order').' '.$object->ref; @@ -377,12 +377,12 @@ if ($_GET["action"] == 'create') print ' | ||
| '.$langs->trans('Company').' | '; + print '|||
| '.$langs->trans('Company').' | '; print ''.$soc->getNomUrl(1).' | '; print '||
| '.$langs->trans("DateDeliveryPlanned").' | '; + print '|||
| '.$langs->trans("DateDeliveryPlanned").' | '; print ''; //print dol_print_date($object->date_livraison,"day"); // date_livraison come from order and will be stored into date_delivery planed. print $html->select_date($object->date_livraison?$object->date_livraison:-1,'date_delivery',1,1); | ||