mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-07 16:39:40 -04:00
14 lines
330 B
PHP
14 lines
330 B
PHP
<?php
|
|
|
|
function to_quantity($number)
|
|
{
|
|
$CI =& get_instance();
|
|
|
|
$decimals = $CI->config->item('quantity_decimals') ? $CI->config->item('quantity_decimals') : 0;
|
|
$decimal_point = $CI->config->item('decimal_point') ? $CI->config->item('decimal_point') : '.';
|
|
|
|
return number_format($number, $decimals, $decimal_point, '');
|
|
}
|
|
|
|
?>
|