mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-03 15:07:53 -05:00
42 lines
1.3 KiB
PHP
42 lines
1.3 KiB
PHP
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
require_once("Report.php");
|
|
|
|
class Inventory_low extends Report
|
|
{
|
|
public function getDataColumns()
|
|
{
|
|
return array(
|
|
array('item_name' => $this->lang->line('reports_item_name')),
|
|
array('item_number' => $this->lang->line('reports_item_number')),
|
|
array('quantity' => $this->lang->line('reports_quantity')),
|
|
array('reorder_level' => $this->lang->line('reports_reorder_level')),
|
|
array('location_name' => $this->lang->line('reports_stock_location')));
|
|
}
|
|
|
|
public function getData(array $inputs)
|
|
{
|
|
$query = $this->db->query("SELECT " . $this->Item->get_item_name('name') . ",
|
|
items.item_number,
|
|
item_quantities.quantity,
|
|
items.reorder_level,
|
|
stock_locations.location_name
|
|
FROM " . $this->db->dbprefix('items') . " AS items
|
|
JOIN " . $this->db->dbprefix('item_quantities') . " AS item_quantities ON items.item_id = item_quantities.item_id
|
|
JOIN " . $this->db->dbprefix('stock_locations') . " AS stock_locations ON item_quantities.location_id = stock_locations.location_id
|
|
WHERE items.deleted = 0
|
|
AND items.stock_type = 0
|
|
AND item_quantities.quantity <= items.reorder_level
|
|
AND stock_locations.deleted = 0
|
|
ORDER BY items.name");
|
|
|
|
return $query->result_array();
|
|
}
|
|
|
|
public function getSummaryData(array $inputs)
|
|
{
|
|
return array();
|
|
}
|
|
}
|
|
?>
|