New report included in core, Costed Inventory Movement Report (rep308.php).
authorJoe Hunt <joe.hunt.consulting@gmail.com>
Sat, 20 Apr 2013 17:07:25 +0000 (19:07 +0200)
committerJoe Hunt <joe.hunt.consulting@gmail.com>
Sat, 20 Apr 2013 17:07:25 +0000 (19:07 +0200)
reporting/rep308.php [new file with mode: 0644]
reporting/reports_main.php

diff --git a/reporting/rep308.php b/reporting/rep308.php
new file mode 100644 (file)
index 0000000..f7e1890
--- /dev/null
@@ -0,0 +1,225 @@
+<?php
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
+$page_security = 'SA_ITEMSVALREP';
+// ----------------------------------------------------------------
+// $ Revision: 2.0 $
+// Creator:    Jujuk
+// date_:      2011-05-24
+// Title:      Stock Movements
+// ----------------------------------------------------------------
+$path_to_root="..";
+
+include_once($path_to_root . "/includes/session.inc");
+include_once($path_to_root . "/includes/date_functions.inc");
+include_once($path_to_root . "/includes/ui/ui_input.inc");
+include_once($path_to_root . "/includes/data_checks.inc");
+include_once($path_to_root . "/gl/includes/gl_db.inc");
+include_once($path_to_root . "/sales/includes/db/sales_types_db.inc");
+include_once($path_to_root . "/inventory/includes/inventory_db.inc");
+
+//----------------------------------------------------------------------------------------------------
+
+inventory_movements();
+
+function fetch_items($category=0)
+{
+               $sql = "SELECT stock_id, stock.description AS name,
+                               stock.category_id,
+                               units,material_cost,
+                               cat.description
+                       FROM ".TB_PREF."stock_master stock LEFT JOIN ".TB_PREF."stock_category cat ON stock.category_id=cat.category_id
+                               WHERE mb_flag <> 'D'";
+               if ($category != 0)
+                       $sql .= " AND cat.category_id = ".db_escape($category);
+               $sql .= " ORDER BY stock.category_id, stock_id";
+
+    return db_query($sql,"No transactions were returned");
+}
+
+function trans_qty($stock_id, $location=null, $from_date, $to_date, $inward = true)
+{
+       if ($from_date == null)
+               $from_date = Today();
+
+       $from_date = date2sql($from_date);      
+
+       if ($to_date == null)
+               $to_date = Today();
+
+       $to_date = date2sql($to_date);
+
+       $sql = "SELECT ".($inward ? '' : '-')."SUM(qty) FROM ".TB_PREF."stock_moves
+               WHERE stock_id=".db_escape($stock_id)."
+               AND tran_date >= '$from_date' 
+               AND tran_date <= '$to_date'";
+
+       if ($location != '')
+               $sql .= " AND loc_code = ".db_escape($location);
+
+       if ($inward)
+               $sql .= " AND qty > 0 ";
+       else
+               $sql .= " AND qty < 0 ";
+
+       $result = db_query($sql, "QOH calculation failed");
+
+       $myrow = db_fetch_row($result); 
+
+       return $myrow[0];
+
+}
+
+//----------------------------------------------------------------------------------------------------
+
+function trans_qty_unit_cost($stock_id, $location=null, $from_date, $to_date, $inward = true)
+{
+       if ($from_date == null)
+               $from_date = Today();
+
+       $from_date = date2sql($from_date);      
+
+       if ($to_date == null)
+               $to_date = Today();
+
+       $to_date = date2sql($to_date);
+
+       $sql = "SELECT AVG (price)   FROM ".TB_PREF."stock_moves
+               WHERE stock_id=".db_escape($stock_id)."
+               AND tran_date >= '$from_date' 
+               AND tran_date <= '$to_date'";
+
+       if ($location != '')
+               $sql .= " AND loc_code = ".db_escape($location);
+
+       if ($inward)
+               $sql .= " AND qty > 0 ";
+       else
+               $sql .= " AND qty < 0 ";
+
+       $result = db_query($sql, "QOH calculation failed");
+
+       $myrow = db_fetch_row($result); 
+
+       return $myrow[0];
+
+}
+
+//----------------------------------------------------------------------------------------------------
+
+function inventory_movements()
+{
+    global $path_to_root;
+
+    $from_date = $_POST['PARAM_0'];
+    $to_date = $_POST['PARAM_1'];
+    $category = $_POST['PARAM_2'];
+       $location = $_POST['PARAM_3'];
+    $comments = $_POST['PARAM_4'];
+       $orientation = $_POST['PARAM_5'];
+       $destination = $_POST['PARAM_6'];
+       if ($destination)
+               include_once($path_to_root . "/reporting/includes/excel_report.inc");
+       else
+               include_once($path_to_root . "/reporting/includes/pdf_report.inc");
+
+       $orientation = ($orientation ? 'L' : 'P');
+       if ($category == ALL_NUMERIC)
+               $category = 0;
+       if ($category == 0)
+               $cat = _('All');
+       else
+               $cat = get_category_name($category);
+
+       if ($location == '')
+               $loc = _('All');
+       else
+               $loc = get_location_name($location);
+
+       $cols = array(0, 60, 130, 160, 185, 210, 250, 275, 300, 340, 365, 390, 430, 455, 480, 520);
+
+       $headers = array(_('Category'), _('Description'),       _('UOM'), '', '', _('OpeningStock'), '', '',_('StockIn'), '', '', _('Delivery'), '', '', _('ClosingStock'));
+       $headers2 = array("", "", "", _("QTY"), _("Rate"), _("Value"), _("QTY"), _("Rate"), _("Value"), _("QTY"), _("Rate"), _("Value"), _("QTY"), _("Rate"), _("Value"));
+
+       $aligns = array('left', 'left', 'left', 'right', 'right', 'right', 'right','right' ,'right', 'right', 'right','right', 'right', 'right', 'right');
+
+    $params =   array(         0 => $comments,
+                                               1 => array('text' => _('Period'), 'from' => $from_date, 'to' => $to_date),
+                                   2 => array('text' => _('Category'), 'from' => $cat, 'to' => ''),
+                                               3 => array('text' => _('Location'), 'from' => $loc, 'to' => ''));
+
+    $rep = new FrontReport(_('Costed Inventory Movements'), "CostedInventoryMovements", user_pagesize(), 8, $orientation);
+    if ($orientation == 'L')
+       recalculate_cols($cols);
+
+    $rep->Font();
+    $rep->Info($params, $cols, $headers2, $aligns, $cols, $headers, $aligns);
+    $rep->NewPage();
+
+       $result = fetch_items($category);
+
+       $catgor = '';
+       while ($myrow=db_fetch($result))
+       {
+               if ($catgor != $myrow['description'])
+               {
+                       $rep->NewLine(2);
+                       $rep->fontSize += 2;
+                       $rep->TextCol(0, 3, $myrow['category_id'] . " - " . $myrow['description']);
+                       $catgor = $myrow['description'];
+                       $rep->fontSize -= 2;
+                       $rep->NewLine();
+               }
+               $rep->NewLine();
+               $rep->TextCol(0, 1,     $myrow['stock_id']);
+               $rep->TextCol(1, 2, $myrow['name']);
+               $rep->TextCol(2, 3, $myrow['units']);
+               $qoh_start= $inward = $outward = $qoh_end = 0; 
+               
+               $qoh_start += get_qoh_on_date($myrow['stock_id'], $location, add_days($from_date, -1));
+               $qoh_end += get_qoh_on_date($myrow['stock_id'], $location, $to_date);
+               
+               $inward += trans_qty($myrow['stock_id'], $location, $from_date, $to_date);
+               $outward += trans_qty($myrow['stock_id'], $location, $from_date, $to_date, false);
+               $unitCost=$myrow['material_cost'];
+               $rep->AmountCol(3, 4, $qoh_start, get_qty_dec($myrow['stock_id']));
+//             $rep->AmountCol(4, 5, $unitCost, get_qty_dec($myrow['stock_id']));
+               $rep->AmountCol(4, 5, $myrow['material_cost']);
+               $rep->AmountCol(5, 6, $qoh_start*$unitCost, get_qty_dec($myrow['stock_id']));
+               
+               if($inward>0){
+                       $rep->AmountCol(6, 7, $inward, get_qty_dec($myrow['stock_id']));
+                       $unitCost_IN=   trans_qty_unit_cost($myrow['stock_id'], $location, $from_date, $to_date);
+                       $rep->AmountCol(7, 8, $unitCost_IN,get_qty_dec($myrow['stock_id']));
+                       $rep->AmountCol(8, 9, $inward*$unitCost_IN, get_qty_dec($myrow['stock_id']));
+               }
+               
+               if($outward>0){
+                       $rep->AmountCol(9, 10, $outward, get_qty_dec($myrow['stock_id']));
+               
+                       $unitCost_out=  trans_qty_unit_cost($myrow['stock_id'], $location, $from_date, $to_date, false);
+                       $rep->AmountCol(10, 11, $unitCost_out,get_qty_dec($myrow['stock_id']));
+                       $rep->AmountCol(11, 12, $outward*$unitCost_out, get_qty_dec($myrow['stock_id']));
+               }
+               
+               $rep->AmountCol(12, 13, $qoh_end, get_qty_dec($myrow['stock_id']));
+               $rep->AmountCol(13, 14, $myrow['material_cost'],get_qty_dec($myrow['stock_id']));
+               $rep->AmountCol(14, 15, $qoh_end*$unitCost, get_qty_dec($myrow['stock_id']));
+               
+               $rep->NewLine(0, 1);
+       }
+       $rep->Line($rep->row  - 4);
+
+       $rep->NewLine();
+    $rep->End();
+}
+
+?>
\ No newline at end of file
index 77f00de76c208045d76bb6242f11be18f8e3596d..c83a36933238d4c744270ec7792233bd29d1e8a9 100644 (file)
@@ -202,7 +202,6 @@ $reports->addReport(RC_SUPPLIER, 210, _('Print Remittances'),
                        _('Orientation') => 'ORIENTATION'));
 
 $reports->addReportClass(_('Inventory'), RC_INVENTORY);
