mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-25 01:37:59 -05:00
17 lines
266 B
PHP
17 lines
266 B
PHP
<?php
|
|
|
|
class Token_invoice_sequence extends Token
|
|
{
|
|
private $CI;
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->CI =& get_instance();
|
|
}
|
|
|
|
public function get_value()
|
|
{
|
|
return $this->CI->Appconfig->acquire_save_next_invoice_sequence();
|
|
}
|
|
} |