ordersprinter/webapp/php/utilities/decimaldefs.php

7 lines
301 B
PHP
Raw Normal View History

2020-11-19 23:00:05 +01:00
<?php
2020-11-19 23:00:09 +01:00
defined('DECIMALSMALL') || define ( 'DECIMALSMALL','DECIMAL (15,2)' );
defined('DECIMALMIDDLE') || define ( 'DECIMALMIDDLE','DECIMAL (17,2)' );
2020-11-19 23:10:09 +01:00
defined('DECIMALMIDDLEEXACT') || define ( 'DECIMALMIDDLEEXACT','DECIMAL (17,6)' );
2020-11-19 23:00:09 +01:00
defined('DECIMALBIG') || define ( 'DECIMALBIG','DECIMAL (19,2)' );