mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-26 02:08:05 -05:00
database.sql script merged with current ospos one remaining problems in reporting (sale_type to add in sales_temp query?) data model should be refactored to allow more genericity for custom item locations (2+) inventory tracking should be adapted to use multiple locations (instead of duplicating items for different locations)
78 lines
3.5 KiB
PHP
78 lines
3.5 KiB
PHP
<?php
|
|
require_once("report.php");
|
|
class Specific_customer extends Report
|
|
{
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function getDataColumns()
|
|
{
|
|
return array('summary' => array($this->lang->line('reports_sale_id'), $this->lang->line('reports_date'), $this->lang->line('reports_items_purchased'), $this->lang->line('reports_sold_by'), $this->lang->line('reports_subtotal'), $this->lang->line('reports_total'), $this->lang->line('reports_tax'), $this->lang->line('reports_profit'), $this->lang->line('reports_payment_type'), $this->lang->line('reports_comments')),
|
|
'details' => array($this->lang->line('reports_name'), $this->lang->line('reports_category'),$this->lang->line('reports_serial_number'), $this->lang->line('reports_description'), $this->lang->line('reports_quantity_purchased'), $this->lang->line('reports_subtotal'), $this->lang->line('reports_total'), $this->lang->line('reports_tax'), $this->lang->line('reports_profit'),$this->lang->line('reports_discount'))
|
|
);
|
|
}
|
|
|
|
public function getData(array $inputs)
|
|
{
|
|
$this->db->select('sale_id, sale_date, sum(quantity_purchased) as items_purchased, CONCAT(first_name," ",last_name) as employee_name, sum(subtotal) as subtotal, sum(total) as total, sum(tax) as tax, sum(profit) as profit, payment_type, comment', false);
|
|
$this->db->from('sales_items_temp');
|
|
$this->db->join('people', 'sales_items_temp.employee_id = people.person_id');
|
|
$this->db->where('sale_date BETWEEN "'. $inputs['start_date']. '" and "'. $inputs['end_date'].'" and customer_id='.$inputs['customer_id']);
|
|
if ($inputs['sale_type'] == 'sales_retail')
|
|
{
|
|
$this->db->where('quantity_purchased > 0');
|
|
$this->db->where('sale_type', 'sale_stock');
|
|
}
|
|
elseif($inputs['sale_type'] == 'sales_wholesale')
|
|
{
|
|
$this->db->where('quantity_purchased > 0');
|
|
$this->db->where('sale_type', 'warehouse');
|
|
}
|
|
elseif ($inputs['sale_type'] == 'returns')
|
|
{
|
|
$this->db->where('quantity_purchased < 0');
|
|
}
|
|
$this->db->group_by('sale_id');
|
|
$this->db->order_by('sale_date');
|
|
|
|
$data = array();
|
|
$data['summary'] = $this->db->get()->result_array();
|
|
$data['details'] = array();
|
|
|
|
foreach($data['summary'] as $key=>$value)
|
|
{
|
|
$this->db->select('name, category, serialnumber, sales_items_temp.description, quantity_purchased, subtotal,total, tax, profit, discount_percent');
|
|
$this->db->from('sales_items_temp');
|
|
$this->db->join('items', 'sales_items_temp.item_id = items.item_id');
|
|
$this->db->where('sale_id = '.$value['sale_id']);
|
|
$data['details'][$key] = $this->db->get()->result_array();
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
|
|
public function getSummaryData(array $inputs)
|
|
{
|
|
$this->db->select('sum(subtotal) as subtotal, sum(total) as total, sum(tax) as tax, sum(profit) as profit');
|
|
$this->db->from('sales_items_temp');
|
|
$this->db->where('sale_date BETWEEN "'. $inputs['start_date']. '" and "'. $inputs['end_date'].'" and customer_id='.$inputs['customer_id']);
|
|
if ($inputs['sale_type'] == 'sales_retail')
|
|
{
|
|
$this->db->where('quantity_purchased > 0');
|
|
$this->db->where('sale_type', 'sale_stock');
|
|
}
|
|
elseif($inputs['sale_type'] == 'sales_wholesale')
|
|
{
|
|
$this->db->where('quantity_purchased > 0');
|
|
$this->db->where('sale_type', 'warehouse');
|
|
}
|
|
elseif ($inputs['sale_type'] == 'returns')
|
|
{
|
|
$this->db->where('quantity_purchased < 0');
|
|
}
|
|
return $this->db->get()->row_array();
|
|
}
|
|
}
|
|
?>
|