webERP Forum
Packing Slip - Order in File Name - SOLVED - Printable Version

+- webERP Forum (http://www.weberp.org/forum)
+-- Forum: webERP Discussion (http://www.weberp.org/forum/forumdisplay.php?fid=1)
+--- Forum: Problems / Bugs? (http://www.weberp.org/forum/forumdisplay.php?fid=8)
+--- Thread: Packing Slip - Order in File Name - SOLVED (/showthread.php?tid=8194)



Packing Slip - Order in File Name - SOLVED - VortecCPI - 08-23-2018

PrintCustOrder_generic.php

I changed this:

PHP Code:
$pdf->OutputD($_SESSION['DatabaseName'] . '_PackingSlip_' date('Y-m-d') . '.pdf'); 

To this:
PHP Code:
$pdf->OutputD($_SESSION['DatabaseName'] . '_PackingSlip_' $_GET['TransNo'] . '_' date('Y-m-d') . '.pdf'); 



RE: Packing Slip - Order in File Name - SOLVED - TurboPT - 08-29-2018

Thanks, Paul!

Code change committed to the bug fixes branch.