X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Ftypes.inc;h=dc2145eb9012051d5cafa0499ccb0bb05ae03f34;hb=cfaa5cec1f5137bcc1599a4306879e3265d1dacd;hp=6f6744dd9f64c874139b9542d55a5ac698e6e3cc;hpb=c164d1f25c5258939976042fa8796b71ac54c188;p=fa-stable.git diff --git a/includes/types.inc b/includes/types.inc index 6f6744dd..dc2145eb 100644 --- a/includes/types.inc +++ b/includes/types.inc @@ -186,8 +186,9 @@ define('CL_EXPENSE', 6); function get_class_type_convert($ctype) { - global $use_oldstyle_convert; - if (isset($use_oldstyle_convert) && $use_oldstyle_convert == 1) + global $SysPrefs; + + if (isset($SysPrefs->use_oldstyle_convert) && $SysPrefs->use_oldstyle_convert == 1) return (($ctype >= CL_INCOME || $ctype == CL_NONE) ? -1 : 1); else return ((($ctype >= CL_LIABILITIES && $ctype <= CL_INCOME) || $ctype == CL_NONE) ? -1 : 1); @@ -242,6 +243,9 @@ define('BO_SUPPLIER', 3); include_once($path_to_root . '/includes/sysnames.inc'); +// tax register type +define('TR_OUTPUT', 0); // sales +define('TR_INPUT', 1); // purchase //--------------------------------------------------------------------------------- // Constants optionally redefined locally // @@ -266,4 +270,3 @@ defined('ICON_SUBMIT') || define('ICON_SUBMIT', 'ok.gif'); defined('ICON_ESCAPE') || define('ICON_ESCAPE', 'escape.png'); defined('ICON_ALLOC') || define('ICON_ALLOC', 'alloc.png'); -?> \ No newline at end of file