Incorrect Journal Balance (sales invoice) when many decimals in tax and price.
[fa-stable.git] / admin / dashboard.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12         $path_to_root = "..";
13
14         include_once($path_to_root . "/includes/session.inc");
15         include_once($path_to_root . "/includes/ui.inc");
16         include_once($path_to_root . "/includes/data_checks.inc");
17         include_once($path_to_root . "/reporting/includes/class.graphic.inc");
18         if (file_exists("$path_to_root/themes/".user_theme()."/dashboard.inc"))
19                 include_once("$path_to_root/themes/".user_theme()."/dashboard.inc"); // yse theme dashboard.inc
20         else
21                 include_once("$path_to_root/includes/dashboard.inc"); // here are all the dashboard routines.
22         $page_security = 'SA_SETUPDISPLAY'; // A very low access level. The real access level is inside the routines.
23         $app = isset($_GET['sel_app']) ? $_GET['sel_app'] : (isset($_POST['sel_app']) ? $_POST['sel_app'] : "orders");
24         if (get_post('id'))
25         {
26                 dashboard($app);
27                 exit;
28         }
29         
30         $js = "";
31         if ($SysPrefs->use_popup_windows)
32                 $js .= get_js_open_window(800, 500);
33
34         page(_($help_context = "Dashboard"), false, false, "", $js);
35         dashboard($app);
36         end_page();
37         exit;
38