Fix: Gestion erreur plus complete

This commit is contained in:
Laurent Destailleur 2007-12-16 15:31:46 +00:00
parent 5313528ba1
commit e88a3758b1

View File

@ -115,10 +115,13 @@ if (($_POST['action'] == 'confirm_deleteproductline' && $_POST['confirm'] == 'ye
$outputlangs = new Translate(DOL_DOCUMENT_ROOT ."/langs",$conf);
$outputlangs->setDefaultLang($_REQUEST['lang_id']);
}
facture_pdf_create($db, $fac->id, '', $fac->modelpdf, $outputlangs);
Header('Location: '.$_SERVER["PHP_SELF"].'?facid='.$_GET['facid']);
exit;
$result=facture_pdf_create($db, $fac->id, '', $fac->modelpdf, $outputlangs);
if ($result > 0)
{
Header('Location: '.$_SERVER["PHP_SELF"].'?facid='.$_GET['facid']);
exit;
}
}
else
{
@ -1146,6 +1149,8 @@ if ($_REQUEST['action'] == 'builddoc') // En get ou en post
}
}
llxHeader('',$langs->trans('Bill'),'HelpInvoice');
$html = new Form($db);