mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-19 14:57:55 -05:00
Added cost and count to reports - Added cost in temp table, reports at bottom of page and in each summary and detailed report - Added count in all the reports - Renamed some report fields name to make it generic and consistent across views - Fixed few issues here and there - Adjusted some code indentation NOTE: Proper translation of word Cost is required in all the languages but English Improved Items suggestion - Added select to restrict results fields - Added distinct in suppliers instead of the array match - Added $is_deleted in model part but is not still effective Add copyright statements in COPYING license file - Added jekkos and FrancescoUK / daN4cat Other people that contributed should add their statements.
33 lines
1.1 KiB
PHP
33 lines
1.1 KiB
PHP
<?php
|
|
require_once("report.php");
|
|
class Inventory_low extends Report
|
|
{
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function getDataColumns()
|
|
{
|
|
return array($this->lang->line('reports_item_name'), $this->lang->line('reports_item_number'), $this->lang->line('reports_description'), $this->lang->line('reports_count'), $this->lang->line('reports_reorder_level'), $this->lang->line('reports_stock_location'));
|
|
}
|
|
|
|
public function getData(array $inputs)
|
|
{
|
|
$this->db->from('items');
|
|
$this->db->join('item_quantities','items.item_id=item_quantities.item_id');
|
|
$this->db->join('stock_locations','item_quantities.location_id=stock_locations.location_id');
|
|
$this->db->select('name, item_number, reorder_level, item_quantities.quantity, description, location_name');
|
|
$this->db->where('item_quantities.quantity <= reorder_level');
|
|
$this->db->where('items.deleted', 0);
|
|
$this->db->order_by('name');
|
|
|
|
return $this->db->get()->result_array();
|
|
}
|
|
|
|
public function getSummaryData(array $inputs)
|
|
{
|
|
return array();
|
|
}
|
|
}
|
|
?>
|