Stable merged into unstable again (due to failure on binary file during previous...
[fa-stable.git] / config.default.php
index 692c87b5ba30d7355fa07da29371133a420821c2..5cd7fe20e010ba0807dda80c2d165990e60713d4 100644 (file)
@@ -11,7 +11,7 @@
 ***********************************************************************/
     //--------------------------------------------------
 
-       // User configurable variables
+       // User configurable variables
        //---------------------------------------------------
 
        /*Show debug messages returned from an error on the page.
 
 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).
@@ -64,6 +68,15 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        $power_by               = "FrontAccounting";
        $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;
 
@@ -76,12 +89,18 @@ 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;
 
@@ -116,7 +135,10 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
 
        /* suppress tax rates on documents. 0 = no, 1 = yes. */
        $suppress_tax_rates = 0;
-       
+
+       /* allow reopening closed transactions */
+       $allow_gl_reopen = 0;
+
        $dateformats    = array("MMDDYYYY", "DDMMYYYY", "YYYYMMDD");
        $dateseps               = array("/", ".", "-", " ");
        $thoseps                = array(",", ".", " ");
@@ -142,6 +164,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
        //-----------------------------------------------------------------------------------
 
@@ -194,25 +222,26 @@ if(isset($_SESSION["wa_current_user"])) {
 
 if (!defined('ICON_EDIT'))
 {
-       define("ICON_EDIT", "edit.gif");        
-       define("ICON_DELETE", "delete.gif");    
-       define("ICON_ADD", "ok.gif");   
-       define("ICON_UPDATE", "ok.gif");        
-       define("ICON_OK", "ok.gif");    
-       define("ICON_CANCEL", "cancel.png");    
-       define("ICON_GL", "gl.png");    
-       define("ICON_PRINT", "print.png");      
-       define("ICON_PDF", "pdf.gif");  
-       define("ICON_DOC", "invoice.gif");      
-       define("ICON_CREDIT", "credit.gif");    
-       define("ICON_RECEIVE", "receive.gif");  
-       define("ICON_DOWN", "download.gif");    
-       define("ICON_MONEY", "money.png");      
-       define("ICON_REMOVE", "remove.png");    
-       define("ICON_REPORT", "report.png");    
-       define("ICON_VIEW", "view.gif");        
+       define("ICON_EDIT", "edit.gif");
+       define("ICON_DELETE", "delete.gif");
+       define("ICON_ADD", "ok.gif");
+       define("ICON_UPDATE", "ok.gif");
+       define("ICON_OK", "ok.gif");
+       define("ICON_CANCEL", "cancel.png");
+       define("ICON_GL", "gl.png");
+       define("ICON_PRINT", "print.png");
+       define("ICON_PDF", "pdf.gif");
+       define("ICON_DOC", "invoice.gif");
+       define("ICON_CREDIT", "credit.gif");
+       define("ICON_RECEIVE", "receive.gif");
+       define("ICON_DOWN", "download.gif");
+       define("ICON_MONEY", "money.png");
+       define("ICON_REMOVE", "remove.png");
+       define("ICON_REPORT", "report.png");
+       define("ICON_VIEW", "view.gif");
        define("ICON_SUBMIT", "ok.gif");
-       define("ICON_ESCAPE", "escape.png");    
+       define("ICON_ESCAPE", "escape.png");
+       define("ICON_CLOSED", "closed.png");
 }
 
 ?>
\ No newline at end of file