bf68576823f16072319ffbdb224f34a1d16a7cf4
[fa-stable.git] / includes / prefs / sysprefs.inc
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 include_once($path_to_root . "/admin/db/company_db.inc");
13
14 class sys_prefs 
15 {
16         var $prefs;
17         var $db_ok; // check whether database has been upgraded after src update.
18
19         function sys_prefs()
20         {
21                 global $path_to_root;
22
23                 include $path_to_root.'/config.default.php';
24                 include $path_to_root.'/config.php';
25
26                 // set system wide preferences
27                 foreach(get_defined_vars() as $name => $value)
28                         $this->$name = $value;
29
30                 if (!@$this->time_zone)
31                         $this->time_zone = ini_get('date.timezone');
32
33                 if (!$this->time_zone)
34                         $this->time_zone = 'Europe/Berlin';
35
36             ini_set('date.timezone', $this->time_zone);
37         }
38
39         function allow_negative_stock() 
40         {
41                 return $this->prefs['allow_negative_stock'];
42         }
43
44     /* Sherifoz 26.06.03 Proportion by which items can be received over the quantity that is specified in a purchase
45     invoice
46     The figure entered is interpreted as a percentage ie 10 means 0.1 or 10% not 10 times
47     */
48         function over_receive_allowance() 
49         {
50                 return $this->prefs['po_over_receive'];
51         }
52         
53     /* Proportion by which a purchase invoice line is an overcharge for a purchase order item received
54     is an overcharge. If the overcharge is more than this percentage then an error is reported and
55     purchase invoice line cannot be entered
56     The figure entered is interpreted as a percentage ie 20 means 0.2 or 20% not 20 times
57     */  
58         function over_charge_allowance() 
59         {
60                 return $this->prefs['po_over_charge'];
61         }
62         
63         function default_credit_limit() 
64         {
65                 return $this->prefs['default_credit_limit'];
66         }                               
67         
68         function default_wo_required_by() 
69         {
70                 return $this->prefs['default_workorder_required'];
71         }
72
73         function default_quote_valid_days() 
74         {
75                 return $this->prefs['default_quote_valid_days'];
76         }
77
78         function default_delivery_required_by() 
79         {
80                 return $this->prefs['default_delivery_required'];
81         }
82
83         function default_receival_required_by() 
84         {
85                 return $this->prefs['default_receival_required'];
86         }
87
88         function default_dimension_required_by() 
89         {
90                 return $this->prefs['default_dim_required'];
91         }       
92         
93         function auto_currency_revaluation() 
94         {
95                 return $this->prefs['auto_curr_reval'];
96         }       
97         
98         function allocation_settled_allowance()
99         {
100                 return $this->config_allocation_settled_allowance;
101         }
102
103         function no_zero_lines_amount() 
104         {
105                 return $this->prefs['no_zero_lines_amount'];
106         }
107
108         function show_po_item_codes() 
109         {
110                 return $this->prefs['show_po_item_codes'];
111         }
112
113         function accounts_alpha() 
114         {
115                 return $this->prefs['accounts_alpha'];
116         }
117
118         function loc_notification() 
119         {
120                 return $this->prefs['loc_notification'];
121         }
122
123         function print_invoice_no() 
124         {
125                 return $this->prefs['print_invoice_no'];
126         }
127
128         function allow_negative_prices() 
129         {
130                 return $this->prefs['allow_negative_prices'];
131         }
132
133         function print_item_images_on_quote() 
134         {
135                 return $this->prefs['print_item_images_on_quote'];
136         }
137
138         function alternative_tax_include_on_docs() 
139         {
140                 return $this->prefs['alternative_tax_include_on_docs'];
141         }
142
143         function suppress_tax_rates() 
144         {
145                 return $this->prefs['suppress_tax_rates'];
146         }
147 }
148