mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-26 18:28:11 -05:00
117 lines
4.3 KiB
PHP
117 lines
4.3 KiB
PHP
<?php
|
|
require_once("Report.php");
|
|
class Detailed_receivings extends Report
|
|
{
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function getDataColumns()
|
|
{
|
|
$columns = array(
|
|
'summary' => array(
|
|
'id' => $this->lang->line('reports_receiving_id'),
|
|
'receiving_date' => $this->lang->line('reports_date'),
|
|
'quantity' => $this->lang->line('reports_quantity'),
|
|
'employee' => $this->lang->line('reports_received_by'),
|
|
'supplier' => $this->lang->line('reports_supplied_by'),
|
|
'total' => $this->lang->line('reports_total'),
|
|
'payment_type' => $this->lang->line('reports_payment_type'),
|
|
'reference' => $this->lang->line('receivings_reference'),
|
|
'comment' => $this->lang->line('reports_comments'),
|
|
'edit' => ''),
|
|
'details' => array(
|
|
$this->lang->line('reports_item_number'),
|
|
$this->lang->line('reports_name'),
|
|
$this->lang->line('reports_category'),
|
|
$this->lang->line('reports_quantity'),
|
|
$this->lang->line('reports_total'),
|
|
$this->lang->line('reports_discount'))
|
|
);
|
|
|
|
return $columns;
|
|
}
|
|
|
|
public function getDataByReceivingId($receiving_id)
|
|
{
|
|
$this->db->select('receiving_id, DATE_FORMAT(receiving_date, "%d-%m-%Y") AS receiving_date, SUM(quantity_purchased) AS items_purchased, CONCAT(employee.first_name, " ", employee.last_name) AS employee_name, supplier.company_name AS supplier_name, SUM(subtotal) AS subtotal, SUM(total) AS total, SUM(profit) AS profit, payment_type, comment, reference');
|
|
$this->db->from('receivings_items_temp');
|
|
$this->db->join('people AS employee', 'receivings_items_temp.employee_id = employee.person_id');
|
|
$this->db->join('suppliers AS supplier', 'receivings_items_temp.supplier_id = supplier.person_id', 'left');
|
|
$this->db->where('receiving_id', $receiving_id);
|
|
|
|
return $this->db->get()->row_array();
|
|
}
|
|
|
|
public function getData(array $inputs)
|
|
{
|
|
$this->db->select('receiving_id, receiving_date, SUM(quantity_purchased) AS items_purchased, CONCAT(employee.first_name," ",employee.last_name) AS employee_name, supplier.company_name AS supplier_name, SUM(total) AS total, SUM(profit) AS profit, payment_type, comment, reference');
|
|
$this->db->from('receivings_items_temp');
|
|
$this->db->join('people AS employee', 'receivings_items_temp.employee_id = employee.person_id');
|
|
$this->db->join('suppliers AS supplier', 'receivings_items_temp.supplier_id = supplier.person_id', 'left');
|
|
$this->db->where('receiving_date BETWEEN '. $this->db->escape($inputs['start_date']). ' AND '. $this->db->escape($inputs['end_date']));
|
|
|
|
if ($inputs['location_id'] != 'all')
|
|
{
|
|
$this->db->where('item_location', $inputs['location_id']);
|
|
}
|
|
if ($inputs['receiving_type'] == 'receiving')
|
|
{
|
|
$this->db->where('quantity_purchased > 0');
|
|
}
|
|
elseif ($inputs['receiving_type'] == 'returns')
|
|
{
|
|
$this->db->where('quantity_purchased < 0');
|
|
}
|
|
elseif ($inputs['receiving_type'] == 'requisitions')
|
|
{
|
|
$this->db->having('items_purchased = 0');
|
|
}
|
|
$this->db->group_by('receiving_id');
|
|
$this->db->order_by('receiving_date');
|
|
|
|
$data = array();
|
|
$data['summary'] = $this->db->get()->result_array();
|
|
$data['details'] = array();
|
|
|
|
foreach($data['summary'] as $key=>$value)
|
|
{
|
|
$this->db->select('name, item_number, category, quantity_purchased, serialnumber,total, discount_percent, item_location');
|
|
$this->db->select($this->db->dbprefix('receivings_items_temp').".receiving_quantity");
|
|
$this->db->from('receivings_items_temp');
|
|
$this->db->join('items', 'receivings_items_temp.item_id = items.item_id');
|
|
$this->db->where('receiving_id = '.$value['receiving_id']);
|
|
$data['details'][$key] = $this->db->get()->result_array();
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
|
|
public function getSummaryData(array $inputs)
|
|
{
|
|
$this->db->select('SUM(total) AS total');
|
|
$this->db->from('receivings_items_temp');
|
|
$this->db->where('receiving_date BETWEEN '. $this->db->escape($inputs['start_date']). ' AND '. $this->db->escape($inputs['end_date']));
|
|
|
|
if ($inputs['location_id'] != 'all')
|
|
{
|
|
$this->db->where('item_location', $inputs['location_id']);
|
|
}
|
|
if ($inputs['receiving_type'] == 'receiving')
|
|
{
|
|
$this->db->where('quantity_purchased > 0');
|
|
}
|
|
elseif ($inputs['receiving_type'] == 'returns')
|
|
{
|
|
$this->db->where('quantity_purchased < 0');
|
|
}
|
|
elseif ($inputs['receiving_type'] == 'requisitions')
|
|
{
|
|
$this->db->where('quantity_purchased = 0');
|
|
}
|
|
|
|
return $this->db->get()->row_array();
|
|
}
|
|
}
|
|
?>
|