mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-28 11:11:14 -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) git-svn-id: svn+ssh://svn.code.sf.net/p/opensourcepos/code/@113 c3eb156b-1dc0-44e1-88ae-e38439141b53
62 lines
2.1 KiB
PHP
62 lines
2.1 KiB
PHP
<?php
|
|
require_once("report.php");
|
|
class Summary_payments extends Report
|
|
{
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function getDataColumns()
|
|
{
|
|
return array($this->lang->line('reports_payment_type'), $this->lang->line('reports_total'));
|
|
}
|
|
|
|
public function getData(array $inputs)
|
|
{
|
|
$this->db->select('sales_payments.payment_type, SUM(payment_amount) as payment_amount', false);
|
|
$this->db->from('sales_payments');
|
|
$this->db->join('sales', 'sales.sale_id=sales_payments.sale_id');
|
|
$this->db->where('date(sale_time) BETWEEN "'. $inputs['start_date']. '" and "'. $inputs['end_date'].'"');
|
|
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("payment_type");
|
|
return $this->db->get()->result_array();
|
|
}
|
|
|
|
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->join('items', 'sales_items_temp.item_id = items.item_id');
|
|
$this->db->where('sale_date BETWEEN "'. $inputs['start_date']. '" and "'. $inputs['end_date'].'"');
|
|
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();
|
|
}
|
|
}
|
|
?>
|