This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/modules/invoice/classes/model/invoice.php

589 lines
14 KiB
PHP
Raw Normal View History

2010-11-29 22:41:08 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class provides invoice capabilities.
*
* @package OSB
* @subpackage Invoice
* @category Models
* @author Deon George
* @copyright (c) 2010 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
class Model_Invoice extends ORMOSB {
protected $_belongs_to = array(
'account'=>array()
);
protected $_has_many = array(
2011-07-13 22:59:32 +00:00
'invoice_item'=>array('far_key'=>'id'),
'invoice_item_tax'=>array('through'=>'invoice_item'),
2010-11-29 22:41:08 +00:00
'service'=>array('through'=>'invoice_item'),
'payment'=>array('through'=>'payment_item'),
'payment_item'=>array('far_key'=>'id'),
2010-11-29 22:41:08 +00:00
);
2011-08-02 06:20:11 +00:00
protected $_sorting = array(
'id'=>'DESC',
);
2011-07-14 09:09:03 +00:00
protected $_display_filters = array(
'date_orig'=>array(
array('Config::date',array(':value')),
),
'due_date'=>array(
array('Config::date',array(':value')),
),
'billed_amt'=>array(
array('Currency::display',array(':value')),
),
'credit_amt'=>array(
array('Currency::display',array(':value')),
),
'status'=>array(
array('StaticList_YesNo::display',array(':value')),
),
'total_amt'=>array(
array('Currency::display',array(':value')),
),
2010-11-29 22:41:08 +00:00
);
// Items belonging to an invoice
private $invoice_items = array();
private $subitems_load = FALSE;
public function __construct($id = NULL) {
// Load our model.
parent::__construct($id);
return $this->load_sub_items();
}
private function load_sub_items() {
// Load our sub items
if (! $this->subitems_load AND $this->loaded()) {
$this->invoice_items = $this->invoice_item->find_all()->as_array();
$this->subitems_load = TRUE;
}
return $this;
}
/**
* Return a list of invoice items for this payment.
*/
public function items() {
$this->load_sub_items();
return $this->invoice_items;
}
2010-11-29 22:41:08 +00:00
/**
* Display the Invoice Number
*/
2011-07-14 09:09:03 +00:00
public function id() {
2010-11-29 22:41:08 +00:00
return sprintf('%06s',$this->id);
}
/**
* Display the Invoice Reference Number
*/
public function refnum() {
2011-05-02 12:28:17 +00:00
return sprintf('%s-%06s',$this->account->accnum(),$this->id);
2010-11-29 22:41:08 +00:00
}
/**
* Display the amount due
*/
public function due($format=FALSE) {
// If the invoice is active calculate the due amount
$result = $this->status ? $this->total()-$this->payments_total() : 0;
2011-07-14 09:09:03 +00:00
// @todo This should not be required.
if ((Currency::round($result) == .01) or Currency::round($result) == .02)
$result = 0;
2011-05-02 12:28:17 +00:00
return $format ? Currency::display($result) : Currency::round($result);
2010-11-29 22:41:08 +00:00
}
2011-07-14 09:09:03 +00:00
/**
* Return the subtotal of all items
*/
2010-11-29 22:41:08 +00:00
public function subtotal($format=FALSE) {
$result = 0;
2011-07-14 09:09:03 +00:00
foreach ($this->items() as $ito)
$result += $ito->subtotal();
2011-07-14 09:09:03 +00:00
return $format ? Currency::display($result) : Currency::round($result);
2011-07-14 09:09:03 +00:00
}
public function discount($format=FALSE) {
2011-07-14 09:09:03 +00:00
$result = 0;
foreach ($this->items() as $ito)
$result += $ito->discount_amt;
return $format ? Currency::display($result) : Currency::round($result);
}
public function tax($format=FALSE) {
$result = 0;
foreach ($this->items() as $ito)
$result += $ito->tax();
2010-11-29 22:41:08 +00:00
return $format ? Currency::display($result) : Currency::round($result);
2010-11-29 22:41:08 +00:00
}
2011-07-14 09:09:03 +00:00
/**
* Return the total of all items
*/
2010-11-29 22:41:08 +00:00
public function total($format=FALSE) {
$result = 0;
2011-07-14 09:09:03 +00:00
foreach ($this->items() as $ito)
$result += $ito->total();
2010-11-29 22:41:08 +00:00
2011-07-14 09:09:03 +00:00
// Reduce by any credits
$result -= $this->credit_amt;
2010-11-29 22:41:08 +00:00
return $format ? Currency::display($result) : Currency::round($result);
2010-11-29 22:41:08 +00:00
}
2011-07-14 09:09:03 +00:00
public function payments() {
return $this->payment_item->find_all();
2011-07-14 09:09:03 +00:00
}
public function payments_total($format=FALSE) {
$result = 0;
2010-11-29 22:41:08 +00:00
2011-07-14 09:09:03 +00:00
foreach ($this->payments() as $po)
$result += $po->alloc_amt;
2010-11-29 22:41:08 +00:00
return $format ? Currency::display($result) : Currency::round($result);
}
/**
* Provide a sorted list of items by an index
*/
public function items_index($index) {
static $result = array();
// We'll return a cached result for quicker processing
if (! $this->_changed AND array_key_exists($index,$result))
return $result[$index];
foreach ($this->items() as $ito) {
switch ($index) {
case 'account':
if (! $ito->service_id)
$result[$index][$ito->id] = $ito;
break;
case 'period':
// We only show the services in this period
if (! is_null($ito->recurring_schedule) AND (empty($result[$index][$ito->recurring_schedule]) OR ! in_array($ito->service_id,$result[$index][$ito->recurring_schedule])))
$result[$index][$ito->recurring_schedule][] = $ito->service_id;
break;
case 'service':
default:
if ($ito->service_id)
$result[$index][$ito->service_id][] = $ito;
break;
}
}
return array_key_exists($index,$result) ? $result[$index] : array();
2010-11-29 22:41:08 +00:00
}
/**
* Get a list of invoice_items for a service_id on an invoice
*
* We use this to list details by service on an invoice.
2010-11-29 22:41:08 +00:00
*/
// @todo to retire
public function items_services(array $items=array()) {
$result = array();
if (! $items)
$items = $this->items();
foreach ($items as $ito)
if ($ito->service_id AND empty($result[$ito->service_id]))
$result[$ito->service_id] = $ito;
return $result;
}
// @todo to retire
public function items_invoice() {
$result = array();
$items = $this->items();
foreach ($items as $ito)
if (! $ito->service_id AND empty($result[$ito->id]))
$result[$ito->id] = $ito;
return $result;
2010-11-29 22:41:08 +00:00
}
/**
* Return all invoice items for a specific service
*/
public function items_service($service_id) {
$svs = $this->items_index('service');
if (array_key_exists($service_id,$svs)) {
Sort::MAsort($svs[$service_id],'item_type');
return $svs[$service_id];
} else
return array();
}
// @todo to retire
2010-11-29 22:41:08 +00:00
/**
* Return a list of periods and services
2011-07-14 09:09:03 +00:00
*
* This is so that we can list items summarised by billing period
2010-11-29 22:41:08 +00:00
*/
public function items_service_periods() {
$result = array();
$c = array();
foreach ($this->items() as $ito)
if ($ito->service_id) {
// If we have already covered a service with no recurring_schedule
if (! $ito->recurring_schedule AND in_array($ito->service_id,$c))
continue;
array_push($c,$ito->service_id);
$result[$ito->recurring_schedule][] = $ito;
}
return $result;
2010-11-29 22:41:08 +00:00
}
2011-05-02 12:28:17 +00:00
/**
* Summarise the items on an invoice
*
* We summaries based on product.
2011-05-02 12:28:17 +00:00
*/
// @todo
2011-05-02 12:28:17 +00:00
public function items_summary() {
2011-07-14 09:09:03 +00:00
$result = array();
2011-05-02 12:28:17 +00:00
foreach ($this->items() as $ito) {
// We only summarise item_type=0
if (! $ito->item_type == 0)
continue;
$t = $ito->product->name();
2011-05-02 12:28:17 +00:00
2011-07-14 09:09:03 +00:00
if (! isset($result[$t])) {
$result[$t]['quantity'] = 0;
$result[$t]['subtotal'] = 0;
2011-05-02 12:28:17 +00:00
}
2011-07-14 09:09:03 +00:00
$result[$t]['quantity'] += $ito->quantity;
$result[$t]['subtotal'] += $ito->subtotal();
2011-05-02 12:28:17 +00:00
}
2011-07-14 09:09:03 +00:00
return $result;
}
2011-05-02 12:28:17 +00:00
2010-11-29 22:41:08 +00:00
/**
* Calculate the total for items for a service
*/
public function items_service_total($sid) {
$total = 0;
foreach ($this->items_service($sid) as $ito)
2011-07-14 09:09:03 +00:00
$total += $ito->total();
2010-11-29 22:41:08 +00:00
return $total;
}
/**
* Calculate the tax of items for a service
*/
public function items_service_tax($sid) {
$total = 0;
foreach ($this->items_service($sid) as $ito)
$total += $ito->tax();
2010-11-29 22:41:08 +00:00
return $total;
}
/**
* Calculate the discounts of items for a service
2010-11-29 22:41:08 +00:00
*/
public function items_service_discount($sid) {
$total = 0;
2010-11-29 22:41:08 +00:00
foreach ($this->items_service($sid) as $ito)
$total += $ito->discount();
2010-11-29 22:41:08 +00:00
return $total;
2010-11-29 22:41:08 +00:00
}
/**
* Return a list of taxes used on this invoice
* @todo Move some of this to invoice_item_tax.
2010-11-29 22:41:08 +00:00
*/
public function tax_summary() {
2011-05-02 12:28:17 +00:00
$summary = array();
2010-11-29 22:41:08 +00:00
2011-07-14 09:09:03 +00:00
foreach ($this->items() as $ito) {
foreach ($ito->invoice_item_tax->find_all() as $item_tax) {
2010-11-29 22:41:08 +00:00
if (! isset($summary[$item_tax->tax_id]))
$summary[$item_tax->tax_id] = $item_tax->amount;
else
$summary[$item_tax->tax_id] += $item_tax->amount;
}
}
// @todo This should be removed eventually
if (! $summary)
$summary[1] = $this->tax();
2011-05-02 12:28:17 +00:00
return $summary;
2010-11-29 22:41:08 +00:00
}
2011-07-14 09:09:03 +00:00
/**
* Add an item to an invoice
*/
2010-11-29 22:41:08 +00:00
public function add_item() {
if ($this->loaded() and ! $this->invoice_items)
throw new Kohana_Exception('Need to load invoice_items?');
2010-11-29 22:41:08 +00:00
$c = count($this->invoice_items);
$this->invoice_items[$c] = ORM::factory('invoice_item');
return $this->invoice_items[$c];
}
public function min_due($date) {
2012-01-11 23:23:35 +00:00
return ($date < time()) ? time()+ORM::factory('invoice')->config('DUE_DAYS_MIN')*86400 : $date;
}
2011-05-14 07:35:33 +00:00
public function save(Validation $validation = NULL) {
// Our items will be clobbered once we save the object, so we need to save it here.
$items = $this->items();
2010-11-29 22:41:08 +00:00
// Save the invoice
2011-05-14 07:35:33 +00:00
parent::save($validation);
2010-11-29 22:41:08 +00:00
// Need to save the associated items and their taxes
if ($this->saved()) {
foreach ($items as $iio) {
$iio->invoice_id = $this->id;
2010-11-29 22:41:08 +00:00
if (! $iio->check()) {
2010-11-29 22:41:08 +00:00
// @todo Mark invoice as cancelled and write a memo, then...
throw new Kohana_Exception('Problem saving invoice_item for invoice :invoice - Failed check()',array(':invoice'=>$invoice->id));
}
$iio->save();
2010-11-29 22:41:08 +00:00
if (! $iio->saved()) {
2010-11-29 22:41:08 +00:00
// @todo Mark invoice as cancelled and write a memo, then...
throw new Kohana_Exception('Problem saving invoice_item for invoice :invoice - Failed save()',array(':invoice'=>$invoice->id));
}
// @todo Need to save discount information
}
2010-11-29 22:41:08 +00:00
} else
throw new Kohana_Exception('Couldnt save invoice for some reason?');
return TRUE;
2010-11-29 22:41:08 +00:00
}
/**
* Check the reminder value
*/
public function remind($key) {
if (! $this->loaded())
return NULL;
if (! trim($this->reminders))
return FALSE;
if (! preg_match('/^a:/',$this->reminders))
throw new Kohana_Exception('Reminder is not an array? (:reminder)',array(':remind',$this->reminders));
$remind = unserialize($this->reminders);
2011-09-27 11:22:13 +00:00
if (isset($remind[$key]))
return (is_array($remind[$key])) ? end($remind[$key]) : $remind[$key];
else
return FALSE;
}
public function set_remind($key,$value,$add=FALSE) {
if (! $this->loaded())
throw new Kohana_Exception('Cant call :method when a record not loaded.',array(':method',__METHOD__));
if (! trim($this->reminders)) {
$remind = array();
} else {
if (! preg_match('/^a:/',$this->reminders))
throw new Kohana_Exception('Reminder is not an array? (:reminder)',array(':remind',$this->reminders));
$remind = unserialize($this->reminders);
}
2011-09-27 11:22:13 +00:00
// If our value is null, we'll remove it.
if (is_null($value) AND isset($remind[$key]))
unset($remind[$key]);
elseif ($add)
$remind[$key][] = $value;
else
$remind[$key] = $value;
$this->reminders = serialize($remind);
$this->save();
return $this->saved();
}
/**
* Return a list of affiliates associated with this invoice (via the service)
*/
public function service_affiliates() {
$return = array();
foreach ($this->items() as $io)
array_push($return,$io->service->affiliate_id);
return $return;
}
2011-08-16 02:27:19 +00:00
/** LIST FUNCTIONS **/
2011-12-20 05:46:10 +00:00
/**
* Search for invoices matching a term
*/
public function list_autocomplete($term,$index='id') {
$return = array();
if (is_numeric($term)) {
$this->clear();
$value = 'account->name(TRUE)';
// Build our where clause
$this->where('id','like','%'.$term.'%');
// @todo This should limit the results so that users dont see other users services.
foreach ($this->find_all() as $o)
$return[$o->$index] = array(
'value'=>$o->$index,
'label'=>sprintf('INV %s: %s',$o->id,Table::resolve($o,$value)),
);
}
return $return;
}
private function _list_active() {
return ORM::factory('invoice')->where('status','=',1);
}
private function _list_due() {
static $result = array();
if (! $result)
foreach ($this->_list_active()->find_all() as $io)
if ($io->due())
array_push($result,$io);
return $result;
}
2011-08-16 02:27:19 +00:00
/**
* Identify all the invoices that are due
*/
public function list_overdue($time=NULL) {
$result = array();
2011-08-16 02:27:19 +00:00
if (is_null($time))
$time = time();
foreach ($this->_list_due() as $io)
if ($io->due_date <= $time)
array_push($result,$io);
return $result;
2011-08-16 02:27:19 +00:00
}
2011-09-27 11:22:13 +00:00
/**
* Return a list of invoices that are over their due date with/without auto billing
*/
public function list_overdue_billing($time=NULL,$billing=FALSE) {
$return = array();
foreach ($this->list_overdue($time) as $io) {
$i = FALSE;
foreach ($io->service->find_all() as $so)
if (($billing AND $so->account_billing_id) OR (! $billing AND ! $so->account_billing_id)) {
array_push($return,$io);
break;
}
}
return $return;
}
2011-08-16 02:27:19 +00:00
/**
* Return a list of invoices that are due, excluding overdue.
*/
public function list_due($time=NULL) {
$result = array();
foreach ($this->_list_due() as $io)
if ($io->due_date > time())
if (is_null($time))
array_push($result,$io);
elseif ($io->due_date <= $time)
array_push($result,$io);
return $result;
2011-08-16 02:27:19 +00:00
}
2011-10-12 22:20:08 +00:00
/**
* Return a list of invoices that need to be sent.
* @todo This should be optimised a little to return only invoices to send, instead of looking for them.
*/
public function list_tosend() {
return ORM::factory('invoice')->where('status','=',1)->where_open()->where('print_status','is',NULL)->or_where('print_status','!=',1)->where_close();
}
2011-10-12 22:20:08 +00:00
public function html() {
// @todo This should be in a config file.
$css = '<style type="text/css">';
$css .= 'table.box-left { border: 1px solid #AAAACC; margin-right: auto; }';
$css .= 'tr.head { font-weight: bold; }';
$css .= 'td.head { font-weight: bold; }';
$css .= 'td.right { text-align: right; }';
$css .= 'tr.odd { background-color: #FCFCFE; }';
$css .= 'tr.even { background-color: #F6F6F8; }';
$css .= '</style>';
2011-12-22 10:20:19 +00:00
$output = View::factory('invoice/user/email')
2011-10-12 22:20:08 +00:00
->set('mediapath',Route::get('default/media'))
->set('io',$this);
return $css.$output;
}
2010-11-29 22:41:08 +00:00
}
?>