-
 $reports->addReport(RC_INVENTORY,  301, _('Inventory &Valuation Report'),
        array(  _('End Date') => 'DATE',        
                        _('Inventory Category') => 'CATEGORIES',
@@ -227,14 +226,6 @@ $reports->addReport(RC_INVENTORY, 303, _('Stock &Check Sheets'),
                        _('Comments') => 'TEXTBOX',
                        _('Orientation') => 'ORIENTATION',
                        _('Destination') => 'DESTINATION'));
-$reports->addReport(RC_INVENTORY, 307, _('Inventory &Movement Report'),
-       array(  _('Start Date') => 'DATEBEGINM',
-                       _('End Date') => 'DATEENDM',
-                       _('Inventory Category') => 'CATEGORIES',
-                       _('Location') => 'LOCATIONS',
-                       _('Comments') => 'TEXTBOX',
-                       _('Orientation') => 'ORIENTATION',
-                       _('Destination') => 'DESTINATION'));                            
 $reports->addReport(RC_INVENTORY, 304, _('Inventory &Sales Report'),
        array(  _('Start Date') => 'DATEBEGINM',
                        _('End Date') => 'DATEENDM',
@@ -260,6 +251,22 @@ $reports->addReport(RC_INVENTORY, 306, _('Inventory P&urchasing Report'),
                        _('Comments') => 'TEXTBOX',
                        _('Orientation') => 'ORIENTATION',
                        _('Destination') => 'DESTINATION'));
+$reports->addReport(RC_INVENTORY, 307, _('Inventory &Movement Report'),
+       array(  _('Start Date') => 'DATEBEGINM',
+                       _('End Date') => 'DATEENDM',
+                       _('Inventory Category') => 'CATEGORIES',
+                       _('Location') => 'LOCATIONS',
+                       _('Comments') => 'TEXTBOX',
+                       _('Orientation') => 'ORIENTATION',
+                       _('Destination') => 'DESTINATION'));                            
+$reports->addReport(RC_INVENTORY, 308, _('C&osted Inventory Movement Report'),
+       array(  _('Start Date') => 'DATEBEGINM',
+                       _('End Date') => 'DATEENDM',
+                       _('Inventory Category') => 'CATEGORIES',
+                       _('Location') => 'LOCATIONS',
+                       _('Comments') => 'TEXTBOX',
+                       _('Orientation') => 'ORIENTATION',
+                       _('Destination') => 'DESTINATION'));                            
 
 $reports->addReportClass(_('Manufacturing'), RC_MANUFACTURE);
 $reports->addReport(RC_MANUFACTURE, 401, _('&Bill of Material Listing'),