X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=config.default.php;h=161fec2537346e8df51a7206a46622fd1c88b4d9;hb=46ca4e0e56786a05c0b16ce02fb6f9a3de334eab;hp=bebb6a7103db01cbff5d49fb10cad8cd31e8cc7c;hpb=777422e8d5a3ba188e7420719e33322098075313;p=fa-stable.git diff --git a/config.default.php b/config.default.php index bebb6a71..161fec25 100644 --- a/config.default.php +++ b/config.default.php @@ -11,7 +11,7 @@ ***********************************************************************/ //-------------------------------------------------- - // User configurable variables + // User configurable variables //--------------------------------------------------- /*Show debug messages returned from an error on the page. @@ -20,15 +20,20 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_to_root'])) die("Restricted access"); + + if (!ini_get('date.timezone')) + ini_set('date.timezone', 'Europe/Berlin'); + // Log file for error/warning messages. Should be set to any location // writable by www server. When set to empty string logging is switched off. // Special value 'syslog' can be used for system logger usage (see php manual). //$error_logfile = ''; $error_logfile = dirname(__FILE__).'/tmp/errors.log'; - $debug = 1; - $show_sql = 0; - $go_debug = 0; - $pdf_debug = 0; + $debug = 1; // show sql on database errors + + $show_sql = 0; // show all sql queries in page footer for debugging purposes + $go_debug = 0; // set to 1 for basic debugging, or 2 to see also backtrace after failure. + $pdf_debug = 0; // display pdf source instead reports for debugging when $go_debug!=0 // set $sql_trail to 1 only if you want to perform bugtracking sql trail // Warning: this produces huge amount of data in sql_trail table. // Don't forget switch the option off and flush the table manually after @@ -36,9 +41,9 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ // $sql_trail = 0; // save all sql queries in sql_trail $select_trail = 0; // track also SELECT queries - if ($go_debug == 1) + if ($go_debug > 0) { - error_reporting(E_ALL); + error_reporting(-1); ini_set("display_errors", "On"); } else @@ -55,15 +60,25 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ } // Main Title $app_title = "FrontAccounting"; - // application version - $version = "2.2.2"; // Build for development purposes $build_version = date("d.m.Y", filemtime("$path_to_root/CHANGELOG.txt")); // Powered by $power_by = "FrontAccounting"; - $power_url = "http://frontaccounting.net"; + $power_url = "http://frontaccounting.com"; + + /* Do not print zero lines amount of 0.00 in Sales Documents if service item. 1 = do not */ + $no_zero_lines_amount = 1; + + /* Use icon for editkey (=true) righ of combobox. 1 = use, 0 = do not use */ + $use_icon_for_editkey = 0; + + /* Creates automatic a default branch with contact. Value 0 do not create auto branch */ + $auto_create_branch = 1; + + /* Save Report selections (a value > 0 means days to save. 0 = no save) */ + $save_report_selections = 0; /* use popup windows for views */ $use_popup_windows = 1; @@ -74,19 +89,28 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ /* use Audit Trails in GL */ $use_audit_trail = 0; + /* $show_voiced_gl_trans = 0, setting this to 1 will show the voided gl trans */ + $show_voided_gl_trans = 0; + /* use old style convert (income and expense in BS, PL) */ $use_oldstyle_convert = 0; /* show users online discretely in the footer */ $show_users_online = 0; + /* show item codes on purchase order */ + $show_po_item_codes = 0; + + /* default print destination. 0 = PDF/Printer, 1 = Excel */ + $def_print_destination = 0; + // Wiki context help configuration // If your help wiki use translated page titles uncomment next line // $old_style_help = 1; // this setting is depreciated and subject to removal in next FA versions // locally installed wiki module // $help_base_url = $path_to_root.'/modules/wiki/index.php?n='._('Help').'.'; - // context help feed from frontaccounting.net - // $help_base_url = 'http://frontaccounting.net/fawiki/index.php?n=Help.'; + // context help feed from frontaccounting.com + // $help_base_url = 'http://frontaccounting.com/fawiki/index.php?n=Help.'; // not used $help_base_url = null; @@ -106,6 +130,12 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ /* print_invoice_no. 0 = print reference number, 1 = print invoice number */ $print_invoice_no = 0; + /* 1 = print Subtotal tax excluded, tax and Total tax included */ + $alternative_tax_include_on_docs = 0; + + /* suppress tax rates on documents. 0 = no, 1 = yes. */ + $suppress_tax_rates = 0; + $dateformats = array("MMDDYYYY", "DDMMYYYY", "YYYYMMDD"); $dateseps = array("/", ".", "-", " "); $thoseps = array(",", ".", " "); @@ -116,14 +146,6 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ $pagesizes = array("Letter", "A4"); // default PDF pagesize - /* Default border and spacing for tables */ - /* Should be moved to CSS */ - - if (!isset($_SESSION['bordercolor'])) - $_SESSION['bordercolor'] = "#8cacbb"; - $table_style = "cellpadding=3 border=1 bordercolor='".$_SESSION['bordercolor']."' class='tablestyle'"; - $table_style2 = "cellpadding=3 border=1 bordercolor='#cccccc' class='tablestyle2'"; - /* Accounts Payable */ /* System check to see if quantity charged on purchase invoices exceeds the quantity received. If this parameter is checked the proportion by which the purchase invoice is an overcharge @@ -139,6 +161,12 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ $config_allocation_settled_allowance = 0.005; + /* Allow negative prices for dummy/service items. To be moved to GL db settings */ + $allow_negative_prices = 1; + + /* Show menu category icons in core themes */ + $show_menu_category_icons = 0; + // Internal configurable variables //----------------------------------------------------------------------------------- @@ -211,4 +239,5 @@ if (!defined('ICON_EDIT')) define("ICON_SUBMIT", "ok.gif"); define("ICON_ESCAPE", "escape.png"); } + ?> \ No newline at end of file