Files
opensourcepos/application/models/Sale_suspended.php
2016-01-07 19:06:35 +00:00

174 lines
4.4 KiB
PHP

<?php
class Sale_suspended extends CI_Model
{
function get_all()
{
$this->db->from('sales_suspended');
$this->db->order_by('sale_id');
return $this->db->get();
}
public function get_info($sale_id)
{
$this->db->from('sales_suspended');
$this->db->where('sale_id',$sale_id);
$this->db->join('people', 'people.person_id = sales_suspended.customer_id', 'LEFT');
return $this->db->get();
}
function get_invoice_count()
{
$this->db->from('sales_suspended');
$this->db->where('invoice_number is not null');
return $this->db->count_all_results();
}
function get_sale_by_invoice_number($invoice_number)
{
$this->db->from('sales_suspended');
$this->db->where('invoice_number', $invoice_number);
return $this->db->get();
}
function exists($sale_id)
{
$this->db->from('sales_suspended');
$this->db->where('sale_id',$sale_id);
$query = $this->db->get();
return ($query->num_rows()==1);
}
function update($sale_data, $sale_id)
{
$this->db->where('sale_id', $sale_id);
$success = $this->db->update('sales_suspended',$sale_data);
return $success;
}
function save ($items,$customer_id,$employee_id,$comment,$invoice_number,$payments,$sale_id=false)
{
if(count($items)==0)
return -1;
$sales_data = array(
'sale_time' => date('Y-m-d H:i:s'),
'customer_id'=> $this->Customer->exists($customer_id) ? $customer_id : null,
'employee_id'=>$employee_id,
'comment'=>$comment,
'invoice_number'=>$invoice_number
);
//Run these queries as a transaction, we want to make sure we do all or nothing
$this->db->trans_start();
$this->db->insert('sales_suspended',$sales_data);
$sale_id = $this->db->insert_id();
foreach($payments as $payment_id=>$payment)
{
$sales_payments_data = array
(
'sale_id'=>$sale_id,
'payment_type'=>$payment['payment_type'],
'payment_amount'=>$payment['payment_amount']
);
$this->db->insert('sales_suspended_payments',$sales_payments_data);
}
foreach($items as $line=>$item)
{
$cur_item_info = $this->Item->get_info($item['item_id']);
$sales_items_data = array
(
'sale_id'=>$sale_id,
'item_id'=>$item['item_id'],
'line'=>$item['line'],
'description'=>character_limiter(base64_decode($item['description']), 30),
'serialnumber'=>character_limiter($item['serialnumber'], 30),
'quantity_purchased'=>$item['quantity'],
'discount_percent'=>$item['discount'],
'item_cost_price' => $cur_item_info->cost_price,
'item_unit_price'=>$item['price'],
'item_location'=>$item['item_location']
);
$this->db->insert('sales_suspended_items',$sales_items_data);
$customer = $this->Customer->get_info($customer_id);
if ($customer_id == -1 or $customer->taxable)
{
foreach($this->Item_taxes->get_info($item['item_id']) as $row)
{
$this->db->insert('sales_suspended_items_taxes', array(
'sale_id' =>$sale_id,
'item_id' =>$item['item_id'],
'line' =>$item['line'],
'name' =>$row['name'],
'percent' =>$row['percent']
));
}
}
}
$this->db->trans_complete();
if ($this->db->trans_status() === FALSE)
{
return -1;
}
return $sale_id;
}
function delete($sale_id)
{
//Run these queries as a transaction, we want to make sure we do all or nothing
$this->db->trans_start();
$this->db->delete('sales_suspended_payments', array('sale_id' => $sale_id));
$this->db->delete('sales_suspended_items_taxes', array('sale_id' => $sale_id));
$this->db->delete('sales_suspended_items', array('sale_id' => $sale_id));
$this->db->delete('sales_suspended', array('sale_id' => $sale_id));
$this->db->trans_complete();
return $this->db->trans_status();
}
function get_sale_items($sale_id)
{
$this->db->from('sales_suspended_items');
$this->db->where('sale_id',$sale_id);
return $this->db->get();
}
function get_sale_payments($sale_id)
{
$this->db->from('sales_suspended_payments');
$this->db->where('sale_id',$sale_id);
return $this->db->get();
}
function invoice_number_exists($invoice_number,$sale_id='')
{
$this->db->from('sales_suspended');
$this->db->where('invoice_number', $invoice_number);
if (!empty($sale_id))
{
$this->db->where('sale_id !=', $sale_id);
}
$query=$this->db->get();
return ($query->num_rows()==1);
}
function get_comment($sale_id)
{
$this->db->from('sales_suspended');
$this->db->where('sale_id',$sale_id);
return $this->db->get()->row()->comment;
}
}
?>