mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-06-22 22:39:04 -04:00
121 lines
4.3 KiB
PHP
121 lines
4.3 KiB
PHP
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
require_once("Report.php");
|
|
|
|
class Detailed_receivings extends Report
|
|
{
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function create(array $inputs)
|
|
{
|
|
//Create our temp tables to work with the data in our report
|
|
$this->Receiving->create_temp_table($inputs);
|
|
}
|
|
|
|
public function getDataColumns()
|
|
{
|
|
$columns = array(
|
|
'summary' => array(
|
|
array('id' => $this->lang->line('reports_receiving_id')),
|
|
array('receiving_date' => $this->lang->line('reports_date')),
|
|
array('quantity' => $this->lang->line('reports_quantity')),
|
|
array('employee_name' => $this->lang->line('reports_received_by')),
|
|
array('supplier' => $this->lang->line('reports_supplied_by')),
|
|
array('total' => $this->lang->line('reports_total'), 'sorter' => 'currency_sorter'),
|
|
array('payment_type' => $this->lang->line('reports_payment_type')),
|
|
array('reference' => $this->lang->line('receivings_reference')),
|
|
array('comment' => $this->lang->line('reports_comments'))),
|
|
'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, 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');
|
|
|
|
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, 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');
|
|
|
|
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();
|
|
}
|
|
}
|
|
?>
|