X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep401.php;h=0113375efa720e1ed108f953520437f417c218d8;hb=7ba24fed715d41c0210f4395fd885ef34a483d5e;hp=29c89f7226f013e83d15d1ab47f766525a939ca0;hpb=45b9663b6305cb70c2f3f1782406232d3ed0d755;p=fa-stable.git diff --git a/reporting/rep401.php b/reporting/rep401.php index 29c89f72..0113375e 100644 --- a/reporting/rep401.php +++ b/reporting/rep401.php @@ -1,15 +1,15 @@ . + See the License here . ***********************************************************************/ -$page_security = 2; +$page_security = 'SA_BOMREP'; // ---------------------------------------------------------------- // $ Revision: 2.0 $ // Creator: Joe Hunt @@ -26,7 +26,6 @@ include_once($path_to_root . "/inventory/includes/db/items_db.inc"); //---------------------------------------------------------------------------------------------------- -// trial_inquiry_controls(); print_bill_of_material(); function getTransactions($from, $to) @@ -56,11 +55,14 @@ function print_bill_of_material() { global $path_to_root; - include_once($path_to_root . "/reporting/includes/pdf_report.inc"); - $frompart = $_POST['PARAM_0']; $topart = $_POST['PARAM_1']; $comments = $_POST['PARAM_2']; + $destination = $_POST['PARAM_3']; + if ($destination) + include_once($path_to_root . "/reporting/includes/excel_report.inc"); + else + include_once($path_to_root . "/reporting/includes/pdf_report.inc"); $cols = array(0, 50, 305, 375, 445, 515); @@ -71,7 +73,7 @@ function print_bill_of_material() $params = array( 0 => $comments, 1 => array('text' => _('Component'), 'from' => $frompart, 'to' => $topart)); - $rep = new FrontReport(_('Bill of Material Listing'), "BillOfMaterial.pdf", user_pagesize()); + $rep = new FrontReport(_('Bill of Material Listing'), "BillOfMaterial", user_pagesize()); $rep->Font(); $rep->Info($params, $cols, $headers, $aligns); @@ -104,9 +106,10 @@ function print_bill_of_material() $wc = get_work_centre($trans['workcentre_added']); $rep->TextCol(2, 3, get_location_name($trans['loc_code'])); $rep->TextCol(3, 4, $wc['name']); - $rep->TextCol(4, 5, number_format2($trans['quantity'], $dec)); + $rep->AmountCol(4, 5, $trans['quantity'], $dec); } $rep->Line($rep->row - 4); + $rep->NewLine(); $rep->End(); }