Bank Transfer: fixed typo in input description.
[fa-stable.git] / config.default.php
index 2139177603e240a96dbca66a58049088bd3d8f48..7067ae786a7d83cbca5ceee37245da6749503657 100644 (file)
@@ -109,6 +109,9 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        /* default print destination. 0 = PDF/Printer, 1 = Excel */
        $def_print_destination = 0;
 
+       /* default print orientation. 0 = Portrait, 1 = Landscape */
+       $def_print_orientation = 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
@@ -278,4 +281,21 @@ $login_max_attempts = 10;
 $xr_providers = array("ECB", "YAHOO", "GOOGLE", "BLOOMBERG");
 $dflt_xr_provider = 0;
 
-?>
\ No newline at end of file
+/*
+       Set to true when remote service is authoritative source of exchange rates, and can be stored automatically without
+       manual edition. Otherwise exrate is stored on first new currency transaction of the day.
+*/
+$xr_provider_authoritative = false;
+
+/*
+       Optional sorting sales documents lines during edition according to item code
+*/
+$sort_sales_items = false;
+
+/*
+       Trial Balance opening balance presentation option.
+       When set to true past years part of opening balance is cleared.
+*/
+$clear_trial_balance_opening = false;
+
+?>