Files
opensourcepos/app/Models/Tokens/Token_invoice_count.php
objecttothis e90b5b87da Replace tabs with spaces (#4196)
Signed-off-by: objecttothis <objecttothis@gmail.com>
2025-03-28 21:24:21 +04:00

40 lines
614 B
PHP

<?php
namespace App\Models\Tokens;
use App\Models\Sale;
/**
* Token_invoice_count class
*
* @property sale sale
*
*/
class Token_invoice_count extends Token
{
/**
* @param string $value
*/
public function __construct(string $value = '')
{
parent::__construct($value);
}
/**
* @return string
*/
public function token_id(): string
{
return 'CO';
}
/**
* @return int
*/
public function get_value(): int
{
$sale = model(Sale::class);
return empty($value) ? $sale->get_invoice_count() : $value;
}
}