Removed obsolete $tabs global array, tab ids retrieved from $_SESSION['App']
[fa-stable.git] / includes / types.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 //----------------------------------------------------------------------------------
13 //      FrontAccounting system transaction types
14 //
15 define('ST_JOURNAL', 0);
16
17 define('ST_BANKPAYMENT', 1);
18 define('ST_BANKDEPOSIT', 2);
19 define('ST_BANKTRANSFER', 4);
20
21 define('ST_SALESINVOICE', 10);
22 define('ST_CUSTCREDIT', 11);
23 define('ST_CUSTPAYMENT', 12);
24 define('ST_CUSTDELIVERY', 13);
25
26 define('ST_LOCTRANSFER', 16);
27 define('ST_INVADJUST', 17);
28
29 define('ST_PURCHORDER', 18);
30 define('ST_SUPPINVOICE', 20);
31 define('ST_SUPPCREDIT', 21);
32 define('ST_SUPPAYMENT', 22);
33 define('ST_SUPPRECEIVE', 25);
34
35 define('ST_WORKORDER', 26);
36 define('ST_MANUISSUE', 28);
37 define('ST_MANURECEIVE', 29);
38
39
40 define('ST_SALESORDER', 30);
41 define('ST_SALESQUOTE', 32);
42 define('ST_COSTUPDATE', 35);
43 define('ST_DIMENSION', 40);
44
45 $systypes_array = array (
46         ST_JOURNAL => _("Journal Entry"),
47         ST_BANKPAYMENT => _("Bank Payment"),
48         ST_BANKDEPOSIT => _("Bank Deposit"),
49         ST_BANKTRANSFER => _("Funds Transfer"),
50         ST_SALESINVOICE => _("Sales Invoice"),
51         ST_CUSTCREDIT => _("Customer Credit Note"),
52         ST_CUSTPAYMENT => _("Customer Payment"),
53         ST_CUSTDELIVERY => _("Delivery Note"),
54         ST_LOCTRANSFER => _("Location Transfer"),
55         ST_INVADJUST => _("Inventory Adjustment"),
56         ST_PURCHORDER => _("Purchase Order"),
57         ST_SUPPINVOICE => _("Supplier Invoice"),
58         ST_SUPPCREDIT => _("Supplier Credit Note"),
59         ST_SUPPAYMENT => _("Supplier Payment"),
60         ST_SUPPRECEIVE => _("Purchase Order Delivery"),
61         ST_WORKORDER => _("Work Order"),
62         ST_MANUISSUE => _("Work Order Issue"),
63         ST_MANURECEIVE => _("Work Order Production"),
64         ST_SALESORDER => _("Sales Order"),
65         ST_SALESQUOTE => _("Sales Quotation"),
66         ST_COSTUPDATE => _("Cost Update"),
67         ST_DIMENSION => _("Dimension")
68         );
69
70 //----------------------------------------------------------------------------------
71 //              Bank transaction types
72 //
73 define('BT_TRANSFER', 0);
74 define('BT_CHEQUE', 1);
75 define('BT_CREDIT', 2);
76 define('BT_CASH', 3);
77
78 $bank_account_types = array (
79         BT_TRANSFER => _("Savings Account"),
80                 _("Chequing Account"),
81                 _("Credit Account"),
82                 _("Cash Account")
83         );
84
85 $bank_transfer_types = array(
86         BT_TRANSFER => _("Transfer"),
87                         _("Cheque"),
88                         _("Credit"),
89                         _("Cash")
90         );
91
92 include_once($path_to_root . "/manufacturing/includes/manufacturing_db.inc");
93 include_once($path_to_root . "/purchasing/includes/purchasing_db.inc");
94 include_once($path_to_root . "/sales/includes/sales_db.inc");
95 include_once($path_to_root . "/dimensions/includes/dimensions_db.inc");
96 //----------------------------------------------------------------------------------
97 //      Payment types
98 //
99 define('PT_MISC', 0);
100 define('PT_WORKORDER', 1);
101 define('PT_CUSTOMER', 2);
102 define('PT_SUPPLIER', 3);
103 define('PT_QUICKENTRY', 4);
104 define('PT_DIMESION', 5);
105
106 $payment_person_types = array (
107         PT_MISC => _("Miscellaneous"),
108                                 _("Work Order"),
109                                 _("Customer"),
110                                 _("Supplier"),
111                                 _("Quick Entry")
112         );
113
114 function payment_person_currency($type, $person_id)  {
115         switch ($type)
116         {
117                 case PT_MISC :
118                 case PT_QUICKENTRY :
119                 case PT_WORKORDER :
120                         return get_company_currency();
121
122                 case PT_CUSTOMER :
123                         return get_customer_currency($person_id);
124
125                 case PT_SUPPLIER :
126                         return get_supplier_currency($person_id);
127
128                 default :
129                         return get_company_currency();
130         }
131 }
132
133 function payment_person_name($type, $person_id, $full=true) {
134         global $payment_person_types;
135
136         switch ($type)
137         {
138                 case PT_MISC :
139                         return $person_id;
140                 case PT_QUICKENTRY :
141                         $qe = get_quick_entry($person_id);
142                         return ($full ? $payment_person_types[$type] . " ":"") . $qe["description"];
143                 case PT_WORKORDER :
144                         global $wo_cost_types;
145                         return $wo_cost_types[$person_id];
146                 case PT_CUSTOMER :
147                         return ($full ?$payment_person_types[$type] . " ":"") . get_customer_name($person_id);
148                 case PT_SUPPLIER :
149                         return ($full ? $payment_person_types[$type] . " ":"") . get_supplier_name($person_id);
150                 default :
151                         //DisplayDBerror("Invalid type sent to person_name");
152                         //return;
153                         return '';
154         }
155 }
156
157 function payment_person_has_items($type) {
158         switch ($type)
159         {
160                 case PT_MISC :
161                         return true;
162                 case PT_QUICKENTRY :
163                         return db_has_quick_entries();
164                 case PT_WORKORDER : // 070305 changed to open workorders JH
165                         return db_has_open_workorders();
166                 case PT_CUSTOMER :
167                         return db_has_customers();
168                 case PT_SUPPLIER :
169                         return db_has_suppliers();
170                 default :
171                         display_db_error("Invalid type sent to has_items", "");
172                         return false;
173         }
174 }
175
176 //----------------------------------------------------------------------------------
177 //      Manufacturing types
178 //
179 define('WO_ASSEMBLY', 0);
180 define('WO_UNASSEMBLY', 1);
181 define('WO_ADVANCED', 2);
182
183 $wo_types_array = array (
184         WO_ASSEMBLY => _("Assemble"),
185         WO_UNASSEMBLY => _("Unassemble"),
186         WO_ADVANCED => _("Advanced Manufacture")
187         );
188
189 define('WO_LABOUR', 0);
190 define('WO_OVERHEAD', 1);
191
192 $wo_cost_types = array(
193                 WO_LABOUR => _("Labour Cost"),
194                 WO_OVERHEAD => _("Overhead Cost"),
195 );
196
197 //----------------------------------------------------------------------------------
198 //      GL account classes
199 //
200 define('CL_NONE', 0); // for backward compatibility
201 define('CL_ASSETS', 1);
202 define('CL_LIABILITIES', 2);
203 define('CL_EQUITY', 3);
204 define('CL_INCOME', 4);
205 define('CL_COGS', 5);
206 define('CL_EXPENSE', 6);
207
208 $class_types = array(
209                 CL_ASSETS => _("Assets"),
210                 CL_LIABILITIES => _("Liabilities"),
211                 CL_EQUITY => _("Equity"),
212                 CL_INCOME => _("Income"),
213                 CL_COGS => _("Cost of Goods Sold"),
214                 CL_EXPENSE => _("Expense"),
215 );
216
217 function get_class_type_convert($ctype)
218 {
219         global $use_oldstyle_convert;
220         if (isset($use_oldstyle_convert) && $use_oldstyle_convert == 1)
221                 return (($ctype >= CL_INCOME || $ctype == CL_NONE) ? -1 : 1);
222         else    
223                 return ((($ctype >= CL_LIABILITIES && $ctype <= CL_INCOME) || $ctype == CL_NONE) ? -1 : 1);
224 }
225 //----------------------------------------------------------------------------------
226 //      Quick entry types
227 //
228 $quick_actions = array(
229         '=' => _('Remainder'), // post current base amount to GL account
230         'a' => _('Amount'), // post amount to GL account
231         'a+' => _('Amount, increase base'), // post amount to GL account and increase base
232         'a-' => _('Amount, reduce base'), // post amount to GL account and reduce base
233         '%' => _('% amount of base'),   // store acc*amount% to GL account
234         '%+' => _('% amount of base, increase base'),   // ditto & increase base amount
235         '%-' => _('% amount of base, reduce base'),     // ditto & reduce base amount
236         'T' => _('Taxes added'), // post taxes calculated on base amount
237         'T+' => _('Taxes added, increase base'), // ditto & increase base amount
238         'T-' => _('Taxes added, reduce base'), // ditto & reduce base amount
239         't' => _('Taxes included'), // post taxes calculated on base amount
240         't+' => _('Taxes included, increase base'), // ditto & increase base amount
241         't-' => _('Taxes included, reduce base') // ditto & reduce base amount
242 );
243
244 define('QE_PAYMENT', '1');
245 define('QE_DEPOSIT', '2');
246 define('QE_JOURNAL', '3');
247 define('QE_SUPPINV', '4');
248
249 $quick_entry_types = array(
250                 QE_DEPOSIT => _("Bank Deposit"),
251                 QE_PAYMENT => _("Bank Payment"),
252                 QE_JOURNAL => _("Journal Entry"),
253                 QE_SUPPINV => _("Supplier Invoice/Credit")
254 );
255
256 //----------------------------------------------------------------------------------
257 //      Special option values for various list selectors.
258 //
259 define('ANY_TEXT', '');
260 define('ANY_NUMERIC', -1);
261 define('ALL_TEXT', '');
262 define('ALL_NUMERIC', -1);
263
264
265 //----------------------------------------------------------------------------------
266 // Types of stock items
267 $stock_types = array(
268                 'M' => _("Manufactured"),
269                 'B' => _("Purchased"),
270                 'D' => _("Service")
271 );
272
273 //----------------------------------------------------------------------------------
274
275 define('TAG_ACCOUNT',   1);
276 define('TAG_DIMENSION', 2);
277
278 $tag_types = array (
279                 TAG_ACCOUNT   => _("Account"),
280                 TAG_DIMENSION => _("Dimension")
281 );
282
283 ?>