Implemented an Items tab for attachments and modified the existing setup attachments.
[fa-stable.git] / includes / sysnames.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 global system names. They have to be stored separate from
14 //      sys types defines to enable inclusion after every language change
15 //      (which happens for multilanguage bulk reports)
16 //
17 global $systypes_array, $bank_account_types, $bank_transfer_types, 
18         $payment_person_types, $wo_types_array, $wo_cost_types, $class_types,
19         $quick_actions, $quick_entry_types, $stock_types, $tag_types, $bank_owner;
20
21 $systypes_array = array (
22         ST_JOURNAL => _("Journal Entry"),
23         ST_BANKPAYMENT => _("Bank Payment"),
24         ST_BANKDEPOSIT => _("Bank Deposit"),
25         ST_BANKTRANSFER => _("Funds Transfer"),
26         ST_SALESINVOICE => _("Sales Invoice"),
27         ST_CUSTCREDIT => _("Customer Credit Note"),
28         ST_CUSTPAYMENT => _("Customer Payment"),
29         ST_CUSTDELIVERY => _("Delivery Note"),
30         ST_LOCTRANSFER => _("Location Transfer"),
31         ST_INVADJUST => _("Inventory Adjustment"),
32         ST_PURCHORDER => _("Purchase Order"),
33         ST_SUPPINVOICE => _("Supplier Invoice"),
34         ST_SUPPCREDIT => _("Supplier Credit Note"),
35         ST_SUPPAYMENT => _("Supplier Payment"),
36         ST_SUPPRECEIVE => _("Purchase Order Delivery"),
37         ST_WORKORDER => _("Work Order"),
38         ST_MANUISSUE => _("Work Order Issue"),
39         ST_MANURECEIVE => _("Work Order Production"),
40         ST_SALESORDER => _("Sales Order"),
41         ST_SALESQUOTE => _("Sales Quotation"),
42         ST_COSTUPDATE => _("Cost Update"),
43         ST_DIMENSION => _("Dimension"),
44         ST_CUSTOMER => _("Customer"),
45         ST_SUPPLIER => _("Supplier"),
46         ST_ITEM => _("Item")
47         );
48
49 $fa_systypes_array = array (
50         ST_INVADJUST => _("Fixed Assets Disposal"),
51         ST_COSTUPDATE => _("Fixed Assets Revaluation"),
52         );
53
54 $type_shortcuts = array(
55         ST_JOURNAL => _("GJ"), // general journal
56         ST_BANKPAYMENT => _("BP"),
57         ST_BANKDEPOSIT => _("BD"),
58         ST_BANKTRANSFER => _("BT"),
59         ST_SALESINVOICE => _("SI"),
60         ST_CUSTCREDIT => _("CN"),
61         ST_CUSTPAYMENT => _("CP"),
62         ST_CUSTDELIVERY => _("DN"),
63         ST_LOCTRANSFER => _("IT"), // inventory transfer
64         ST_INVADJUST => _("IA"),
65         ST_PURCHORDER => _("PO"),
66         ST_SUPPINVOICE => _("PI"), // purchase invoice
67         ST_SUPPCREDIT => _("PC"),
68         ST_SUPPAYMENT => _("SP"),
69         ST_SUPPRECEIVE => _("GRN"),
70         ST_WORKORDER => _("WO"),
71         ST_MANUISSUE => _("WI"),
72         ST_MANURECEIVE => _("WP"),
73         ST_SALESORDER => _("SO"),
74         ST_SALESQUOTE => _("SQ"),
75         ST_COSTUPDATE => _("CU"),
76         ST_DIMENSION => _("Dim")
77 );
78
79
80 //----------------------------------------------------------------------------------
81 //              Bank transaction types
82 //
83 $bank_account_types = array (
84         BT_TRANSFER => _("Savings Account"),
85                 _("Chequing Account"),
86                 _("Credit Account"),
87                 _("Cash Account")
88         );
89
90 $bank_transfer_types = array(
91         BT_TRANSFER => _("Transfer"),
92                         _("Cheque"),
93                         _("Credit"),
94                         _("Cash")
95         );
96
97 //----------------------------------------------------------------------------------
98 //      Payment types
99 //
100
101 $payment_person_types = array (
102         PT_MISC => _("Miscellaneous"),
103                                 _("Work Order"),
104                                 _("Customer"),
105                                 _("Supplier"),
106                                 _("Quick Entry")
107         );
108
109 //----------------------------------------------------------------------------------
110 //      Manufacturing types
111 //
112 $wo_types_array = array (
113         WO_ASSEMBLY => _("Assemble"),
114         WO_UNASSEMBLY => _("Unassemble"),
115         WO_ADVANCED => _("Advanced Manufacture")
116         );
117
118 $wo_cost_types = array(
119         WO_LABOUR => _("Labour Cost"),
120         WO_OVERHEAD => _("Overhead Cost"),
121         WO_MATERIALS => _("Materials")
122 );
123
124 //----------------------------------------------------------------------------------
125 //      GL account classes
126 //
127 $class_types = array(
128         CL_ASSETS => _("Assets"),
129         CL_LIABILITIES => _("Liabilities"),
130         CL_EQUITY => _("Equity"),
131         CL_INCOME => _("Income"),
132         CL_COGS => _("Cost of Goods Sold"),
133         CL_EXPENSE => _("Expense"),
134 );
135
136 //----------------------------------------------------------------------------------
137 //      Quick entry types
138 //
139 $quick_actions = array(
140         '=' => _('Remainder'), // post current base amount to GL account
141         'a' => _('Amount'), // post amount to GL account
142         'a+' => _('Amount, increase base'), // post amount to GL account and increase base
143         'a-' => _('Amount, reduce base'), // post amount to GL account and reduce base
144         '%' => _('% amount of base'),   // store acc*amount% to GL account
145         '%+' => _('% amount of base, increase base'),   // ditto & increase base amount
146         '%-' => _('% amount of base, reduce base'),     // ditto & reduce base amount
147         'T' => _('Taxes added'), // post taxes calculated on base amount
148         'T+' => _('Taxes added, increase base'), // ditto & increase base amount
149         'T-' => _('Taxes added, reduce base'), // ditto & reduce base amount
150         't' => _('Taxes included'), // post taxes calculated on base amount
151         't+' => _('Taxes included, increase base'), // ditto & increase base amount
152         't-' => _('Taxes included, reduce base') // ditto & reduce base amount
153 );
154
155 $quick_entry_types = array(
156         QE_DEPOSIT => _("Bank Deposit"),
157         QE_PAYMENT => _("Bank Payment"),
158         QE_JOURNAL => _("Journal Entry"),
159         QE_SUPPINV => _("Supplier Invoice/Credit")
160 );
161
162 //----------------------------------------------------------------------------------
163 // depreciation methods
164 $depreciation_methods = array(
165   'D' => _("Declining balance"),
166   'S' => _("Straight line"),
167   'N' => _("Sum of the Year Digits"),
168   'O' => _("One-time"),
169 );
170
171 //----------------------------------------------------------------------------------
172 // Types of stock items
173 $stock_types = array(
174         'M' => _("Manufactured"),
175         'B' => _("Purchased"),
176         'D' => _("Service")
177 );
178
179 //----------------------------------------------------------------------------------
180
181 $tag_types = array (
182         TAG_ACCOUNT   => _("Account"),
183         TAG_DIMENSION => _("Dimension")
184 );
185
186 //----------------------------------------------------------------------------------
187 // crm contacts categories
188 $sys_crm_cats = array (
189         'cust_branch' => _("Customer branch"),
190         'supplier' => _("Supplier"),
191         'shipper' => _("Shipper"),
192         'company' => _("Company internal")
193 );
194 //----------------------------------------------------------------------------------
195
196 $pterm_types = array(
197         PTT_PRE => _("Prepayment"),
198         PTT_CASH => _("Cash"),
199         PTT_DAYS => _("After No. of Days"),
200         PTT_FOLLOWING => _("Day In Following Month")
201 );
202
203 $tax_algorithms = array( 
204         TCA_LINES => _("Sum per line taxes"), 
205         TCA_TOTALS => _("Taxes from totals")
206 );
207 //----------------------------------------------------------------------------------
208
209 $bank_owner_types = array(
210         BO_UNKNOWN => _("Unknown"),
211         BO_COMPANY => _("Company"),
212         BO_CUSTBRANCH => _("Customer"),
213         BO_SUPPLIER => _("Supplier")
214 );
215
216 // This month array is for use with the last 3 dateformats. 
217 $tmonths = array("", _("Jan"),_("Feb"),_("Mar"),_("Apr"),_("May"),_("Jun"),_("Jul"),_("Aug"),_("Sep"),_("Oct"),_("Nov"),_("Dec"));
218
219 //
220 //      FA supported db backend language settings.
221 //
222 $supported_collations = array(
223   'utf8_xx' => _('Unicode (multilanguage)'),
224   'utf8_is' => _('Icelandic'),
225   'utf8_lv' => _('Latvian'),
226   'utf8_ro' => _('Romanian'),
227   'utf8_sl' => _('Slovenian'),
228   'utf8_pl' => _('Polish'),
229   'utf8_et' => _('Estonian'),
230   'utf8_es' => _('Spanish'), // or 'spanish2',
231   'utf8_sw' => _('Swedish'),
232   'utf8_tr' => _('Turkish'),
233   'utf8_cs' => _('Czech'),
234   'utf8_da' => _('Danish'),
235   'utf8_lt' => _('Lithuanian'),
236   'utf8_sk' => _('Slovak'),
237   'utf8_sp' => _('Spanish (alternative)'),
238   'utf8_fa' => _('Persian'),
239   'utf8_hu' => _('Hungarian'),
240   'utf8_fr' => _('French'),
241   'utf8_it' => _('Italian'),
242 );
243