Updated to current dev state.
[fa-stable.git] / sql / en_US-demo.sql
1 -- phpMyAdmin SQL Dump
2 -- version 2.11.8.1deb5
3 -- http://www.phpmyadmin.net
4 --
5 -- Host: localhost
6 -- Generation Time: May 11, 2010 at 11:32 PM
7 -- Server version: 5.0.51
8 -- PHP Version: 5.2.6-1+lenny2
9
10 --
11 -- Database: `fatest`
12 --
13
14 -- --------------------------------------------------------
15
16 --
17 -- Table structure for table `0_areas`
18 --
19
20 DROP TABLE IF EXISTS `0_areas`;
21 CREATE TABLE IF NOT EXISTS `0_areas` (
22   `area_code` int(11) NOT NULL auto_increment,
23   `description` varchar(60) NOT NULL default '',
24   `inactive` tinyint(1) NOT NULL default '0',
25   PRIMARY KEY  (`area_code`),
26   UNIQUE KEY `description` (`description`)
27 ) TYPE=MyISAM  AUTO_INCREMENT=2 ;
28
29 --
30 -- Dumping data for table `0_areas`
31 --
32
33 INSERT INTO `0_areas` VALUES(1, 'Global', 0);
34
35 -- --------------------------------------------------------
36
37 --
38 -- Table structure for table `0_attachments`
39 --
40
41 DROP TABLE IF EXISTS `0_attachments`;
42 CREATE TABLE IF NOT EXISTS `0_attachments` (
43   `id` int(11) unsigned NOT NULL auto_increment,
44   `description` varchar(60) NOT NULL default '',
45   `type_no` int(11) NOT NULL default '0',
46   `trans_no` int(11) NOT NULL default '0',
47   `unique_name` varchar(60) NOT NULL default '',
48   `tran_date` date NOT NULL default '0000-00-00',
49   `filename` varchar(60) NOT NULL default '',
50   `filesize` int(11) NOT NULL default '0',
51   `filetype` varchar(60) NOT NULL default '',
52   PRIMARY KEY  (`id`),
53   KEY `type_no` (`type_no`,`trans_no`)
54 ) TYPE=MyISAM AUTO_INCREMENT=1 ;
55
56 --
57 -- Dumping data for table `0_attachments`
58 --
59
60
61 -- --------------------------------------------------------
62
63 --
64 -- Table structure for table `0_audit_trail`
65 --
66
67 DROP TABLE IF EXISTS `0_audit_trail`;
68 CREATE TABLE IF NOT EXISTS `0_audit_trail` (
69   `id` int(11) NOT NULL auto_increment,
70   `type` smallint(6) unsigned NOT NULL default '0',
71   `trans_no` int(11) unsigned NOT NULL default '0',
72   `user` smallint(6) unsigned NOT NULL default '0',
73   `stamp` timestamp NOT NULL,
74   `description` varchar(60) default NULL,
75   `fiscal_year` int(11) NOT NULL,
76   `gl_date` date NOT NULL default '0000-00-00',
77   `gl_seq` int(11) unsigned default NULL,
78   PRIMARY KEY  (`id`),
79   KEY `Seq` (`fiscal_year`,`gl_date`,`gl_seq`),
80   KEY `Type_and_Number` (`type`,`trans_no`)
81 ) TYPE=InnoDB AUTO_INCREMENT=1 ;
82
83 --
84 -- Dumping data for table `0_audit_trail`
85 --
86
87
88 -- --------------------------------------------------------
89
90 --
91 -- Table structure for table `0_bank_accounts`
92 --
93
94 DROP TABLE IF EXISTS `0_bank_accounts`;
95 CREATE TABLE IF NOT EXISTS `0_bank_accounts` (
96   `account_code` varchar(15) NOT NULL default '',
97   `account_type` smallint(6) NOT NULL default '0',
98   `bank_account_name` varchar(60) NOT NULL default '',
99   `bank_account_number` varchar(100) NOT NULL default '',
100   `bank_name` varchar(60) NOT NULL default '',
101   `bank_address` tinytext,
102   `bank_curr_code` char(3) NOT NULL default '',
103   `dflt_curr_act` tinyint(1) NOT NULL default '0',
104   `id` smallint(6) NOT NULL auto_increment,
105   `last_reconciled_date` timestamp NOT NULL default '0000-00-00 00:00:00',
106   `ending_reconcile_balance` double NOT NULL default '0',
107   `inactive` tinyint(1) NOT NULL default '0',
108   PRIMARY KEY  (`id`),
109   KEY `bank_account_name` (`bank_account_name`),
110   KEY `bank_account_number` (`bank_account_number`),
111   KEY `account_code` (`account_code`)
112 ) TYPE=MyISAM  AUTO_INCREMENT=3 ;
113
114 --
115 -- Dumping data for table `0_bank_accounts`
116 --
117
118 INSERT INTO `0_bank_accounts` VALUES('1060', 0, 'Current account', '9999999999', 'Wachovia Bank', '', 'USD', 1, 1, '0000-00-00 00:00:00', 0, 0);
119 INSERT INTO `0_bank_accounts` VALUES('1065', 3, 'Petty Cash account', 'N/A', 'N/A', '', 'USD', 0, 2, '0000-00-00 00:00:00', 0, 0);
120
121 -- --------------------------------------------------------
122
123 --
124 -- Table structure for table `0_bank_trans`
125 --
126
127 DROP TABLE IF EXISTS `0_bank_trans`;
128 CREATE TABLE IF NOT EXISTS `0_bank_trans` (
129   `id` int(11) NOT NULL auto_increment,
130   `type` smallint(6) default NULL,
131   `trans_no` int(11) default NULL,
132   `bank_act` varchar(15) NOT NULL default '',
133   `ref` varchar(40) default NULL,
134   `trans_date` date NOT NULL default '0000-00-00',
135   `amount` double default NULL,
136   `dimension_id` int(11) NOT NULL default '0',
137   `dimension2_id` int(11) NOT NULL default '0',
138   `person_type_id` int(11) NOT NULL default '0',
139   `person_id` tinyblob,
140   `reconciled` date default NULL,
141   PRIMARY KEY  (`id`),
142   KEY `bank_act` (`bank_act`,`ref`),
143   KEY `type` (`type`,`trans_no`),
144   KEY `bank_act_2` (`bank_act`,`reconciled`),
145   KEY `bank_act_3` (`bank_act`,`trans_date`)
146 ) TYPE=InnoDB  AUTO_INCREMENT=12 ;
147
148 --
149 -- Dumping data for table `0_bank_trans`
150 --
151
152 INSERT INTO `0_bank_trans` VALUES(1, 22, 4, '1', '1', '2009-06-21', -3465, 0, 0, 3, '2', NULL);
153 INSERT INTO `0_bank_trans` VALUES(2, 26, 1, '1', '', '2009-06-21', -10, 0, 0, 1, '1', NULL);
154 INSERT INTO `0_bank_trans` VALUES(3, 26, 1, '1', '', '2009-06-21', -20, 0, 0, 1, '0', NULL);
155 INSERT INTO `0_bank_trans` VALUES(4, 0, 18, '1', '1', '2009-02-20', 1000, 0, 0, 0, '', NULL);
156 INSERT INTO `0_bank_trans` VALUES(5, 0, 19, '1', '2', '2009-02-21', 4000, 0, 0, 0, '', NULL);
157 INSERT INTO `0_bank_trans` VALUES(6, 2, 5, '1', '1', '2009-06-21', 100, 0, 0, 4, '3', NULL);
158 INSERT INTO `0_bank_trans` VALUES(7, 1, 8, '1', '1', '2009-06-21', -50, 0, 0, 4, '1', NULL);
159 INSERT INTO `0_bank_trans` VALUES(8, 26, 5, '1', '', '2009-06-21', -10, 0, 0, 1, '1', NULL);
160 INSERT INTO `0_bank_trans` VALUES(9, 26, 5, '1', '', '2009-06-21', -20, 0, 0, 1, '0', NULL);
161 INSERT INTO `0_bank_trans` VALUES(10, 26, 7, '1', '', '2009-06-21', -10, 0, 0, 1, '1', NULL);
162 INSERT INTO `0_bank_trans` VALUES(11, 26, 7, '1', '', '2009-06-21', -20, 0, 0, 1, '0', NULL);
163
164 -- --------------------------------------------------------
165
166 --
167 -- Table structure for table `0_bom`
168 --
169
170 DROP TABLE IF EXISTS `0_bom`;
171 CREATE TABLE IF NOT EXISTS `0_bom` (
172   `id` int(11) NOT NULL auto_increment,
173   `parent` char(20) NOT NULL default '',
174   `component` char(20) NOT NULL default '',
175   `workcentre_added` int(11) NOT NULL default '0',
176   `loc_code` char(5) NOT NULL default '',
177   `quantity` double NOT NULL default '1',
178   PRIMARY KEY  (`parent`,`component`,`workcentre_added`,`loc_code`),
179   KEY `component` (`component`),
180   KEY `id` (`id`),
181   KEY `loc_code` (`loc_code`),
182   KEY `parent` (`parent`,`loc_code`),
183   KEY `workcentre_added` (`workcentre_added`)
184 ) TYPE=MyISAM  AUTO_INCREMENT=4 ;
185
186 --
187 -- Dumping data for table `0_bom`
188 --
189
190 INSERT INTO `0_bom` VALUES(1, '3400', '102', 1, 'DEF', 1);
191 INSERT INTO `0_bom` VALUES(2, '3400', '103', 1, 'DEF', 1);
192 INSERT INTO `0_bom` VALUES(3, '3400', '104', 1, 'DEF', 1);
193
194 -- --------------------------------------------------------
195
196 --
197 -- Table structure for table `0_budget_trans`
198 --
199
200 DROP TABLE IF EXISTS `0_budget_trans`;
201 CREATE TABLE IF NOT EXISTS `0_budget_trans` (
202   `counter` int(11) NOT NULL auto_increment,
203   `type` smallint(6) NOT NULL default '0',
204   `type_no` bigint(16) NOT NULL default '1',
205   `tran_date` date NOT NULL default '0000-00-00',
206   `account` varchar(15) NOT NULL default '',
207   `memo_` tinytext NOT NULL,
208   `amount` double NOT NULL default '0',
209   `dimension_id` int(11) default '0',
210   `dimension2_id` int(11) default '0',
211   `person_type_id` int(11) default NULL,
212   `person_id` tinyblob,
213   PRIMARY KEY  (`counter`),
214   KEY `Type_and_Number` (`type`,`type_no`),
215   KEY `Account` (`account`,`tran_date`,`dimension_id`,`dimension2_id`)
216 ) TYPE=InnoDB AUTO_INCREMENT=1 ;
217
218 --
219 -- Dumping data for table `0_budget_trans`
220 --
221
222
223 -- --------------------------------------------------------
224
225 --
226 -- Table structure for table `0_chart_class`
227 --
228
229 DROP TABLE IF EXISTS `0_chart_class`;
230 CREATE TABLE IF NOT EXISTS `0_chart_class` (
231   `cid` varchar(3) NOT NULL,
232   `class_name` varchar(60) NOT NULL default '',
233   `ctype` tinyint(1) NOT NULL default '0',
234   `inactive` tinyint(1) NOT NULL default '0',
235   PRIMARY KEY  (`cid`)
236 ) TYPE=MyISAM;
237
238 --
239 -- Dumping data for table `0_chart_class`
240 --
241
242 INSERT INTO `0_chart_class` VALUES('1', 'Assets', 1, 0);
243 INSERT INTO `0_chart_class` VALUES('2', 'Liabilities', 2, 0);
244 INSERT INTO `0_chart_class` VALUES('3', 'Income', 4, 0);
245 INSERT INTO `0_chart_class` VALUES('4', 'Costs', 6, 0);
246
247 -- --------------------------------------------------------
248
249 --
250 -- Table structure for table `0_chart_master`
251 --
252
253 DROP TABLE IF EXISTS `0_chart_master`;
254 CREATE TABLE IF NOT EXISTS `0_chart_master` (
255   `account_code` varchar(15) NOT NULL default '',
256   `account_code2` varchar(15) NOT NULL default '',
257   `account_name` varchar(60) NOT NULL default '',
258   `account_type` varchar(10) NOT NULL default '0',
259   `inactive` tinyint(1) NOT NULL default '0',
260   PRIMARY KEY  (`account_code`),
261   KEY `account_name` (`account_name`),
262   KEY `accounts_by_type` (`account_type`,`account_code`)
263 ) TYPE=MyISAM;
264
265 --
266 -- Dumping data for table `0_chart_master`
267 --
268
269 INSERT INTO `0_chart_master` VALUES('1060', '', 'Checking Account', '1', 0);
270 INSERT INTO `0_chart_master` VALUES('1065', '', 'Petty Cash', '1', 0);
271 INSERT INTO `0_chart_master` VALUES('1200', '', 'Accounts Receivables', '1', 0);
272 INSERT INTO `0_chart_master` VALUES('1205', '', 'Allowance for doubtful accounts', '1', 0);
273 INSERT INTO `0_chart_master` VALUES('1510', '', 'Inventory', '2', 0);
274 INSERT INTO `0_chart_master` VALUES('1520', '', 'Stocks of Raw Materials', '2', 0);
275 INSERT INTO `0_chart_master` VALUES('1530', '', 'Stocks of Work In Progress', '2', 0);
276 INSERT INTO `0_chart_master` VALUES('1540', '', 'Stocks of Finsihed Goods', '2', 0);
277 INSERT INTO `0_chart_master` VALUES('1550', '', 'Goods Received Clearing account', '2', 0);
278 INSERT INTO `0_chart_master` VALUES('1820', '', 'Office Furniture & Equipment', '3', 0);
279 INSERT INTO `0_chart_master` VALUES('1825', '', 'Accum. Amort. -Furn. & Equip.', '3', 0);
280 INSERT INTO `0_chart_master` VALUES('1840', '', 'Vehicle', '3', 0);
281 INSERT INTO `0_chart_master` VALUES('1845', '', 'Accum. Amort. -Vehicle', '3', 0);
282 INSERT INTO `0_chart_master` VALUES('2100', '', 'Accounts Payable', '4', 0);
283 INSERT INTO `0_chart_master` VALUES('2110', '', 'Accrued Income Tax - Federal', '4', 0);
284 INSERT INTO `0_chart_master` VALUES('2120', '', 'Accrued Income Tax - State', '4', 0);
285 INSERT INTO `0_chart_master` VALUES('2130', '', 'Accrued Franchise Tax', '4', 0);
286 INSERT INTO `0_chart_master` VALUES('2140', '', 'Accrued Real & Personal Prop Tax', '4', 0);
287 INSERT INTO `0_chart_master` VALUES('2150', '', 'Sales Tax', '4', 0);
288 INSERT INTO `0_chart_master` VALUES('2160', '', 'Accrued Use Tax Payable', '4', 0);
289 INSERT INTO `0_chart_master` VALUES('2210', '', 'Accrued Wages', '4', 0);
290 INSERT INTO `0_chart_master` VALUES('2220', '', 'Accrued Comp Time', '4', 0);
291 INSERT INTO `0_chart_master` VALUES('2230', '', 'Accrued Holiday Pay', '4', 0);
292 INSERT INTO `0_chart_master` VALUES('2240', '', 'Accrued Vacation Pay', '4', 0);
293 INSERT INTO `0_chart_master` VALUES('2310', '', 'Accr. Benefits - 401K', '4', 0);
294 INSERT INTO `0_chart_master` VALUES('2320', '', 'Accr. Benefits - Stock Purchase', '4', 0);
295 INSERT INTO `0_chart_master` VALUES('2330', '', 'Accr. Benefits - Med, Den', '4', 0);
296 INSERT INTO `0_chart_master` VALUES('2340', '', 'Accr. Benefits - Payroll Taxes', '4', 0);
297 INSERT INTO `0_chart_master` VALUES('2350', '', 'Accr. Benefits - Credit Union', '4', 0);
298 INSERT INTO `0_chart_master` VALUES('2360', '', 'Accr. Benefits - Savings Bond', '4', 0);
299 INSERT INTO `0_chart_master` VALUES('2370', '', 'Accr. Benefits - Garnish', '4', 0);
300 INSERT INTO `0_chart_master` VALUES('2380', '', 'Accr. Benefits - Charity Cont.', '4', 0);
301 INSERT INTO `0_chart_master` VALUES('2620', '', 'Bank Loans', '5', 0);
302 INSERT INTO `0_chart_master` VALUES('2680', '', 'Loans from Shareholders', '5', 0);
303 INSERT INTO `0_chart_master` VALUES('3350', '', 'Common Shares', '6', 0);
304 INSERT INTO `0_chart_master` VALUES('3590', '', 'Retained Earnings - prior years', '7', 0);
305 INSERT INTO `0_chart_master` VALUES('4010', '', 'Sales', '8', 0);
306 INSERT INTO `0_chart_master` VALUES('4430', '', 'Shipping & Handling', '9', 0);
307 INSERT INTO `0_chart_master` VALUES('4440', '', 'Interest', '9', 0);
308 INSERT INTO `0_chart_master` VALUES('4450', '', 'Foreign Exchange Gain', '9', 0);
309 INSERT INTO `0_chart_master` VALUES('4500', '', 'Prompt Payment Discounts', '9', 0);
310 INSERT INTO `0_chart_master` VALUES('4510', '', 'Discounts Given', '9', 0);
311 INSERT INTO `0_chart_master` VALUES('5010', '', 'Cost of Goods Sold - Retail', '10', 0);
312 INSERT INTO `0_chart_master` VALUES('5020', '', 'Material Usage Varaiance', '10', 0);
313 INSERT INTO `0_chart_master` VALUES('5030', '', 'Consumable Materials', '10', 0);
314 INSERT INTO `0_chart_master` VALUES('5040', '', 'Purchase price Variance', '10', 0);
315 INSERT INTO `0_chart_master` VALUES('5050', '', 'Purchases of materials', '10', 0);
316 INSERT INTO `0_chart_master` VALUES('5060', '', 'Discounts Received', '10', 0);
317 INSERT INTO `0_chart_master` VALUES('5100', '', 'Freight', '10', 0);
318 INSERT INTO `0_chart_master` VALUES('5410', '', 'Wages & Salaries', '11', 0);
319 INSERT INTO `0_chart_master` VALUES('5420', '', 'Wages - Overtime', '11', 0);
320 INSERT INTO `0_chart_master` VALUES('5430', '', 'Benefits - Comp Time', '11', 0);
321 INSERT INTO `0_chart_master` VALUES('5440', '', 'Benefits - Payroll Taxes', '11', 0);
322 INSERT INTO `0_chart_master` VALUES('5450', '', 'Benefits - Workers Comp', '11', 0);
323 INSERT INTO `0_chart_master` VALUES('5460', '', 'Benefits - Pension', '11', 0);
324 INSERT INTO `0_chart_master` VALUES('5470', '', 'Benefits - General Benefits', '11', 0);
325 INSERT INTO `0_chart_master` VALUES('5510', '', 'Inc Tax Exp - Federal', '11', 0);
326 INSERT INTO `0_chart_master` VALUES('5520', '', 'Inc Tax Exp - State', '11', 0);
327 INSERT INTO `0_chart_master` VALUES('5530', '', 'Taxes - Real Estate', '11', 0);
328 INSERT INTO `0_chart_master` VALUES('5540', '', 'Taxes - Personal Property', '11', 0);
329 INSERT INTO `0_chart_master` VALUES('5550', '', 'Taxes - Franchise', '11', 0);
330 INSERT INTO `0_chart_master` VALUES('5560', '', 'Taxes - Foreign Withholding', '11', 0);
331 INSERT INTO `0_chart_master` VALUES('5610', '', 'Accounting & Legal', '12', 0);
332 INSERT INTO `0_chart_master` VALUES('5615', '', 'Advertising & Promotions', '12', 0);
333 INSERT INTO `0_chart_master` VALUES('5620', '', 'Bad Debts', '12', 0);
334 INSERT INTO `0_chart_master` VALUES('5660', '', 'Amortization Expense', '12', 0);
335 INSERT INTO `0_chart_master` VALUES('5685', '', 'Insurance', '12', 0);
336 INSERT INTO `0_chart_master` VALUES('5690', '', 'Interest & Bank Charges', '12', 0);
337 INSERT INTO `0_chart_master` VALUES('5700', '', 'Office Supplies', '12', 0);
338 INSERT INTO `0_chart_master` VALUES('5760', '', 'Rent', '12', 0);
339 INSERT INTO `0_chart_master` VALUES('5765', '', 'Repair & Maintenance', '12', 0);
340 INSERT INTO `0_chart_master` VALUES('5780', '', 'Telephone', '12', 0);
341 INSERT INTO `0_chart_master` VALUES('5785', '', 'Travel & Entertainment', '12', 0);
342 INSERT INTO `0_chart_master` VALUES('5790', '', 'Utilities', '12', 0);
343 INSERT INTO `0_chart_master` VALUES('5795', '', 'Registrations', '12', 0);
344 INSERT INTO `0_chart_master` VALUES('5800', '', 'Licenses', '12', 0);
345 INSERT INTO `0_chart_master` VALUES('5810', '', 'Foreign Exchange Loss', '12', 0);
346 INSERT INTO `0_chart_master` VALUES('9990', '', 'Year Profit/Loss', '12', 0);
347
348 -- --------------------------------------------------------
349
350 --
351 -- Table structure for table `0_chart_types`
352 --
353
354 DROP TABLE IF EXISTS `0_chart_types`;
355 CREATE TABLE IF NOT EXISTS `0_chart_types` (
356   `id` varchar(10) NOT NULL,
357   `name` varchar(60) NOT NULL default '',
358   `class_id` varchar(3) NOT NULL default '',
359   `parent` varchar(10) NOT NULL default '-1',
360   `inactive` tinyint(1) NOT NULL default '0',
361   PRIMARY KEY  (`id`),
362   KEY `name` (`name`),
363   KEY `class_id` (`class_id`)
364 ) TYPE=MyISAM ;
365
366 --
367 -- Dumping data for table `0_chart_types`
368 --
369
370 INSERT INTO `0_chart_types` VALUES('1', 'Current Assets', '1', '', 0);
371 INSERT INTO `0_chart_types` VALUES('2', 'Inventory Assets', '1', '', 0);
372 INSERT INTO `0_chart_types` VALUES('3', 'Capital Assets', '1', '', 0);
373 INSERT INTO `0_chart_types` VALUES('4', 'Current Liabilities', '2', '', 0);
374 INSERT INTO `0_chart_types` VALUES('5', 'Long Term Liabilities', '2', '', 0);
375 INSERT INTO `0_chart_types` VALUES('6', 'Share Capital', '2', '', 0);
376 INSERT INTO `0_chart_types` VALUES('7', 'Retained Earnings', '2', '', 0);
377 INSERT INTO `0_chart_types` VALUES('8', 'Sales Revenue', '3', '', 0);
378 INSERT INTO `0_chart_types` VALUES('9', 'Other Revenue', '3', '', 0);
379 INSERT INTO `0_chart_types` VALUES('10', 'Cost of Goods Sold', '4', '', 0);
380 INSERT INTO `0_chart_types` VALUES('11', 'Payroll Expenses', '4', '', 0);
381 INSERT INTO `0_chart_types` VALUES('12', 'General & Administrative expenses', '4', '', 0);
382
383 -- --------------------------------------------------------
384
385 --
386 -- Table structure for table `0_comments`
387 --
388
389 DROP TABLE IF EXISTS `0_comments`;
390 CREATE TABLE IF NOT EXISTS `0_comments` (
391   `type` int(11) NOT NULL default '0',
392   `id` int(11) NOT NULL default '0',
393   `date_` date default '0000-00-00',
394   `memo_` tinytext,
395   KEY `type_and_id` (`type`,`id`)
396 ) TYPE=InnoDB;
397
398 --
399 -- Dumping data for table `0_comments`
400 --
401
402
403 -- --------------------------------------------------------
404
405 --
406 -- Table structure for table `0_credit_status`
407 --
408
409 DROP TABLE IF EXISTS `0_credit_status`;
410 CREATE TABLE IF NOT EXISTS `0_credit_status` (
411   `id` int(11) NOT NULL auto_increment,
412   `reason_description` char(100) NOT NULL default '',
413   `dissallow_invoices` tinyint(1) NOT NULL default '0',
414   `inactive` tinyint(1) NOT NULL default '0',
415   PRIMARY KEY  (`id`),
416   UNIQUE KEY `reason_description` (`reason_description`)
417 ) TYPE=MyISAM  AUTO_INCREMENT=5 ;
418
419 --
420 -- Dumping data for table `0_credit_status`
421 --
422
423 INSERT INTO `0_credit_status` VALUES(1, 'Good History', 0, 0);
424 INSERT INTO `0_credit_status` VALUES(3, 'No more work until payment received', 1, 0);
425 INSERT INTO `0_credit_status` VALUES(4, 'In liquidation', 1, 0);
426
427 -- --------------------------------------------------------
428
429 --
430 -- Table structure for table `0_crm_categories`
431 --
432
433 DROP TABLE IF EXISTS `0_crm_categories`;
434 CREATE TABLE IF NOT EXISTS `0_crm_categories` (
435   `id` int(11) NOT NULL auto_increment COMMENT 'pure technical key',
436   `type` varchar(20) NOT NULL COMMENT 'contact type e.g. customer',
437   `action` varchar(20) NOT NULL COMMENT 'detailed usage e.g. department',
438   `name` varchar(30) NOT NULL COMMENT 'for category selector',
439   `description` tinytext NOT NULL COMMENT 'usage description',
440   `system` tinyint(1) NOT NULL default '0' COMMENT 'nonzero for core system usage',
441   `inactive` tinyint(1) NOT NULL default '0',
442   PRIMARY KEY  (`id`),
443   UNIQUE KEY `type` (`type`,`action`),
444   UNIQUE KEY `type_2` (`type`,`name`)
445 ) TYPE=InnoDB  AUTO_INCREMENT=13 ;
446
447 --
448 -- Dumping data for table `0_crm_categories`
449 --
450
451 INSERT INTO `0_crm_categories` VALUES(1, 'cust_branch', 'general', 'General', 'General contact data for customer branch (overrides company setting)', 1, 0);
452 INSERT INTO `0_crm_categories` VALUES(2, 'cust_branch', 'invoice', 'Invoices', 'Invoice posting (overrides company setting)', 1, 0);
453 INSERT INTO `0_crm_categories` VALUES(3, 'cust_branch', 'order', 'Orders', 'Order confirmation (overrides company setting)', 1, 0);
454 INSERT INTO `0_crm_categories` VALUES(4, 'cust_branch', 'delivery', 'Deliveries', 'Delivery coordination (overrides company setting)', 1, 0);
455 INSERT INTO `0_crm_categories` VALUES(5, 'customer', 'general', 'General', 'General contact data for customer', 1, 0);
456 INSERT INTO `0_crm_categories` VALUES(6, 'customer', 'order', 'Orders', 'Order confirmation', 1, 0);
457 INSERT INTO `0_crm_categories` VALUES(7, 'customer', 'delivery', 'Deliveries', 'Delivery coordination', 1, 0);
458 INSERT INTO `0_crm_categories` VALUES(8, 'customer', 'invoice', 'Invoices', 'Invoice posting', 1, 0);
459 INSERT INTO `0_crm_categories` VALUES(9, 'supplier', 'general', 'General', 'General contact data for supplier', 1, 0);
460 INSERT INTO `0_crm_categories` VALUES(10, 'supplier', 'order', 'Orders', 'Order confirmation', 1, 0);
461 INSERT INTO `0_crm_categories` VALUES(11, 'supplier', 'delivery', 'Deliveries', 'Delivery coordination', 1, 0);
462 INSERT INTO `0_crm_categories` VALUES(12, 'supplier', 'invoice', 'Invoices', 'Invoice posting', 1, 0);
463
464 -- --------------------------------------------------------
465
466 --
467 -- Table structure for table `0_crm_contacts`
468 --
469
470 DROP TABLE IF EXISTS `0_crm_contacts`;
471 CREATE TABLE IF NOT EXISTS `0_crm_contacts` (
472   `id` int(11) NOT NULL auto_increment,
473   `person_id` int(11) NOT NULL default '0' COMMENT 'foreign key to crm_contacts',
474   `type` varchar(20) NOT NULL COMMENT 'foreign key to crm_categories',
475   `action` varchar(20) NOT NULL COMMENT 'foreign key to crm_categories',
476   `entity_id` varchar(11) default NULL COMMENT 'entity id in related class table',
477   PRIMARY KEY  (`id`),
478   KEY `type` (`type`,`action`)
479 ) TYPE=InnoDB  AUTO_INCREMENT=10 ;
480
481 --
482 -- Dumping data for table `0_crm_contacts`
483 --
484
485 INSERT INTO `0_crm_contacts` VALUES(1, 1, 'customer', 'general', '1');
486 INSERT INTO `0_crm_contacts` VALUES(2, 2, 'customer', 'general', '2');
487 INSERT INTO `0_crm_contacts` VALUES(3, 3, 'customer', 'general', '3');
488 INSERT INTO `0_crm_contacts` VALUES(4, 4, 'cust_branch', 'general', '1');
489 INSERT INTO `0_crm_contacts` VALUES(5, 5, 'cust_branch', 'general', '2');
490 INSERT INTO `0_crm_contacts` VALUES(6, 6, 'cust_branch', 'general', '3');
491 INSERT INTO `0_crm_contacts` VALUES(7, 7, 'supplier', 'general', '1');
492 INSERT INTO `0_crm_contacts` VALUES(8, 8, 'supplier', 'general', '2');
493 INSERT INTO `0_crm_contacts` VALUES(9, 9, 'supplier', 'general', '3');
494
495 -- --------------------------------------------------------
496
497 --
498 -- Table structure for table `0_crm_persons`
499 --
500
501 DROP TABLE IF EXISTS `0_crm_persons`;
502 CREATE TABLE IF NOT EXISTS `0_crm_persons` (
503   `id` int(11) NOT NULL auto_increment,
504   `ref` varchar(30) NOT NULL,
505   `name` varchar(60) NOT NULL,
506   `name2` varchar(60) default NULL,
507   `address` tinytext,
508   `phone` varchar(30) default NULL,
509   `phone2` varchar(30) default NULL,
510   `fax` varchar(30) default NULL,
511   `email` varchar(100) default NULL,
512   `lang` char(5) default NULL,
513   `notes` tinytext NOT NULL,
514   `inactive` tinyint(1) NOT NULL default '0',
515   PRIMARY KEY  (`id`),
516   KEY `ref` (`ref`)
517 ) TYPE=InnoDB  AUTO_INCREMENT=10 ;
518
519 --
520 -- Dumping data for table `0_crm_persons`
521 --
522
523 INSERT INTO `0_crm_persons` VALUES(1, 'Beefeater', '', NULL, NULL, NULL, NULL, NULL, '', 'en_GB', '', 0);
524 INSERT INTO `0_crm_persons` VALUES(2, 'Ghostbusters', '', NULL, NULL, NULL, NULL, NULL, '', NULL, '', 0);
525 INSERT INTO `0_crm_persons` VALUES(3, 'Brezan', '', NULL, NULL, NULL, NULL, NULL, '', 'en_GB', '', 0);
526 INSERT INTO `0_crm_persons` VALUES(4, 'Beefeater', 'Main Branch', NULL, '', '', '', '', '', NULL, '', 0);
527 INSERT INTO `0_crm_persons` VALUES(5, 'Ghostbusters', 'Main Branch', NULL, 'Address 1\nAddress 2\nAddress 3', '', '', '', '', NULL, '', 0);
528 INSERT INTO `0_crm_persons` VALUES(6, 'Brezan', 'Main Branch', NULL, 'Address 1\nAddress 2\nAddress 3', '', '', '', '', NULL, '', 0);
529 INSERT INTO `0_crm_persons` VALUES(7, 'Junk Beer', 'Contact', NULL, 'Address 1\nAddress 2\nAddress 3', '+45 55667788', '', '', '', 'en_GB', '', 0);
530 INSERT INTO `0_crm_persons` VALUES(8, 'Lucky Luke', 'Luke', NULL, 'Address 1\nAddress 2\nAddress 3', '(111) 222.333.444', '', '', '', NULL, '', 0);
531 INSERT INTO `0_crm_persons` VALUES(9, 'Money Makers', 'Makers', NULL, 'Address 1\nAddress 2\nAddress 3', '+44 444 555 666', '', '', '', 'en_GB', '', 0);
532
533 -- --------------------------------------------------------
534
535 --
536 -- Table structure for table `0_currencies`
537 --
538
539 DROP TABLE IF EXISTS `0_currencies`;
540 CREATE TABLE IF NOT EXISTS `0_currencies` (
541   `currency` varchar(60) NOT NULL default '',
542   `curr_abrev` char(3) NOT NULL default '',
543   `curr_symbol` varchar(10) NOT NULL default '',
544   `country` varchar(100) NOT NULL default '',
545   `hundreds_name` varchar(15) NOT NULL default '',
546   `auto_update` tinyint(1) NOT NULL default '1',
547   `inactive` tinyint(1) NOT NULL default '0',
548   PRIMARY KEY  (`curr_abrev`)
549 ) TYPE=MyISAM;
550
551 --
552 -- Dumping data for table `0_currencies`
553 --
554
555 INSERT INTO `0_currencies` VALUES('US Dollars', 'USD', '$', 'United States', 'Cents', 1, 0);
556 INSERT INTO `0_currencies` VALUES('CA Dollars', 'CAD', '$', 'Canada', 'Cents', 1, 0);
557 INSERT INTO `0_currencies` VALUES('Euro', 'EUR', '?', 'Europe', 'Cents', 1, 0);
558 INSERT INTO `0_currencies` VALUES('Pounds', 'GBP', '?', 'England', 'Pence', 1, 0);
559 INSERT INTO `0_currencies` VALUES('DK Kroner', 'DKK', '?', 'Denmark', 'Ore', 1, 0);
560
561 -- --------------------------------------------------------
562
563 --
564 -- Table structure for table `0_cust_allocations`
565 --
566
567 DROP TABLE IF EXISTS `0_cust_allocations`;
568 CREATE TABLE IF NOT EXISTS `0_cust_allocations` (
569   `id` int(11) NOT NULL auto_increment,
570   `amt` double unsigned default NULL,
571   `date_alloc` date NOT NULL default '0000-00-00',
572   `trans_no_from` int(11) default NULL,
573   `trans_type_from` int(11) default NULL,
574   `trans_no_to` int(11) default NULL,
575   `trans_type_to` int(11) default NULL,
576   PRIMARY KEY  (`id`),
577   KEY `From` (`trans_type_from`,`trans_no_from`),
578   KEY `To` (`trans_type_to`,`trans_no_to`)
579 ) TYPE=InnoDB  AUTO_INCREMENT=2 ;
580
581 --
582 -- Dumping data for table `0_cust_allocations`
583 --
584
585 INSERT INTO `0_cust_allocations` VALUES(1, 37.68, '2009-06-21', 3, 11, 18, 10);
586
587 -- --------------------------------------------------------
588
589 --
590 -- Table structure for table `0_cust_branch`
591 --
592
593 DROP TABLE IF EXISTS `0_cust_branch`;
594 CREATE TABLE IF NOT EXISTS `0_cust_branch` (
595   `branch_code` int(11) NOT NULL auto_increment,
596   `debtor_no` int(11) NOT NULL default '0',
597   `br_name` varchar(60) NOT NULL default '',
598   `branch_ref` varchar(30) NOT NULL default '',
599   `br_address` tinytext NOT NULL,
600   `area` int(11) default NULL,
601   `salesman` int(11) NOT NULL default '0',
602   `contact_name` varchar(60) NOT NULL default '',
603   `default_location` varchar(5) NOT NULL default '',
604   `tax_group_id` int(11) default NULL,
605   `sales_account` varchar(15) NOT NULL default '',
606   `sales_discount_account` varchar(15) NOT NULL default '',
607   `receivables_account` varchar(15) NOT NULL default '',
608   `payment_discount_account` varchar(15) NOT NULL default '',
609   `default_ship_via` int(11) NOT NULL default '1',
610   `disable_trans` tinyint(4) NOT NULL default '0',
611   `br_post_address` tinytext NOT NULL,
612   `group_no` int(11) NOT NULL default '0',
613   `notes` tinytext NOT NULL,
614   `inactive` tinyint(1) NOT NULL default '0',
615   PRIMARY KEY  (`branch_code`,`debtor_no`),
616   KEY `branch_code` (`branch_code`),
617   KEY `branch_ref` (`branch_ref`),
618   KEY `group_no` (`group_no`)
619 ) TYPE=MyISAM  AUTO_INCREMENT=4 ;
620
621 --
622 -- Dumping data for table `0_cust_branch`
623 --
624
625 INSERT INTO `0_cust_branch` VALUES(1, 1, 'Beefeater Ltd.', 'Beefeater', '', 1, 1, 'Main Branch', 'DEF', 2, '', '4510', '1200', '4500', 1, 0, 'Address 1\nAddress 2\nAddress 3', 0, '', 0);
626 INSERT INTO `0_cust_branch` VALUES(2, 2, 'Ghostbusters Corp.', 'Ghostbusters', 'Address 1\nAddress 2\nAddress 3', 1, 1, 'Main Branch', 'DEF', 1, '', '4510', '1200', '4500', 1, 0, 'Address 1\nAddress 2\nAddress 3', 0, '', 0);
627 INSERT INTO `0_cust_branch` VALUES(3, 3, 'Brezan', 'Brezan', 'Address 1\nAddress 2\nAddress 3', 1, 1, 'Main Branch', 'DEF', 1, '', '4510', '1200', '4500', 1, 0, 'Address 1\nAddress 2\nAddress 3', 0, '', 0);
628
629 -- --------------------------------------------------------
630
631 --
632 -- Table structure for table `0_debtors_master`
633 --
634
635 DROP TABLE IF EXISTS `0_debtors_master`;
636 CREATE TABLE IF NOT EXISTS `0_debtors_master` (
637   `debtor_no` int(11) NOT NULL auto_increment,
638   `name` varchar(100) NOT NULL default '',
639   `debtor_ref` varchar(30) NOT NULL,
640   `address` tinytext,
641   `tax_id` varchar(55) NOT NULL default '',
642   `curr_code` char(3) NOT NULL default '',
643   `sales_type` int(11) NOT NULL default '1',
644   `dimension_id` int(11) NOT NULL default '0',
645   `dimension2_id` int(11) NOT NULL default '0',
646   `credit_status` int(11) NOT NULL default '0',
647   `payment_terms` int(11) default NULL,
648   `discount` double NOT NULL default '0',
649   `pymt_discount` double NOT NULL default '0',
650   `credit_limit` float NOT NULL default '1000',
651   `notes` tinytext NOT NULL,
652   `inactive` tinyint(1) NOT NULL default '0',
653   PRIMARY KEY  (`debtor_no`),
654   UNIQUE KEY `name` (`name`),
655   KEY `debtor_ref` (`debtor_ref`)
656 ) TYPE=MyISAM  AUTO_INCREMENT=4 ;
657
658 --
659 -- Dumping data for table `0_debtors_master`
660 --
661
662 INSERT INTO `0_debtors_master` VALUES(1, 'Beefeater Ltd.', 'Beefeater', 'Addr 1\nAddr 2\nAddr 3', '345678', 'GBP', 2, 0, 0, 1, 3, 0, 0, 1000, '', 0);
663 INSERT INTO `0_debtors_master` VALUES(2, 'Ghostbusters Corp.', 'Ghostbusters', 'Address 1\nAddress 2\nAddress 3', '2222222', 'USD', 1, 0, 0, 1, 4, 0, 0, 1000, '', 0);
664 INSERT INTO `0_debtors_master` VALUES(3, 'Brezan', 'Brezan', 'Address 1\nAddress 2\nAddress 3', '7777777', 'EUR', 2, 0, 0, 1, 3, 0, 0, 1000, '', 0);
665
666 -- --------------------------------------------------------
667
668 --
669 -- Table structure for table `0_debtor_trans`
670 --
671
672 DROP TABLE IF EXISTS `0_debtor_trans`;
673 CREATE TABLE IF NOT EXISTS `0_debtor_trans` (
674   `trans_no` int(11) unsigned NOT NULL default '0',
675   `type` smallint(6) unsigned NOT NULL default '0',
676   `version` tinyint(1) unsigned NOT NULL default '0',
677   `debtor_no` int(11) unsigned default NULL,
678   `branch_code` int(11) NOT NULL default '-1',
679   `tran_date` date NOT NULL default '0000-00-00',
680   `due_date` date NOT NULL default '0000-00-00',
681   `reference` varchar(60) NOT NULL default '',
682   `tpe` int(11) NOT NULL default '0',
683   `order_` int(11) NOT NULL default '0',
684   `ov_amount` double NOT NULL default '0',
685   `ov_gst` double NOT NULL default '0',
686   `ov_freight` double NOT NULL default '0',
687   `ov_freight_tax` double NOT NULL default '0',
688   `ov_discount` double NOT NULL default '0',
689   `alloc` double NOT NULL default '0',
690   `rate` double NOT NULL default '1',
691   `ship_via` int(11) default NULL,
692   `trans_link` int(11) NOT NULL default '0',
693   `dimension_id` int(11) NOT NULL default '0',
694   `dimension2_id` int(11) NOT NULL default '0',
695   `payment_terms` int(11) default NULL,
696   PRIMARY KEY  (`type`,`trans_no`),
697   KEY `debtor_no` (`debtor_no`,`branch_code`),
698   KEY `tran_date` (`tran_date`)
699 ) TYPE=InnoDB;
700
701 --
702 -- Dumping data for table `0_debtor_trans`
703 --
704
705 INSERT INTO `0_debtor_trans` VALUES(17, 10, 0, 2, 2, '2009-06-21', '2009-06-22', '1', 1, 2, 50, 2.5, 0, 0, 0, 0, 1, 1, 3, 0, 0, 4);
706 INSERT INTO `0_debtor_trans` VALUES(18, 10, 1, 3, 3, '2009-06-21', '2009-07-01', '2', 2, 3, 35.89, 1.79, 0, 0, 0, 37.68, 1.3932, 1, 4, 2, 0, 3);
707 INSERT INTO `0_debtor_trans` VALUES(19, 10, 0, 2, 2, '2009-06-21', '2009-06-22', '3', 1, 5, 50, 0, 5, 0, 0, 0, 1, 1, 5, 0, 0, 4);
708 INSERT INTO `0_debtor_trans` VALUES(3, 11, 0, 3, 3, '2009-06-21', '0000-00-00', '1', 2, 3, 35.89, 1.79, 0, 0, 0, 37.68, 1.3932, 1, 18, 2, 0, 3);
709 INSERT INTO `0_debtor_trans` VALUES(2, 13, 0, 1, 1, '2009-06-21', '2009-06-22', '1', 2, 1, 60.8, 0, 10, 0, 0, 0, 1.6445729799917, 1, 0, 0, 0, 3);
710 INSERT INTO `0_debtor_trans` VALUES(3, 13, 1, 2, 2, '2009-06-21', '2009-06-22', 'auto', 1, 2, 50, 2.5, 0, 0, 0, 0, 1, 1, 17, 0, 0, 4);
711 INSERT INTO `0_debtor_trans` VALUES(4, 13, 1, 3, 3, '2009-06-21', '2009-07-01', 'auto', 2, 3, 35.89, 1.79, 0, 0, 0, 0, 1.3932, 1, 18, 2, 0, 3);
712 INSERT INTO `0_debtor_trans` VALUES(5, 13, 1, 2, 2, '2009-06-21', '2009-06-22', 'auto', 1, 5, 50, 0, 5, 0, 0, 0, 1, 1, 19, 0, 0, 4);
713
714 -- --------------------------------------------------------
715
716 --
717 -- Table structure for table `0_debtor_trans_details`
718 --
719
720 DROP TABLE IF EXISTS `0_debtor_trans_details`;
721 CREATE TABLE IF NOT EXISTS `0_debtor_trans_details` (
722   `id` int(11) NOT NULL auto_increment,
723   `debtor_trans_no` int(11) default NULL,
724   `debtor_trans_type` int(11) default NULL,
725   `stock_id` varchar(20) NOT NULL default '',
726   `description` tinytext,
727   `unit_price` double NOT NULL default '0',
728   `unit_tax` double NOT NULL default '0',
729   `quantity` double NOT NULL default '0',
730   `discount_percent` double NOT NULL default '0',
731   `standard_cost` double NOT NULL default '0',
732   `qty_done` double NOT NULL default '0',
733   PRIMARY KEY  (`id`),
734   KEY `Transaction` (`debtor_trans_type`,`debtor_trans_no`)
735 ) TYPE=InnoDB  AUTO_INCREMENT=9 ;
736
737 --
738 -- Dumping data for table `0_debtor_trans_details`
739 --
740
741 INSERT INTO `0_debtor_trans_details` VALUES(1, 2, 13, '102', '17inch VGA Monitor', 30.4, 0, 2, 0, 10, 0);
742 INSERT INTO `0_debtor_trans_details` VALUES(2, 3, 13, '102', '17inch VGA Monitor', 50, 2.5, 1, 0, 10, 1);
743 INSERT INTO `0_debtor_trans_details` VALUES(3, 17, 10, '102', '17inch VGA Monitor', 50, 2.5, 1, 0, 10, 0);
744 INSERT INTO `0_debtor_trans_details` VALUES(4, 4, 13, '102', '17inch VGA Monitor', 35.89, 1.79, 1, 0, 10, 1);
745 INSERT INTO `0_debtor_trans_details` VALUES(5, 18, 10, '102', '17inch VGA Monitor', 35.89, 1.79, 1, 0, 10, 1);
746 INSERT INTO `0_debtor_trans_details` VALUES(6, 5, 13, '102', '17inch VGA Monitor', 50, 2.38, 1, 0, 10, 1);
747 INSERT INTO `0_debtor_trans_details` VALUES(7, 19, 10, '102', '17inch VGA Monitor', 50, 2.38, 1, 0, 10, 0);
748 INSERT INTO `0_debtor_trans_details` VALUES(8, 3, 11, '102', '17inch VGA Monitor', 35.89, 1.79, 1, 0, 10, 0);
749
750 -- --------------------------------------------------------
751
752 --
753 -- Table structure for table `0_dimensions`
754 --
755
756 DROP TABLE IF EXISTS `0_dimensions`;
757 CREATE TABLE IF NOT EXISTS `0_dimensions` (
758   `id` int(11) NOT NULL auto_increment,
759   `reference` varchar(60) NOT NULL default '',
760   `name` varchar(60) NOT NULL default '',
761   `type_` tinyint(1) NOT NULL default '1',
762   `closed` tinyint(1) NOT NULL default '0',
763   `date_` date NOT NULL default '0000-00-00',
764   `due_date` date NOT NULL default '0000-00-00',
765   PRIMARY KEY  (`id`),
766   UNIQUE KEY `reference` (`reference`),
767   KEY `date_` (`date_`),
768   KEY `due_date` (`due_date`),
769   KEY `type_` (`type_`)
770 ) TYPE=InnoDB  AUTO_INCREMENT=3 ;
771
772 --
773 -- Dumping data for table `0_dimensions`
774 --
775
776 INSERT INTO `0_dimensions` VALUES(1, '1', 'Support', 1, 0, '2009-06-21', '2015-07-11');
777 INSERT INTO `0_dimensions` VALUES(2, '2', 'Development', 1, 0, '2009-06-21', '2015-07-11');
778
779 -- --------------------------------------------------------
780
781 --
782 -- Table structure for table `0_exchange_rates`
783 --
784
785 DROP TABLE IF EXISTS `0_exchange_rates`;
786 CREATE TABLE IF NOT EXISTS `0_exchange_rates` (
787   `id` int(11) NOT NULL auto_increment,
788   `curr_code` char(3) NOT NULL default '',
789   `rate_buy` double NOT NULL default '0',
790   `rate_sell` double NOT NULL default '0',
791   `date_` date NOT NULL default '0000-00-00',
792   PRIMARY KEY  (`id`),
793   UNIQUE KEY `curr_code` (`curr_code`,`date_`)
794 ) TYPE=MyISAM  AUTO_INCREMENT=4 ;
795
796 --
797 -- Dumping data for table `0_exchange_rates`
798 --
799
800 INSERT INTO `0_exchange_rates` VALUES(1, 'DKK', 0.18717252868313, 0.18717252868313, '2009-06-21');
801 INSERT INTO `0_exchange_rates` VALUES(2, 'GBP', 1.6445729799917, 1.6445729799917, '2009-06-21');
802 INSERT INTO `0_exchange_rates` VALUES(3, 'EUR', 1.3932, 1.3932, '2009-06-21');
803
804 -- --------------------------------------------------------
805
806 --
807 -- Table structure for table `0_fiscal_year`
808 --
809
810 DROP TABLE IF EXISTS `0_fiscal_year`;
811 CREATE TABLE IF NOT EXISTS `0_fiscal_year` (
812   `id` int(11) NOT NULL auto_increment,
813   `begin` date default '0000-00-00',
814   `end` date default '0000-00-00',
815   `closed` tinyint(1) NOT NULL default '0',
816   PRIMARY KEY  (`id`),
817   UNIQUE KEY `begin` (`begin`),
818   UNIQUE KEY `end` (`end`)
819 ) TYPE=InnoDB  AUTO_INCREMENT=4 ;
820
821 --
822 -- Dumping data for table `0_fiscal_year`
823 --
824
825 INSERT INTO `0_fiscal_year` VALUES(1, '2008-01-01', '2008-12-31', 0);
826 INSERT INTO `0_fiscal_year` VALUES(2, '2009-01-01', '2009-12-31', 0);
827 INSERT INTO `0_fiscal_year` VALUES(3, '2010-01-01', '2010-12-31', 0);
828
829 -- --------------------------------------------------------
830
831 --
832 -- Table structure for table `0_gl_trans`
833 --
834
835 DROP TABLE IF EXISTS `0_gl_trans`;
836 CREATE TABLE IF NOT EXISTS `0_gl_trans` (
837   `counter` int(11) NOT NULL auto_increment,
838   `type` smallint(6) NOT NULL default '0',
839   `type_no` bigint(16) NOT NULL default '1',
840   `tran_date` date NOT NULL default '0000-00-00',
841   `account` varchar(15) NOT NULL default '',
842   `memo_` tinytext NOT NULL,
843   `amount` double NOT NULL default '0',
844   `dimension_id` int(11) NOT NULL default '0',
845   `dimension2_id` int(11) NOT NULL default '0',
846   `person_type_id` int(11) default NULL,
847   `person_id` tinyblob,
848   PRIMARY KEY  (`counter`),
849   KEY `Type_and_Number` (`type`,`type_no`),
850   KEY `dimension_id` (`dimension_id`),
851   KEY `dimension2_id` (`dimension2_id`),
852   KEY `tran_date` (`tran_date`),
853   KEY `account_and_tran_date` (`account`,`tran_date`)
854 ) TYPE=InnoDB  AUTO_INCREMENT=84 ;
855
856 --
857 -- Dumping data for table `0_gl_trans`
858 --
859
860 INSERT INTO `0_gl_trans` VALUES(1, 20, 7, '2009-06-21', '2100', '', -3465, 0, 0, 3, '2');
861 INSERT INTO `0_gl_trans` VALUES(2, 20, 7, '2009-06-21', '1510', '', 1000, 0, 0, 3, '2');
862 INSERT INTO `0_gl_trans` VALUES(3, 20, 7, '2009-06-21', '1510', '', 1100, 0, 0, 3, '2');
863 INSERT INTO `0_gl_trans` VALUES(4, 20, 7, '2009-06-21', '1510', '', 1200, 0, 0, 3, '2');
864 INSERT INTO `0_gl_trans` VALUES(5, 20, 7, '2009-06-21', '2150', '', 165, 0, 0, 3, '2');
865 INSERT INTO `0_gl_trans` VALUES(6, 22, 4, '2009-06-21', '2100', '', 3465, 0, 0, 3, '2');
866 INSERT INTO `0_gl_trans` VALUES(7, 22, 4, '2009-06-21', '1060', '', -3465, 0, 0, 3, '2');
867 INSERT INTO `0_gl_trans` VALUES(8, 26, 1, '2009-06-21', '1510', '', -100, 0, 0, NULL, '');
868 INSERT INTO `0_gl_trans` VALUES(9, 26, 1, '2009-06-21', '1510', '', -110, 0, 0, NULL, '');
869 INSERT INTO `0_gl_trans` VALUES(10, 26, 1, '2009-06-21', '1510', '', -120, 0, 0, NULL, '');
870 INSERT INTO `0_gl_trans` VALUES(11, 26, 1, '2009-06-21', '1060', 'Overhead Cost', -10, 0, 0, 1, '1');
871 INSERT INTO `0_gl_trans` VALUES(12, 26, 1, '2009-06-21', '1530', 'Overhead Cost', 10, 0, 0, 1, '1');
872 INSERT INTO `0_gl_trans` VALUES(13, 26, 1, '2009-06-21', '1060', 'Labour Cost', -20, 0, 0, 1, '0');
873 INSERT INTO `0_gl_trans` VALUES(14, 26, 1, '2009-06-21', '1530', 'Labour Cost', 20, 0, 0, 1, '0');
874 INSERT INTO `0_gl_trans` VALUES(15, 26, 1, '2009-06-21', '1510', '', 330, 0, 0, NULL, '');
875 INSERT INTO `0_gl_trans` VALUES(16, 13, 2, '2009-06-21', '5010', '', 20, 0, 0, 2, '1');
876 INSERT INTO `0_gl_trans` VALUES(17, 13, 2, '2009-06-21', '1510', '', -20, 0, 0, 2, '1');
877 INSERT INTO `0_gl_trans` VALUES(18, 13, 3, '2009-06-21', '5010', '', 10, 0, 0, 2, '2');
878 INSERT INTO `0_gl_trans` VALUES(19, 13, 3, '2009-06-21', '1510', '', -10, 0, 0, 2, '2');
879 INSERT INTO `0_gl_trans` VALUES(20, 10, 17, '2009-06-21', '4010', '', -50, 0, 0, 2, '2');
880 INSERT INTO `0_gl_trans` VALUES(21, 10, 17, '2009-06-21', '1200', '', 52.5, 0, 0, 2, '2');
881 INSERT INTO `0_gl_trans` VALUES(22, 10, 17, '2009-06-21', '2150', '', -2.5, 0, 0, 2, '2');
882 INSERT INTO `0_gl_trans` VALUES(23, 13, 4, '2009-06-21', '5010', '', 10, 2, 0, 2, '3');
883 INSERT INTO `0_gl_trans` VALUES(24, 13, 4, '2009-06-21', '1510', '', -10, 0, 0, 2, '3');
884 INSERT INTO `0_gl_trans` VALUES(25, 10, 18, '2009-06-21', '4010', '', -50, 2, 0, 2, '3');
885 INSERT INTO `0_gl_trans` VALUES(26, 10, 18, '2009-06-21', '1200', '', 52.5, 0, 0, 2, '3');
886 INSERT INTO `0_gl_trans` VALUES(27, 10, 18, '2009-06-21', '2150', '', -2.5, 0, 0, 2, '3');
887 INSERT INTO `0_gl_trans` VALUES(28, 0, 18, '2009-02-20', '1060', '', 1000, 0, 0, NULL, '');
888 INSERT INTO `0_gl_trans` VALUES(29, 0, 18, '2009-02-20', '3350', '', -1000, 0, 0, NULL, '');
889 INSERT INTO `0_gl_trans` VALUES(30, 0, 19, '2009-02-21', '1060', '', 4000, 0, 0, NULL, '');
890 INSERT INTO `0_gl_trans` VALUES(31, 0, 19, '2009-02-21', '3350', '', -4000, 0, 0, NULL, '');
891 INSERT INTO `0_gl_trans` VALUES(32, 26, 3, '2009-06-21', '1510', '', -20, 0, 0, NULL, '');
892 INSERT INTO `0_gl_trans` VALUES(33, 26, 3, '2009-06-21', '1510', '', -22, 0, 0, NULL, '');
893 INSERT INTO `0_gl_trans` VALUES(34, 26, 3, '2009-06-21', '1510', '', -24, 0, 0, NULL, '');
894 INSERT INTO `0_gl_trans` VALUES(35, 26, 3, '2009-06-21', '1540', '', 66, 0, 0, NULL, '');
895 INSERT INTO `0_gl_trans` VALUES(36, 2, 5, '2009-06-21', '2150', 'Cash Sales', -4.76, 0, 0, 4, '3');
896 INSERT INTO `0_gl_trans` VALUES(37, 2, 5, '2009-06-21', '4010', 'Cash Sales', -95.24, 0, 0, 4, '3');
897 INSERT INTO `0_gl_trans` VALUES(38, 2, 5, '2009-06-21', '1060', '', 100, 0, 0, 4, '3');
898 INSERT INTO `0_gl_trans` VALUES(39, 1, 8, '2009-06-21', '2150', 'Maintenance', 2.38, 0, 0, 4, '1');
899 INSERT INTO `0_gl_trans` VALUES(40, 1, 8, '2009-06-21', '5765', 'Maintenance', 47.62, 0, 0, 4, '1');
900 INSERT INTO `0_gl_trans` VALUES(41, 1, 8, '2009-06-21', '1060', '', -50, 0, 0, 4, '1');
901 INSERT INTO `0_gl_trans` VALUES(42, 20, 8, '2009-06-21', '2100', '', -20, 0, 0, 3, '2');
902 INSERT INTO `0_gl_trans` VALUES(43, 20, 8, '2009-06-21', '2150', '', 0.95, 0, 0, 3, '2');
903 INSERT INTO `0_gl_trans` VALUES(44, 20, 8, '2009-06-21', '5780', '', 19.05, 0, 0, 3, '2');
904 INSERT INTO `0_gl_trans` VALUES(45, 26, 4, '2009-06-21', '1510', '', -40, 0, 0, NULL, '');
905 INSERT INTO `0_gl_trans` VALUES(46, 26, 4, '2009-06-21', '1510', '', -44, 0, 0, NULL, '');
906 INSERT INTO `0_gl_trans` VALUES(47, 26, 4, '2009-06-21', '1510', '', -48, 0, 0, NULL, '');
907 INSERT INTO `0_gl_trans` VALUES(48, 26, 4, '2009-06-21', '1540', '', 132, 0, 0, NULL, '');
908 INSERT INTO `0_gl_trans` VALUES(49, 26, 2, '2009-06-21', '1510', '', -20, 0, 0, NULL, '');
909 INSERT INTO `0_gl_trans` VALUES(50, 26, 2, '2009-06-21', '1510', '', -22, 0, 0, NULL, '');
910 INSERT INTO `0_gl_trans` VALUES(51, 26, 2, '2009-06-21', '1510', '', -24, 0, 0, NULL, '');
911 INSERT INTO `0_gl_trans` VALUES(52, 26, 2, '2009-06-21', '1540', '', 66, 0, 0, NULL, '');
912 INSERT INTO `0_gl_trans` VALUES(53, 26, 5, '2009-06-21', '1510', '', -50, 0, 0, NULL, '');
913 INSERT INTO `0_gl_trans` VALUES(54, 26, 5, '2009-06-21', '1510', '', -55, 0, 0, NULL, '');
914 INSERT INTO `0_gl_trans` VALUES(55, 26, 5, '2009-06-21', '1510', '', -60, 0, 0, NULL, '');
915 INSERT INTO `0_gl_trans` VALUES(56, 26, 5, '2009-06-21', '1060', 'Overhead Cost', -10, 0, 0, 1, '1');
916 INSERT INTO `0_gl_trans` VALUES(57, 26, 5, '2009-06-21', '1530', 'Overhead Cost', 10, 0, 0, 1, '1');
917 INSERT INTO `0_gl_trans` VALUES(58, 26, 5, '2009-06-21', '1060', 'Labour Cost', -20, 0, 0, 1, '0');
918 INSERT INTO `0_gl_trans` VALUES(59, 26, 5, '2009-06-21', '1530', 'Labour Cost', 20, 0, 0, 1, '0');
919 INSERT INTO `0_gl_trans` VALUES(60, 26, 5, '2009-06-21', '1540', '', 165, 0, 0, NULL, '');
920 INSERT INTO `0_gl_trans` VALUES(61, 26, 6, '2009-06-21', '1510', '', 50, 0, 0, NULL, '');
921 INSERT INTO `0_gl_trans` VALUES(62, 26, 6, '2009-06-21', '1510', '', 55, 0, 0, NULL, '');
922 INSERT INTO `0_gl_trans` VALUES(63, 26, 6, '2009-06-21', '1510', '', 60, 0, 0, NULL, '');
923 INSERT INTO `0_gl_trans` VALUES(64, 26, 6, '2009-06-21', '1540', '', -165, 0, 0, NULL, '');
924 INSERT INTO `0_gl_trans` VALUES(65, 26, 7, '2009-06-21', '1510', '', 20, 0, 0, NULL, '');
925 INSERT INTO `0_gl_trans` VALUES(66, 26, 7, '2009-06-21', '1510', '', 22, 0, 0, NULL, '');
926 INSERT INTO `0_gl_trans` VALUES(67, 26, 7, '2009-06-21', '1510', '', 24, 0, 0, NULL, '');
927 INSERT INTO `0_gl_trans` VALUES(68, 26, 7, '2009-06-21', '1060', 'Overhead Cost', -10, 0, 0, 1, '1');
928 INSERT INTO `0_gl_trans` VALUES(69, 26, 7, '2009-06-21', '1530', 'Overhead Cost', 10, 0, 0, 1, '1');
929 INSERT INTO `0_gl_trans` VALUES(70, 26, 7, '2009-06-21', '1060', 'Labour Cost', -20, 0, 0, 1, '0');
930 INSERT INTO `0_gl_trans` VALUES(71, 26, 7, '2009-06-21', '1530', 'Labour Cost', 20, 0, 0, 1, '0');
931 INSERT INTO `0_gl_trans` VALUES(72, 26, 7, '2009-06-21', '1540', '', -66, 0, 0, NULL, '');
932 INSERT INTO `0_gl_trans` VALUES(73, 13, 5, '2009-06-21', '5010', '', 10, 0, 0, 2, '2');
933 INSERT INTO `0_gl_trans` VALUES(74, 13, 5, '2009-06-21', '1510', '', -10, 0, 0, 2, '2');
934 INSERT INTO `0_gl_trans` VALUES(75, 10, 19, '2009-06-21', '4010', '', -47.62, 0, 0, 2, '2');
935 INSERT INTO `0_gl_trans` VALUES(76, 10, 19, '2009-06-21', '1200', '', 55, 0, 0, 2, '2');
936 INSERT INTO `0_gl_trans` VALUES(77, 10, 19, '2009-06-21', '4430', '', -5, 0, 0, 2, '2');
937 INSERT INTO `0_gl_trans` VALUES(78, 10, 19, '2009-06-21', '2150', '', -2.38, 0, 0, 2, '2');
938 INSERT INTO `0_gl_trans` VALUES(79, 11, 3, '2009-06-21', '5010', '', -10, 2, 0, 2, '3');
939 INSERT INTO `0_gl_trans` VALUES(80, 11, 3, '2009-06-21', '1510', '', 10, 0, 0, 2, '3');
940 INSERT INTO `0_gl_trans` VALUES(81, 11, 3, '2009-06-21', '4010', '', 50, 2, 0, 2, '3');
941 INSERT INTO `0_gl_trans` VALUES(82, 11, 3, '2009-06-21', '1200', '', -52.5, 0, 0, 2, '3');
942 INSERT INTO `0_gl_trans` VALUES(83, 11, 3, '2009-06-21', '2150', '', 2.5, 0, 0, 2, '3');
943
944 -- --------------------------------------------------------
945
946 --
947 -- Table structure for table `0_grn_batch`
948 --
949
950 DROP TABLE IF EXISTS `0_grn_batch`;
951 CREATE TABLE IF NOT EXISTS `0_grn_batch` (
952   `id` int(11) NOT NULL auto_increment,
953   `supplier_id` int(11) NOT NULL default '0',
954   `purch_order_no` int(11) default NULL,
955   `reference` varchar(60) NOT NULL default '',
956   `delivery_date` date NOT NULL default '0000-00-00',
957   `loc_code` varchar(5) default NULL,
958   PRIMARY KEY  (`id`),
959   KEY `delivery_date` (`delivery_date`),
960   KEY `purch_order_no` (`purch_order_no`)
961 ) TYPE=InnoDB  AUTO_INCREMENT=2 ;
962
963 --
964 -- Dumping data for table `0_grn_batch`
965 --
966
967 INSERT INTO `0_grn_batch` VALUES(1, 2, 1, '1', '2009-06-21', 'DEF');
968
969 -- --------------------------------------------------------
970
971 --
972 -- Table structure for table `0_grn_items`
973 --
974
975 DROP TABLE IF EXISTS `0_grn_items`;
976 CREATE TABLE IF NOT EXISTS `0_grn_items` (
977   `id` int(11) NOT NULL auto_increment,
978   `grn_batch_id` int(11) default NULL,
979   `po_detail_item` int(11) NOT NULL default '0',
980   `item_code` varchar(20) NOT NULL default '',
981   `description` tinytext,
982   `qty_recd` double NOT NULL default '0',
983   `quantity_inv` double NOT NULL default '0',
984   PRIMARY KEY  (`id`),
985   KEY `grn_batch_id` (`grn_batch_id`)
986 ) TYPE=InnoDB  AUTO_INCREMENT=4 ;
987
988 --
989 -- Dumping data for table `0_grn_items`
990 --
991
992 INSERT INTO `0_grn_items` VALUES(1, 1, 1, '102', '17inch VGA Monitor', 100, 100);
993 INSERT INTO `0_grn_items` VALUES(2, 1, 2, '103', '32MB VGA Card', 100, 100);
994 INSERT INTO `0_grn_items` VALUES(3, 1, 3, '104', '52x CD Drive', 100, 100);
995
996 -- --------------------------------------------------------
997
998 --
999 -- Table structure for table `0_groups`
1000 --
1001
1002 DROP TABLE IF EXISTS `0_groups`;
1003 CREATE TABLE IF NOT EXISTS `0_groups` (
1004   `id` smallint(6) unsigned NOT NULL auto_increment,
1005   `description` varchar(60) NOT NULL default '',
1006   `inactive` tinyint(1) NOT NULL default '0',
1007   PRIMARY KEY  (`id`),
1008   UNIQUE KEY `description` (`description`)
1009 ) TYPE=MyISAM  AUTO_INCREMENT=4 ;
1010
1011 --
1012 -- Dumping data for table `0_groups`
1013 --
1014
1015 INSERT INTO `0_groups` VALUES(1, 'Small', 0);
1016 INSERT INTO `0_groups` VALUES(2, 'Medium', 0);
1017 INSERT INTO `0_groups` VALUES(3, 'Large', 0);
1018
1019 -- --------------------------------------------------------
1020
1021 --
1022 -- Table structure for table `0_item_codes`
1023 --
1024
1025 DROP TABLE IF EXISTS `0_item_codes`;
1026 CREATE TABLE IF NOT EXISTS `0_item_codes` (
1027   `id` int(11) unsigned NOT NULL auto_increment,
1028   `item_code` varchar(20) NOT NULL,
1029   `stock_id` varchar(20) NOT NULL,
1030   `description` varchar(200) NOT NULL default '',
1031   `category_id` smallint(6) unsigned NOT NULL,
1032   `quantity` double NOT NULL default '1',
1033   `is_foreign` tinyint(1) NOT NULL default '0',
1034   `inactive` tinyint(1) NOT NULL default '0',
1035   PRIMARY KEY  (`id`),
1036   UNIQUE KEY `stock_id` (`stock_id`,`item_code`),
1037   KEY `item_code` (`item_code`)
1038 ) TYPE=MyISAM  AUTO_INCREMENT=6 ;
1039
1040 --
1041 -- Dumping data for table `0_item_codes`
1042 --
1043
1044 INSERT INTO `0_item_codes` VALUES(1, '102', '102', '17inch VGA Monitor', 1, 1, 0, 0);
1045 INSERT INTO `0_item_codes` VALUES(2, '103', '103', '32MB VGA Card', 1, 1, 0, 0);
1046 INSERT INTO `0_item_codes` VALUES(3, '104', '104', '52x CD Drive', 1, 1, 0, 0);
1047 INSERT INTO `0_item_codes` VALUES(4, '3400', '3400', 'P4 Business System', 3, 1, 0, 0);
1048 INSERT INTO `0_item_codes` VALUES(5, '201', '201', 'Assembly Labour', 4, 1, 0, 0);
1049
1050 -- --------------------------------------------------------
1051
1052 --
1053 -- Table structure for table `0_item_tax_types`
1054 --
1055
1056 DROP TABLE IF EXISTS `0_item_tax_types`;
1057 CREATE TABLE IF NOT EXISTS `0_item_tax_types` (
1058   `id` int(11) NOT NULL auto_increment,
1059   `name` varchar(60) NOT NULL default '',
1060   `exempt` tinyint(1) NOT NULL default '0',
1061   `inactive` tinyint(1) NOT NULL default '0',
1062   PRIMARY KEY  (`id`),
1063   UNIQUE KEY `name` (`name`)
1064 ) TYPE=InnoDB  AUTO_INCREMENT=2 ;
1065
1066 --
1067 -- Dumping data for table `0_item_tax_types`
1068 --
1069
1070 INSERT INTO `0_item_tax_types` VALUES(1, 'Regular', 0, 0);
1071
1072 -- --------------------------------------------------------
1073
1074 --
1075 -- Table structure for table `0_item_tax_type_exemptions`
1076 --
1077
1078 DROP TABLE IF EXISTS `0_item_tax_type_exemptions`;
1079 CREATE TABLE IF NOT EXISTS `0_item_tax_type_exemptions` (
1080   `item_tax_type_id` int(11) NOT NULL default '0',
1081   `tax_type_id` int(11) NOT NULL default '0',
1082   PRIMARY KEY  (`item_tax_type_id`,`tax_type_id`)
1083 ) TYPE=InnoDB;
1084
1085 --
1086 -- Dumping data for table `0_item_tax_type_exemptions`
1087 --
1088
1089
1090 -- --------------------------------------------------------
1091
1092 --
1093 -- Table structure for table `0_item_units`
1094 --
1095
1096 DROP TABLE IF EXISTS `0_item_units`;
1097 CREATE TABLE IF NOT EXISTS `0_item_units` (
1098   `abbr` varchar(20) NOT NULL,
1099   `name` varchar(40) NOT NULL,
1100   `decimals` tinyint(2) NOT NULL,
1101   `inactive` tinyint(1) NOT NULL default '0',
1102   PRIMARY KEY  (`abbr`),
1103   UNIQUE KEY `name` (`name`)
1104 ) TYPE=MyISAM;
1105
1106 --
1107 -- Dumping data for table `0_item_units`
1108 --
1109
1110 INSERT INTO `0_item_units` VALUES('ea.', 'Each', 0, 0);
1111 INSERT INTO `0_item_units` VALUES('hrs', 'Hours', 1, 0);
1112
1113 -- --------------------------------------------------------
1114
1115 --
1116 -- Table structure for table `0_locations`
1117 --
1118
1119 DROP TABLE IF EXISTS `0_locations`;
1120 CREATE TABLE IF NOT EXISTS `0_locations` (
1121   `loc_code` varchar(5) NOT NULL default '',
1122   `location_name` varchar(60) NOT NULL default '',
1123   `delivery_address` tinytext NOT NULL,
1124   `phone` varchar(30) NOT NULL default '',
1125   `phone2` varchar(30) NOT NULL default '',
1126   `fax` varchar(30) NOT NULL default '',
1127   `email` varchar(100) NOT NULL default '',
1128   `contact` varchar(30) NOT NULL default '',
1129   `inactive` tinyint(1) NOT NULL default '0',
1130   PRIMARY KEY  (`loc_code`)
1131 ) TYPE=MyISAM;
1132
1133 --
1134 -- Dumping data for table `0_locations`
1135 --
1136
1137 INSERT INTO `0_locations` VALUES('DEF', 'Default', 'Delivery 1\nDelivery 2\nDelivery 3', '', '', '', '', '', 0);
1138
1139 -- --------------------------------------------------------
1140
1141 --
1142 -- Table structure for table `0_loc_stock`
1143 --
1144
1145 DROP TABLE IF EXISTS `0_loc_stock`;
1146 CREATE TABLE IF NOT EXISTS `0_loc_stock` (
1147   `loc_code` char(5) NOT NULL default '',
1148   `stock_id` char(20) NOT NULL default '',
1149   `reorder_level` bigint(20) NOT NULL default '0',
1150   PRIMARY KEY  (`loc_code`,`stock_id`),
1151   KEY `stock_id` (`stock_id`)
1152 ) TYPE=InnoDB;
1153
1154 --
1155 -- Dumping data for table `0_loc_stock`
1156 --
1157
1158 INSERT INTO `0_loc_stock` VALUES('DEF', '102', 0);
1159 INSERT INTO `0_loc_stock` VALUES('DEF', '103', 0);
1160 INSERT INTO `0_loc_stock` VALUES('DEF', '104', 0);
1161 INSERT INTO `0_loc_stock` VALUES('DEF', '201', 0);
1162 INSERT INTO `0_loc_stock` VALUES('DEF', '3400', 0);
1163
1164 -- --------------------------------------------------------
1165
1166 --
1167 -- Table structure for table `0_movement_types`
1168 --
1169
1170 DROP TABLE IF EXISTS `0_movement_types`;
1171 CREATE TABLE IF NOT EXISTS `0_movement_types` (
1172   `id` int(11) NOT NULL auto_increment,
1173   `name` varchar(60) NOT NULL default '',
1174   `inactive` tinyint(1) NOT NULL default '0',
1175   PRIMARY KEY  (`id`),
1176   UNIQUE KEY `name` (`name`)
1177 ) TYPE=MyISAM  AUTO_INCREMENT=2 ;
1178
1179 --
1180 -- Dumping data for table `0_movement_types`
1181 --
1182
1183 INSERT INTO `0_movement_types` VALUES(1, 'Adjustment', 0);
1184
1185 -- --------------------------------------------------------
1186
1187 --
1188 -- Table structure for table `0_payment_terms`
1189 --
1190
1191 DROP TABLE IF EXISTS `0_payment_terms`;
1192 CREATE TABLE IF NOT EXISTS `0_payment_terms` (
1193   `terms_indicator` int(11) NOT NULL auto_increment,
1194   `terms` char(80) NOT NULL default '',
1195   `days_before_due` smallint(6) NOT NULL default '0',
1196   `day_in_following_month` smallint(6) NOT NULL default '0',
1197   `inactive` tinyint(1) NOT NULL default '0',
1198   PRIMARY KEY  (`terms_indicator`),
1199   UNIQUE KEY `terms` (`terms`)
1200 ) TYPE=MyISAM  AUTO_INCREMENT=5 ;
1201
1202 --
1203 -- Dumping data for table `0_payment_terms`
1204 --
1205
1206 INSERT INTO `0_payment_terms` VALUES(1, 'Due 15th Of the Following Month', 0, 17, 0);
1207 INSERT INTO `0_payment_terms` VALUES(2, 'Due By End Of The Following Month', 0, 30, 0);
1208 INSERT INTO `0_payment_terms` VALUES(3, 'Payment due within 10 days', 10, 0, 0);
1209 INSERT INTO `0_payment_terms` VALUES(4, 'Cash Only', 1, 0, 0);
1210
1211 -- --------------------------------------------------------
1212
1213 --
1214 -- Table structure for table `0_prices`
1215 --
1216
1217 DROP TABLE IF EXISTS `0_prices`;
1218 CREATE TABLE IF NOT EXISTS `0_prices` (
1219   `id` int(11) NOT NULL auto_increment,
1220   `stock_id` varchar(20) NOT NULL default '',
1221   `sales_type_id` int(11) NOT NULL default '0',
1222   `curr_abrev` char(3) NOT NULL default '',
1223   `price` double NOT NULL default '0',
1224   PRIMARY KEY  (`id`),
1225   UNIQUE KEY `price` (`stock_id`,`sales_type_id`,`curr_abrev`)
1226 ) TYPE=MyISAM  AUTO_INCREMENT=5 ;
1227
1228 --
1229 -- Dumping data for table `0_prices`
1230 --
1231
1232 INSERT INTO `0_prices` VALUES(1, '3400', 1, 'USD', 100);
1233 INSERT INTO `0_prices` VALUES(2, '102', 1, 'USD', 50);
1234 INSERT INTO `0_prices` VALUES(3, '103', 1, 'USD', 55);
1235 INSERT INTO `0_prices` VALUES(4, '104', 1, 'USD', 60);
1236
1237 -- --------------------------------------------------------
1238
1239 --
1240 -- Table structure for table `0_printers`
1241 --
1242
1243 DROP TABLE IF EXISTS `0_printers`;
1244 CREATE TABLE IF NOT EXISTS `0_printers` (
1245   `id` tinyint(3) unsigned NOT NULL auto_increment,
1246   `name` varchar(20) NOT NULL,
1247   `description` varchar(60) NOT NULL,
1248   `queue` varchar(20) NOT NULL,
1249   `host` varchar(40) NOT NULL,
1250   `port` smallint(11) unsigned NOT NULL,
1251   `timeout` tinyint(3) unsigned NOT NULL,
1252   PRIMARY KEY  (`id`),
1253   UNIQUE KEY `name` (`name`)
1254 ) TYPE=MyISAM  AUTO_INCREMENT=4 ;
1255
1256 --
1257 -- Dumping data for table `0_printers`
1258 --
1259
1260 INSERT INTO `0_printers` VALUES(1, 'QL500', 'Label printer', 'QL500', 'server', 127, 20);
1261 INSERT INTO `0_printers` VALUES(2, 'Samsung', 'Main network printer', 'scx4521F', 'server', 515, 5);
1262 INSERT INTO `0_printers` VALUES(3, 'Local', 'Local print server at user IP', 'lp', '', 515, 10);
1263
1264 -- --------------------------------------------------------
1265
1266 --
1267 -- Table structure for table `0_print_profiles`
1268 --
1269
1270 DROP TABLE IF EXISTS `0_print_profiles`;
1271 CREATE TABLE IF NOT EXISTS `0_print_profiles` (
1272   `id` smallint(6) unsigned NOT NULL auto_increment,
1273   `profile` varchar(30) NOT NULL,
1274   `report` varchar(5) default NULL,
1275   `printer` tinyint(3) unsigned default NULL,
1276   PRIMARY KEY  (`id`),
1277   UNIQUE KEY `profile` (`profile`,`report`)
1278 ) TYPE=MyISAM  AUTO_INCREMENT=10 ;
1279
1280 --
1281 -- Dumping data for table `0_print_profiles`
1282 --
1283
1284 INSERT INTO `0_print_profiles` VALUES(1, 'Out of office', '', 0);
1285 INSERT INTO `0_print_profiles` VALUES(2, 'Sales Department', '', 0);
1286 INSERT INTO `0_print_profiles` VALUES(3, 'Central', '', 2);
1287 INSERT INTO `0_print_profiles` VALUES(4, 'Sales Department', '104', 2);
1288 INSERT INTO `0_print_profiles` VALUES(5, 'Sales Department', '105', 2);
1289 INSERT INTO `0_print_profiles` VALUES(6, 'Sales Department', '107', 2);
1290 INSERT INTO `0_print_profiles` VALUES(7, 'Sales Department', '109', 2);
1291 INSERT INTO `0_print_profiles` VALUES(8, 'Sales Department', '110', 2);
1292 INSERT INTO `0_print_profiles` VALUES(9, 'Sales Department', '201', 2);
1293
1294 -- --------------------------------------------------------
1295
1296 --
1297 -- Table structure for table `0_purch_data`
1298 --
1299
1300 DROP TABLE IF EXISTS `0_purch_data`;
1301 CREATE TABLE IF NOT EXISTS `0_purch_data` (
1302   `supplier_id` int(11) NOT NULL default '0',
1303   `stock_id` char(20) NOT NULL default '',
1304   `price` double NOT NULL default '0',
1305   `suppliers_uom` char(50) NOT NULL default '',
1306   `conversion_factor` double NOT NULL default '1',
1307   `supplier_description` char(50) NOT NULL default '',
1308   PRIMARY KEY  (`supplier_id`,`stock_id`)
1309 ) TYPE=MyISAM;
1310
1311 --
1312 -- Dumping data for table `0_purch_data`
1313 --
1314
1315 INSERT INTO `0_purch_data` VALUES(2, '102', 10, '', 1, '17inch VGA Monitor');
1316 INSERT INTO `0_purch_data` VALUES(2, '103', 11, '', 1, '32MB VGA Card');
1317 INSERT INTO `0_purch_data` VALUES(2, '104', 12, '', 1, '52x CD Drive');
1318
1319 -- --------------------------------------------------------
1320
1321 --
1322 -- Table structure for table `0_purch_orders`
1323 --
1324
1325 DROP TABLE IF EXISTS `0_purch_orders`;
1326 CREATE TABLE IF NOT EXISTS `0_purch_orders` (
1327   `order_no` int(11) NOT NULL auto_increment,
1328   `supplier_id` int(11) NOT NULL default '0',
1329   `comments` tinytext,
1330   `ord_date` date NOT NULL default '0000-00-00',
1331   `reference` tinytext NOT NULL,
1332   `requisition_no` tinytext,
1333   `into_stock_location` varchar(5) NOT NULL default '',
1334   `delivery_address` tinytext NOT NULL,
1335   PRIMARY KEY  (`order_no`),
1336   KEY `ord_date` (`ord_date`)
1337 ) TYPE=InnoDB  AUTO_INCREMENT=3 ;
1338
1339 --
1340 -- Dumping data for table `0_purch_orders`
1341 --
1342
1343 INSERT INTO `0_purch_orders` VALUES(1, 2, '', '2009-06-01', '1', '', 'DEF', 'Delivery 1\nDelivery 2\nDelivery 3');
1344 INSERT INTO `0_purch_orders` VALUES(2, 3, '', '2009-06-21', '2', '', 'DEF', 'Delivery 1\nDelivery 2\nDelivery 3');
1345
1346 -- --------------------------------------------------------
1347
1348 --
1349 -- Table structure for table `0_purch_order_details`
1350 --
1351
1352 DROP TABLE IF EXISTS `0_purch_order_details`;
1353 CREATE TABLE IF NOT EXISTS `0_purch_order_details` (
1354   `po_detail_item` int(11) NOT NULL auto_increment,
1355   `order_no` int(11) NOT NULL default '0',
1356   `item_code` varchar(20) NOT NULL default '',
1357   `description` tinytext,
1358   `delivery_date` date NOT NULL default '0000-00-00',
1359   `qty_invoiced` double NOT NULL default '0',
1360   `unit_price` double NOT NULL default '0',
1361   `act_price` double NOT NULL default '0',
1362   `std_cost_unit` double NOT NULL default '0',
1363   `quantity_ordered` double NOT NULL default '0',
1364   `quantity_received` double NOT NULL default '0',
1365   PRIMARY KEY  (`po_detail_item`),
1366   KEY `order` (`order_no`,`po_detail_item`)
1367 ) TYPE=InnoDB  AUTO_INCREMENT=6 ;
1368
1369 --
1370 -- Dumping data for table `0_purch_order_details`
1371 --
1372
1373 INSERT INTO `0_purch_order_details` VALUES(1, 1, '102', '17inch VGA Monitor', '2009-07-01', 100, 10, 10, 10, 100, 100);
1374 INSERT INTO `0_purch_order_details` VALUES(2, 1, '103', '32MB VGA Card', '2009-07-01', 100, 11, 11, 11, 100, 100);
1375 INSERT INTO `0_purch_order_details` VALUES(3, 1, '104', '52x CD Drive', '2009-07-01', 100, 12, 12, 12, 100, 100);
1376 INSERT INTO `0_purch_order_details` VALUES(4, 2, '102', '17inch VGA Monitor', '2009-07-01', 0, 5, 0, 0, 1, 0);
1377 INSERT INTO `0_purch_order_details` VALUES(5, 2, '103', '32MB VGA Card', '2009-07-01', 0, 5, 0, 0, 1, 0);
1378
1379 -- --------------------------------------------------------
1380
1381 --
1382 -- Table structure for table `0_quick_entries`
1383 --
1384
1385 DROP TABLE IF EXISTS `0_quick_entries`;
1386 CREATE TABLE IF NOT EXISTS `0_quick_entries` (
1387   `id` smallint(6) unsigned NOT NULL auto_increment,
1388   `type` tinyint(1) NOT NULL default '0',
1389   `description` varchar(60) NOT NULL,
1390   `base_amount` double NOT NULL default '0',
1391   `base_desc` varchar(60) default NULL,
1392   `bal_type` tinyint(1) NOT NULL default '0',
1393   PRIMARY KEY  (`id`),
1394   KEY `description` (`description`)
1395 ) TYPE=MyISAM  AUTO_INCREMENT=4 ;
1396
1397 --
1398 -- Dumping data for table `0_quick_entries`
1399 --
1400
1401 INSERT INTO `0_quick_entries` VALUES(1, 1, 'Maintenance', 0, 'Amount', 0);
1402 INSERT INTO `0_quick_entries` VALUES(2, 4, 'Phone', 0, 'Amount', 0);
1403 INSERT INTO `0_quick_entries` VALUES(3, 2, 'Cash Sales', 0, 'Amount', 0);
1404
1405 -- --------------------------------------------------------
1406
1407 --
1408 -- Table structure for table `0_quick_entry_lines`
1409 --
1410
1411 DROP TABLE IF EXISTS `0_quick_entry_lines`;
1412 CREATE TABLE IF NOT EXISTS `0_quick_entry_lines` (
1413   `id` smallint(6) unsigned NOT NULL auto_increment,
1414   `qid` smallint(6) unsigned NOT NULL,
1415   `amount` double default '0',
1416   `action` varchar(2) NOT NULL,
1417   `dest_id` varchar(15) NOT NULL default '',
1418   `dimension_id` smallint(6) unsigned default NULL,
1419   `dimension2_id` smallint(6) unsigned default NULL,
1420   PRIMARY KEY  (`id`),
1421   KEY `qid` (`qid`)
1422 ) TYPE=MyISAM  AUTO_INCREMENT=8 ;
1423
1424 --
1425 -- Dumping data for table `0_quick_entry_lines`
1426 --
1427
1428 INSERT INTO `0_quick_entry_lines` VALUES(1, 1, 0, 't-', '1', 0, 0);
1429 INSERT INTO `0_quick_entry_lines` VALUES(2, 2, 0, 't-', '1', 0, 0);
1430 INSERT INTO `0_quick_entry_lines` VALUES(3, 3, 0, 't-', '1', 0, 0);
1431 INSERT INTO `0_quick_entry_lines` VALUES(4, 3, 0, '=', '4010', 0, 0);
1432 INSERT INTO `0_quick_entry_lines` VALUES(5, 1, 0, '=', '5765', 0, 0);
1433 INSERT INTO `0_quick_entry_lines` VALUES(6, 2, 0, '=', '5780', 0, 0);
1434
1435 -- --------------------------------------------------------
1436
1437 --
1438 -- Table structure for table `0_recurrent_invoices`
1439 --
1440
1441 DROP TABLE IF EXISTS `0_recurrent_invoices`;
1442 CREATE TABLE IF NOT EXISTS `0_recurrent_invoices` (
1443   `id` smallint(6) unsigned NOT NULL auto_increment,
1444   `description` varchar(60) NOT NULL default '',
1445   `order_no` int(11) unsigned NOT NULL,
1446   `debtor_no` int(11) unsigned default NULL,
1447   `group_no` smallint(6) unsigned default NULL,
1448   `days` int(11) NOT NULL default '0',
1449   `monthly` int(11) NOT NULL default '0',
1450   `begin` date NOT NULL default '0000-00-00',
1451   `end` date NOT NULL default '0000-00-00',
1452   `last_sent` date NOT NULL default '0000-00-00',
1453   PRIMARY KEY  (`id`),
1454   UNIQUE KEY `description` (`description`)
1455 ) TYPE=InnoDB AUTO_INCREMENT=1 ;
1456
1457 --
1458 -- Dumping data for table `0_recurrent_invoices`
1459 --
1460
1461
1462 -- --------------------------------------------------------
1463
1464 --
1465 -- Table structure for table `0_refs`
1466 --
1467
1468 DROP TABLE IF EXISTS `0_refs`;
1469 CREATE TABLE IF NOT EXISTS `0_refs` (
1470   `id` int(11) NOT NULL default '0',
1471   `type` int(11) NOT NULL default '0',
1472   `reference` varchar(100) NOT NULL default '',
1473   PRIMARY KEY  (`id`,`type`),
1474   KEY `Type_and_Reference` (`type`,`reference`)
1475 ) TYPE=InnoDB;
1476
1477 --
1478 -- Dumping data for table `0_refs`
1479 --
1480
1481 INSERT INTO `0_refs` VALUES(18, 0, '1');
1482 INSERT INTO `0_refs` VALUES(19, 0, '2');
1483
1484 -- --------------------------------------------------------
1485
1486 --
1487 -- Table structure for table `0_salesman`
1488 --
1489
1490 DROP TABLE IF EXISTS `0_salesman`;
1491 CREATE TABLE IF NOT EXISTS `0_salesman` (
1492   `salesman_code` int(11) NOT NULL auto_increment,
1493   `salesman_name` char(60) NOT NULL default '',
1494   `salesman_phone` char(30) NOT NULL default '',
1495   `salesman_fax` char(30) NOT NULL default '',
1496   `salesman_email` varchar(100) NOT NULL default '',
1497   `provision` double NOT NULL default '0',
1498   `break_pt` double NOT NULL default '0',
1499   `provision2` double NOT NULL default '0',
1500   `inactive` tinyint(1) NOT NULL default '0',
1501   PRIMARY KEY  (`salesman_code`),
1502   UNIQUE KEY `salesman_name` (`salesman_name`)
1503 ) TYPE=MyISAM  AUTO_INCREMENT=2 ;
1504
1505 --
1506 -- Dumping data for table `0_salesman`
1507 --
1508
1509 INSERT INTO `0_salesman` VALUES(1, 'Sales Person', '', '', '', 5, 1000, 4, 0);
1510
1511 -- --------------------------------------------------------
1512
1513 --
1514 -- Table structure for table `0_sales_orders`
1515 --
1516
1517 DROP TABLE IF EXISTS `0_sales_orders`;
1518 CREATE TABLE IF NOT EXISTS `0_sales_orders` (
1519   `order_no` int(11) NOT NULL,
1520   `trans_type` smallint(6) NOT NULL default '30',
1521   `version` tinyint(1) unsigned NOT NULL default '0',
1522   `type` tinyint(1) NOT NULL default '0',
1523   `debtor_no` int(11) NOT NULL default '0',
1524   `branch_code` int(11) NOT NULL default '0',
1525   `reference` varchar(100) NOT NULL default '',
1526   `customer_ref` tinytext NOT NULL,
1527   `comments` tinytext,
1528   `ord_date` date NOT NULL default '0000-00-00',
1529   `order_type` int(11) NOT NULL default '0',
1530   `ship_via` int(11) NOT NULL default '0',
1531   `delivery_address` tinytext NOT NULL,
1532   `contact_phone` varchar(30) default NULL,
1533   `contact_email` varchar(100) default NULL,
1534   `deliver_to` tinytext NOT NULL,
1535   `freight_cost` double NOT NULL default '0',
1536   `from_stk_loc` varchar(5) NOT NULL default '',
1537   `delivery_date` date NOT NULL default '0000-00-00',
1538   `payment_terms` int(11) default NULL,
1539   PRIMARY KEY  (`trans_type`,`order_no`)
1540 ) TYPE=InnoDB;
1541
1542 --
1543 -- Dumping data for table `0_sales_orders`
1544 --
1545
1546 INSERT INTO `0_sales_orders` VALUES(1, 30, 1, 0, 1, 1, '1', '', '', '2009-06-21', 2, 1, 'Address 1\nAddress 2\nAddress 3', '', '', 'Beefeater Ltd.', 10, 'DEF', '2009-06-22', 3);
1547 INSERT INTO `0_sales_orders` VALUES(2, 30, 1, 0, 2, 2, '2', '', '', '2009-06-21', 1, 1, 'Address 1\nAddress 2\nAddress 3', '', '', 'Ghostbusters Corp.', 0, 'DEF', '2009-06-22', 4);
1548 INSERT INTO `0_sales_orders` VALUES(3, 30, 1, 0, 3, 3, '3', '', '', '2009-06-21', 2, 1, 'Address 1\nAddress 2\nAddress 3', '', '', 'Brezan', 0, 'DEF', '2009-07-01', 3);
1549 INSERT INTO `0_sales_orders` VALUES(4, 30, 0, 0, 1, 1, '4', '', '', '2009-06-21', 2, 1, 'Address 1\nAddress 2\nAddress 3', '', '', 'Beefeater Ltd.', 0, 'DEF', '2009-06-22', 3);
1550 INSERT INTO `0_sales_orders` VALUES(5, 30, 1, 0, 2, 2, '5', '', '', '2009-06-21', 1, 1, 'Address 1\nAddress 2\nAddress 3', '', '', 'Ghostbusters Corp.', 5, 'DEF', '2009-06-22', 4);
1551
1552 -- --------------------------------------------------------
1553
1554 --
1555 -- Table structure for table `0_sales_order_details`
1556 --
1557
1558 DROP TABLE IF EXISTS `0_sales_order_details`;
1559 CREATE TABLE IF NOT EXISTS `0_sales_order_details` (
1560   `id` int(11) NOT NULL auto_increment,
1561   `order_no` int(11) NOT NULL default '0',
1562   `trans_type` smallint(6) NOT NULL default '30',
1563   `stk_code` varchar(20) NOT NULL default '',
1564   `description` tinytext,
1565   `qty_sent` double NOT NULL default '0',
1566   `unit_price` double NOT NULL default '0',
1567   `quantity` double NOT NULL default '0',
1568   `discount_percent` double NOT NULL default '0',
1569   PRIMARY KEY  (`id`),
1570   KEY `sorder` (`trans_type`,`order_no`)
1571 ) TYPE=InnoDB  AUTO_INCREMENT=6 ;
1572
1573 --
1574 -- Dumping data for table `0_sales_order_details`
1575 --
1576
1577 INSERT INTO `0_sales_order_details` VALUES(1, 1, 30, '102', '17inch VGA Monitor', 2, 30.4, 2, 0);
1578 INSERT INTO `0_sales_order_details` VALUES(2, 2, 30, '102', '17inch VGA Monitor', 1, 50, 1, 0);
1579 INSERT INTO `0_sales_order_details` VALUES(3, 3, 30, '102', '17inch VGA Monitor', 1, 35.89, 1, 0);
1580 INSERT INTO `0_sales_order_details` VALUES(4, 4, 30, '102', '17inch VGA Monitor', 0, 21.28, 2, 0);
1581 INSERT INTO `0_sales_order_details` VALUES(5, 5, 30, '102', '17inch VGA Monitor', 1, 50, 1, 0);
1582
1583 -- --------------------------------------------------------
1584
1585 --
1586 -- Table structure for table `0_sales_pos`
1587 --
1588
1589 DROP TABLE IF EXISTS `0_sales_pos`;
1590 CREATE TABLE IF NOT EXISTS `0_sales_pos` (
1591   `id` smallint(6) unsigned NOT NULL auto_increment,
1592   `pos_name` varchar(30) NOT NULL,
1593   `cash_sale` tinyint(1) NOT NULL,
1594   `credit_sale` tinyint(1) NOT NULL,
1595   `pos_location` varchar(5) NOT NULL,
1596   `pos_account` smallint(6) unsigned NOT NULL,
1597   `inactive` tinyint(1) NOT NULL default '0',
1598   PRIMARY KEY  (`id`),
1599   UNIQUE KEY `pos_name` (`pos_name`)
1600 ) TYPE=MyISAM  AUTO_INCREMENT=2 ;
1601
1602 --
1603 -- Dumping data for table `0_sales_pos`
1604 --
1605
1606 INSERT INTO `0_sales_pos` VALUES(1, 'Default', 1, 1, 'DEF', 2, 0);
1607
1608 -- --------------------------------------------------------
1609
1610 --
1611 -- Table structure for table `0_sales_types`
1612 --
1613
1614 DROP TABLE IF EXISTS `0_sales_types`;
1615 CREATE TABLE IF NOT EXISTS `0_sales_types` (
1616   `id` int(11) NOT NULL auto_increment,
1617   `sales_type` char(50) NOT NULL default '',
1618   `tax_included` int(1) NOT NULL default '0',
1619   `factor` double NOT NULL default '1',
1620   `inactive` tinyint(1) NOT NULL default '0',
1621   PRIMARY KEY  (`id`),
1622   UNIQUE KEY `sales_type` (`sales_type`)
1623 ) TYPE=MyISAM  AUTO_INCREMENT=3 ;
1624
1625 --
1626 -- Dumping data for table `0_sales_types`
1627 --
1628
1629 INSERT INTO `0_sales_types` VALUES(1, 'Retail', 1, 1, 0);
1630 INSERT INTO `0_sales_types` VALUES(2, 'Wholesale', 0, 0.7, 0);
1631
1632 -- --------------------------------------------------------
1633
1634 --
1635 -- Table structure for table `0_security_roles`
1636 --
1637
1638 DROP TABLE IF EXISTS `0_security_roles`;
1639 CREATE TABLE IF NOT EXISTS `0_security_roles` (
1640   `id` int(11) NOT NULL auto_increment,
1641   `role` varchar(30) NOT NULL,
1642   `description` varchar(50) default NULL,
1643   `sections` text,
1644   `areas` text,
1645   `inactive` tinyint(1) NOT NULL default '0',
1646   PRIMARY KEY  (`id`),
1647   UNIQUE KEY `role` (`role`)
1648 ) TYPE=MyISAM  AUTO_INCREMENT=11 ;
1649
1650 --
1651 -- Dumping data for table `0_security_roles`
1652 --
1653
1654 INSERT INTO `0_security_roles` VALUES(1, 'Inquiries', 'Inquiries', '768;2816;3072;3328;5632;5888;8192;8448;10752;11008;13312;15872;16128', '257;258;259;260;513;514;515;516;517;518;519;520;521;522;523;524;525;773;774;2822;3073;3075;3076;3077;3329;3330;3331;3332;3333;3334;3335;5377;5633;5640;5889;5890;5891;7937;7938;7939;7940;8193;8194;8450;8451;10497;10753;11009;11010;11012;13313;13315;15617;15618;15619;15620;15621;15622;15623;15624;15625;15626;15873;15882;16129;16130;16131;16132', 0);
1655 INSERT INTO `0_security_roles` VALUES(2, 'System Administrator', 'System Administrator', '256;512;768;2816;3072;3328;5376;5632;5888;7936;8192;8448;10496;10752;11008;13056;13312;15616;15872;16128', '257;258;259;260;513;514;515;516;517;518;519;520;521;522;523;524;525;526;769;770;771;772;773;774;2817;2818;2819;2820;2821;2822;2823;3073;3074;3082;3075;3076;3077;3078;3079;3080;3081;3329;3330;3331;3332;3333;3334;3335;5377;5633;5634;5635;5636;5637;5641;5638;5639;5640;5889;5890;5891;7937;7938;7939;7940;8193;8194;8195;8196;8197;8449;8450;8451;10497;10753;10754;10755;10756;10757;11009;11010;11011;11012;13057;13313;13314;13315;15617;15618;15619;15620;15621;15622;15623;15624;15628;15625;15626;15627;15873;15874;15875;15876;15877;15878;15879;15880;15883;15881;15882;16129;16130;16131;16132', 0);
1656 INSERT INTO `0_security_roles` VALUES(3, 'Salesman', 'Salesman', '768;3072;5632;8192;15872', '773;774;3073;3075;3081;5633;8194;15873', 0);
1657 INSERT INTO `0_security_roles` VALUES(4, 'Stock Manager', 'Stock Manager', '2816;3072;3328;5632;5888;8192;8448;10752;11008;13312;15872;16128', '2818;2822;3073;3076;3077;3329;3330;3330;3330;3331;3331;3332;3333;3334;3335;5633;5640;5889;5890;5891;8193;8194;8450;8451;10753;11009;11010;11012;13313;13315;15882;16129;16130;16131;16132', 0);
1658 INSERT INTO `0_security_roles` VALUES(5, 'Production Manager', 'Production Manager', '512;2816;3072;3328;5632;5888;8192;8448;10752;11008;13312;15616;15872;16128', '521;523;524;2818;2819;2820;2821;2822;2823;3073;3074;3076;3077;3078;3079;3080;3081;3329;3330;3330;3330;3331;3331;3332;3333;3334;3335;5633;5640;5640;5889;5890;5891;8193;8194;8196;8197;8450;8451;10753;10755;11009;11010;11012;13313;13315;15617;15619;15620;15621;15624;15624;15876;15877;15880;15882;16129;16130;16131;16132', 0);
1659 INSERT INTO `0_security_roles` VALUES(6, 'Purchase Officer', 'Purchase Officer', '512;2816;3072;3328;5376;5632;5888;8192;8448;10752;11008;13312;15616;15872;16128', '521;523;524;2818;2819;2820;2821;2822;2823;3073;3074;3076;3077;3078;3079;3080;3081;3329;3330;3330;3330;3331;3331;3332;3333;3334;3335;5377;5633;5635;5640;5640;5889;5890;5891;8193;8194;8196;8197;8449;8450;8451;10753;10755;11009;11010;11012;13313;13315;15617;15619;15620;15621;15624;15624;15876;15877;15880;15882;16129;16130;16131;16132', 0);
1660 INSERT INTO `0_security_roles` VALUES(7, 'AR Officer', 'AR Officer', '512;768;2816;3072;3328;5632;5888;8192;8448;10752;11008;13312;15616;15872;16128', '521;523;524;771;773;774;2818;2819;2820;2821;2822;2823;3073;3073;3074;3075;3076;3077;3078;3079;3080;3081;3081;3329;3330;3330;3330;3331;3331;3332;3333;3334;3335;5633;5633;5634;5637;5638;5639;5640;5640;5889;5890;5891;8193;8194;8194;8196;8197;8450;8451;10753;10755;11009;11010;11012;13313;13315;15617;15619;15620;15621;15624;15624;15873;15876;15877;15878;15880;15882;16129;16130;16131;16132', 0);
1661 INSERT INTO `0_security_roles` VALUES(8, 'AP Officer', 'AP Officer', '512;2816;3072;3328;5376;5632;5888;8192;8448;10752;11008;13312;15616;15872;16128', '257;258;259;260;521;523;524;769;770;771;772;773;774;2818;2819;2820;2821;2822;2823;3073;3074;3082;3076;3077;3078;3079;3080;3081;3329;3330;3331;3332;3333;3334;3335;5377;5633;5635;5640;5889;5890;5891;7937;7938;7939;7940;8193;8194;8196;8197;8449;8450;8451;10497;10753;10755;11009;11010;11012;13057;13313;13315;15617;15619;15620;15621;15624;15876;15877;15880;15882;16129;16130;16131;16132', 0);
1662 INSERT INTO `0_security_roles` VALUES(9, 'Accountant', 'New Accountant', '512;768;2816;3072;3328;5376;5632;5888;8192;8448;10752;11008;13312;15616;15872;16128', '257;258;259;260;521;523;524;771;772;773;774;2818;2819;2820;2821;2822;2823;3073;3074;3075;3076;3077;3078;3079;3080;3081;3329;3330;3331;3332;3333;3334;3335;5377;5633;5634;5635;5637;5638;5639;5640;5889;5890;5891;7937;7938;7939;7940;8193;8194;8196;8197;8449;8450;8451;10497;10753;10755;11009;11010;11012;13313;13315;15617;15618;15619;15620;15621;15624;15873;15876;15877;15878;15880;15882;16129;16130;16131;16132', 0);
1663 INSERT INTO `0_security_roles` VALUES(10, 'Sub Admin', 'Sub Admin', '512;768;2816;3072;3328;5376;5632;5888;8192;8448;10752;11008;13312;15616;15872;16128', '257;258;259;260;521;523;524;771;772;773;774;2818;2819;2820;2821;2822;2823;3073;3074;3082;3075;3076;3077;3078;3079;3080;3081;3329;3330;3331;3332;3333;3334;3335;5377;5633;5634;5635;5637;5638;5639;5640;5889;5890;5891;7937;7938;7939;7940;8193;8194;8196;8197;8449;8450;8451;10497;10753;10755;11009;11010;11012;13057;13313;13315;15617;15619;15620;15621;15624;15873;15874;15876;15877;15878;15879;15880;15882;16129;16130;16131;16132', 0);
1664
1665 -- --------------------------------------------------------
1666
1667 --
1668 -- Table structure for table `0_shippers`
1669 --
1670
1671 DROP TABLE IF EXISTS `0_shippers`;
1672 CREATE TABLE IF NOT EXISTS `0_shippers` (
1673   `shipper_id` int(11) NOT NULL auto_increment,
1674   `shipper_name` varchar(60) NOT NULL default '',
1675   `phone` varchar(30) NOT NULL default '',
1676   `phone2` varchar(30) NOT NULL default '',
1677   `contact` tinytext NOT NULL,
1678   `address` tinytext NOT NULL,
1679   `inactive` tinyint(1) NOT NULL default '0',
1680   PRIMARY KEY  (`shipper_id`),
1681   UNIQUE KEY `name` (`shipper_name`)
1682 ) TYPE=MyISAM  AUTO_INCREMENT=2 ;
1683
1684 --
1685 -- Dumping data for table `0_shippers`
1686 --
1687
1688 INSERT INTO `0_shippers` VALUES(1, 'Default', '', '', '', '', 0);
1689
1690 -- --------------------------------------------------------
1691
1692 --
1693 -- Table structure for table `0_sql_trail`
1694 --
1695
1696 DROP TABLE IF EXISTS `0_sql_trail`;
1697 CREATE TABLE IF NOT EXISTS `0_sql_trail` (
1698   `id` int(11) unsigned NOT NULL auto_increment,
1699   `sql` text NOT NULL,
1700   `result` tinyint(1) NOT NULL,
1701   `msg` varchar(255) NOT NULL,
1702   PRIMARY KEY  (`id`)
1703 ) TYPE=MyISAM AUTO_INCREMENT=1 ;
1704
1705 --
1706 -- Dumping data for table `0_sql_trail`
1707 --
1708
1709
1710 -- --------------------------------------------------------
1711
1712 --
1713 -- Table structure for table `0_stock_category`
1714 --
1715
1716 DROP TABLE IF EXISTS `0_stock_category`;
1717 CREATE TABLE IF NOT EXISTS `0_stock_category` (
1718   `category_id` int(11) NOT NULL auto_increment,
1719   `description` varchar(60) NOT NULL default '',
1720   `dflt_tax_type` int(11) NOT NULL default '1',
1721   `dflt_units` varchar(20) NOT NULL default 'each',
1722   `dflt_mb_flag` char(1) NOT NULL default 'B',
1723   `dflt_sales_act` varchar(15) NOT NULL default '',
1724   `dflt_cogs_act` varchar(15) NOT NULL default '',
1725   `dflt_inventory_act` varchar(15) NOT NULL default '',
1726   `dflt_adjustment_act` varchar(15) NOT NULL default '',
1727   `dflt_assembly_act` varchar(15) NOT NULL default '',
1728   `dflt_dim1` int(11) default NULL,
1729   `dflt_dim2` int(11) default NULL,
1730   `inactive` tinyint(1) NOT NULL default '0',
1731   `dflt_no_sale` tinyint(1) NOT NULL default '0',
1732   PRIMARY KEY  (`category_id`),
1733   UNIQUE KEY `description` (`description`)
1734 ) TYPE=MyISAM  AUTO_INCREMENT=5 ;
1735
1736 --
1737 -- Dumping data for table `0_stock_category`
1738 --
1739
1740 INSERT INTO `0_stock_category` VALUES(1, 'Components', 1, 'each', 'B', '4010', '5010', '1510', '5040', '1530', 0, 0, 0, 0);
1741 INSERT INTO `0_stock_category` VALUES(2, 'Charges', 1, 'each', 'D', '4010', '5010', '1510', '5040', '1530', 0, 0, 0, 0);
1742 INSERT INTO `0_stock_category` VALUES(3, 'Systems', 1, 'each', 'M', '4010', '5010', '1510', '5040', '1530', 0, 0, 0, 0);
1743 INSERT INTO `0_stock_category` VALUES(4, 'Services', 1, 'hrs', 'D', '4010', '5010', '1510', '5040', '1530', 0, 0, 0, 0);
1744
1745 -- --------------------------------------------------------
1746
1747 --
1748 -- Table structure for table `0_stock_master`
1749 --
1750
1751 DROP TABLE IF EXISTS `0_stock_master`;
1752 CREATE TABLE IF NOT EXISTS `0_stock_master` (
1753   `stock_id` varchar(20) NOT NULL default '',
1754   `category_id` int(11) NOT NULL default '0',
1755   `tax_type_id` int(11) NOT NULL default '0',
1756   `description` varchar(200) NOT NULL default '',
1757   `long_description` tinytext NOT NULL,
1758   `units` varchar(20) NOT NULL default 'each',
1759   `mb_flag` char(1) NOT NULL default 'B',
1760   `sales_account` varchar(15) NOT NULL default '',
1761   `cogs_account` varchar(15) NOT NULL default '',
1762   `inventory_account` varchar(15) NOT NULL default '',
1763   `adjustment_account` varchar(15) NOT NULL default '',
1764   `assembly_account` varchar(15) NOT NULL default '',
1765   `dimension_id` int(11) default NULL,
1766   `dimension2_id` int(11) default NULL,
1767   `actual_cost` double NOT NULL default '0',
1768   `last_cost` double NOT NULL default '0',
1769   `material_cost` double NOT NULL default '0',
1770   `labour_cost` double NOT NULL default '0',
1771   `overhead_cost` double NOT NULL default '0',
1772   `inactive` tinyint(1) NOT NULL default '0',
1773   `no_sale` tinyint(1) NOT NULL default '0',
1774   `editable` tinyint(1) NOT NULL default '0',
1775   PRIMARY KEY  (`stock_id`)
1776 ) TYPE=InnoDB;
1777
1778 --
1779 -- Dumping data for table `0_stock_master`
1780 --
1781
1782 INSERT INTO `0_stock_master` VALUES('102', 1, 1, '17inch VGA Monitor', '', 'ea.', 'B', '4010', '5010', '1510', '5040', '1530', 0, 0, 0, 0, 10, 0, 0, 0, 0, 0);
1783 INSERT INTO `0_stock_master` VALUES('103', 1, 1, '32MB VGA Card', '', 'ea.', 'B', '4010', '5010', '1510', '5040', '1530', 0, 0, 0, 0, 11, 0, 0, 0, 0, 0);
1784 INSERT INTO `0_stock_master` VALUES('104', 1, 1, '52x CD Drive', '', 'ea.', 'B', '4010', '5010', '1510', '5040', '1530', 0, 0, 0, 0, 12, 0, 0, 0, 0, 0);
1785 INSERT INTO `0_stock_master` VALUES('201', 4, 1, 'Assembly Labour', '', 'hrs', 'D', '4010', '5010', '5010', '5040', '1530', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
1786 INSERT INTO `0_stock_master` VALUES('3400', 3, 1, 'P4 Business System', '', 'ea.', 'M', '4010', '5010', '1540', '5040', '1530', 0, 0, 0, 0, 33, 3.9999999999999, 2, 0, 0, 0);
1787
1788 -- --------------------------------------------------------
1789
1790 --
1791 -- Table structure for table `0_stock_moves`
1792 --
1793
1794 DROP TABLE IF EXISTS `0_stock_moves`;
1795 CREATE TABLE IF NOT EXISTS `0_stock_moves` (
1796   `trans_id` int(11) NOT NULL auto_increment,
1797   `trans_no` int(11) NOT NULL default '0',
1798   `stock_id` char(20) NOT NULL default '',
1799   `type` smallint(6) NOT NULL default '0',
1800   `loc_code` char(5) NOT NULL default '',
1801   `tran_date` date NOT NULL default '0000-00-00',
1802   `person_id` int(11) default NULL,
1803   `price` double NOT NULL default '0',
1804   `reference` char(40) NOT NULL default '',
1805   `qty` double NOT NULL default '1',
1806   `discount_percent` double NOT NULL default '0',
1807   `standard_cost` double NOT NULL default '0',
1808   `visible` tinyint(1) NOT NULL default '1',
1809   PRIMARY KEY  (`trans_id`),
1810   KEY `type` (`type`,`trans_no`),
1811   KEY `Move` (`stock_id`,`loc_code`,`tran_date`)
1812 ) TYPE=InnoDB  AUTO_INCREMENT=37 ;
1813
1814 --
1815 -- Dumping data for table `0_stock_moves`
1816 --
1817
1818 INSERT INTO `0_stock_moves` VALUES(1, 1, '102', 25, 'DEF', '2009-06-21', 2, 10, '', 100, 0, 10, 1);
1819 INSERT INTO `0_stock_moves` VALUES(2, 1, '103', 25, 'DEF', '2009-06-21', 2, 11, '', 100, 0, 11, 1);
1820 INSERT INTO `0_stock_moves` VALUES(3, 1, '104', 25, 'DEF', '2009-06-21', 2, 12, '', 100, 0, 12, 1);
1821 INSERT INTO `0_stock_moves` VALUES(4, 1, '102', 26, 'DEF', '2009-06-21', 0, 0, '1', -10, 0, 0, 1);
1822 INSERT INTO `0_stock_moves` VALUES(5, 1, '103', 26, 'DEF', '2009-06-21', 0, 0, '1', -10, 0, 0, 1);
1823 INSERT INTO `0_stock_moves` VALUES(6, 1, '104', 26, 'DEF', '2009-06-21', 0, 0, '1', -10, 0, 0, 1);
1824 INSERT INTO `0_stock_moves` VALUES(7, 1, '3400', 26, 'DEF', '2009-06-21', 0, 0, '1', 10, 0, 0, 1);
1825 INSERT INTO `0_stock_moves` VALUES(8, 2, '102', 13, 'DEF', '2009-06-21', 0, 30.4, '1', -2, 0, 10, 1);
1826 INSERT INTO `0_stock_moves` VALUES(9, 3, '102', 13, 'DEF', '2009-06-21', 0, 50, 'auto', -1, 0, 10, 1);
1827 INSERT INTO `0_stock_moves` VALUES(10, 4, '102', 13, 'DEF', '2009-06-21', 0, 35.89, 'auto', -1, 0, 10, 1);
1828 INSERT INTO `0_stock_moves` VALUES(11, 3, '102', 26, 'DEF', '2009-06-21', 0, 0, '3', -2, 0, 0, 1);
1829 INSERT INTO `0_stock_moves` VALUES(12, 3, '103', 26, 'DEF', '2009-06-21', 0, 0, '3', -2, 0, 0, 1);
1830 INSERT INTO `0_stock_moves` VALUES(13, 3, '104', 26, 'DEF', '2009-06-21', 0, 0, '3', -2, 0, 0, 1);
1831 INSERT INTO `0_stock_moves` VALUES(14, 3, '3400', 26, 'DEF', '2009-06-21', 0, 0, '3', 2, 0, 0, 1);
1832 INSERT INTO `0_stock_moves` VALUES(15, 4, '102', 26, 'DEF', '2009-06-21', 0, 0, '4', -4, 0, 0, 1);
1833 INSERT INTO `0_stock_moves` VALUES(16, 4, '103', 26, 'DEF', '2009-06-21', 0, 0, '4', -4, 0, 0, 1);
1834 INSERT INTO `0_stock_moves` VALUES(17, 4, '104', 26, 'DEF', '2009-06-21', 0, 0, '4', -4, 0, 0, 1);
1835 INSERT INTO `0_stock_moves` VALUES(18, 4, '3400', 26, 'DEF', '2009-06-21', 0, 0, '4', 4, 0, 0, 1);
1836 INSERT INTO `0_stock_moves` VALUES(19, 2, '102', 26, 'DEF', '2009-06-21', 0, 0, '', -2, 0, 0, 1);
1837 INSERT INTO `0_stock_moves` VALUES(20, 2, '103', 26, 'DEF', '2009-06-21', 0, 0, '', -2, 0, 0, 1);
1838 INSERT INTO `0_stock_moves` VALUES(21, 2, '104', 26, 'DEF', '2009-06-21', 0, 0, '', -2, 0, 0, 1);
1839 INSERT INTO `0_stock_moves` VALUES(22, 1, '3400', 29, 'DEF', '2009-06-21', 0, 0, '', 2, 0, 0, 1);
1840 INSERT INTO `0_stock_moves` VALUES(23, 5, '102', 26, 'DEF', '2009-06-21', 0, 0, '5', -5, 0, 0, 1);
1841 INSERT INTO `0_stock_moves` VALUES(24, 5, '103', 26, 'DEF', '2009-06-21', 0, 0, '5', -5, 0, 0, 1);
1842 INSERT INTO `0_stock_moves` VALUES(25, 5, '104', 26, 'DEF', '2009-06-21', 0, 0, '5', -5, 0, 0, 1);
1843 INSERT INTO `0_stock_moves` VALUES(26, 5, '3400', 26, 'DEF', '2009-06-21', 0, 0, '5', 5, 0, 0, 1);
1844 INSERT INTO `0_stock_moves` VALUES(27, 6, '102', 26, 'DEF', '2009-06-21', 0, 0, '6', 5, 0, 0, 1);
1845 INSERT INTO `0_stock_moves` VALUES(28, 6, '103', 26, 'DEF', '2009-06-21', 0, 0, '6', 5, 0, 0, 1);
1846 INSERT INTO `0_stock_moves` VALUES(29, 6, '104', 26, 'DEF', '2009-06-21', 0, 0, '6', 5, 0, 0, 1);
1847 INSERT INTO `0_stock_moves` VALUES(30, 6, '3400', 26, 'DEF', '2009-06-21', 0, 0, '6', -5, 0, 0, 1);
1848 INSERT INTO `0_stock_moves` VALUES(31, 7, '102', 26, 'DEF', '2009-06-21', 0, 0, '7', 2, 0, 0, 1);
1849 INSERT INTO `0_stock_moves` VALUES(32, 7, '103', 26, 'DEF', '2009-06-21', 0, 0, '7', 2, 0, 0, 1);
1850 INSERT INTO `0_stock_moves` VALUES(33, 7, '104', 26, 'DEF', '2009-06-21', 0, 0, '7', 2, 0, 0, 1);
1851 INSERT INTO `0_stock_moves` VALUES(34, 7, '3400', 26, 'DEF', '2009-06-21', 0, 0, '7', -2, 0, 0, 1);
1852 INSERT INTO `0_stock_moves` VALUES(35, 5, '102', 13, 'DEF', '2009-06-21', 0, 50, 'auto', -1, 0, 10, 1);
1853 INSERT INTO `0_stock_moves` VALUES(36, 3, '102', 11, 'DEF', '2009-06-21', 0, 37.68, 'Return Ex Inv: 18', 1, 0, 10, 0);
1854
1855 -- --------------------------------------------------------
1856
1857 --
1858 -- Table structure for table `0_suppliers`
1859 --
1860
1861 DROP TABLE IF EXISTS `0_suppliers`;
1862 CREATE TABLE IF NOT EXISTS `0_suppliers` (
1863   `supplier_id` int(11) NOT NULL auto_increment,
1864   `supp_name` varchar(60) NOT NULL default '',
1865   `supp_ref` varchar(30) NOT NULL default '',
1866   `address` tinytext NOT NULL,
1867   `supp_address` tinytext NOT NULL,
1868   `gst_no` varchar(25) NOT NULL default '',
1869   `contact` varchar(60) NOT NULL default '',
1870   `supp_account_no` varchar(40) NOT NULL default '',
1871   `website` varchar(100) NOT NULL default '',
1872   `bank_account` varchar(60) NOT NULL default '',
1873   `curr_code` char(3) default NULL,
1874   `payment_terms` int(11) default NULL,
1875   `dimension_id` int(11) default '0',
1876   `dimension2_id` int(11) default '0',
1877   `tax_group_id` int(11) default NULL,
1878   `credit_limit` double NOT NULL default '0',
1879   `purchase_account` varchar(15) NOT NULL default '',
1880   `payable_account` varchar(15) NOT NULL default '',
1881   `payment_discount_account` varchar(15) NOT NULL default '',
1882   `notes` tinytext NOT NULL,
1883   `inactive` tinyint(1) NOT NULL default '0',
1884   PRIMARY KEY  (`supplier_id`),
1885   KEY `supp_ref` (`supp_ref`)
1886 ) TYPE=MyISAM  AUTO_INCREMENT=4 ;
1887
1888 --
1889 -- Dumping data for table `0_suppliers`
1890 --
1891
1892 INSERT INTO `0_suppliers` VALUES(1, 'Junk Beer ApS', 'Junk Beer', 'Mailing 1\nMailing 2\nMailing 3', 'Address 1\nAddress 2\nAddress 3', '123456', 'Contact', '111', '', '', 'DKK', 3, 1, 0, 2, 1, '5010', '2100', '5060', 'A supplier with junk beers.', 0);
1893 INSERT INTO `0_suppliers` VALUES(2, 'Lucky Luke Inc.', 'Lucky Luke', 'Mailing 1\nMailing 2\nMailing 3', 'Address 1\nAddress 2\nAddress 3', '654321', 'Luke', '333', '', '', 'USD', 3, 0, 0, 1, 1, '5010', '2100', '5060', '', 0);
1894 INSERT INTO `0_suppliers` VALUES(3, 'Money Makers Ltd.', 'Money Makers', 'Mailing 1\nMailing 2\nMailing 3', 'Address 1\nAddress 2\nAddress 3', '987654', 'Makers', '222', '', '', 'GBP', 3, 0, 0, 2, 1, '5010', '2100', '5060', '', 0);
1895
1896 -- --------------------------------------------------------
1897
1898 --
1899 -- Table structure for table `0_supp_allocations`
1900 --
1901
1902 DROP TABLE IF EXISTS `0_supp_allocations`;
1903 CREATE TABLE IF NOT EXISTS `0_supp_allocations` (
1904   `id` int(11) NOT NULL auto_increment,
1905   `amt` double unsigned default NULL,
1906   `date_alloc` date NOT NULL default '0000-00-00',
1907   `trans_no_from` int(11) default NULL,
1908   `trans_type_from` int(11) default NULL,
1909   `trans_no_to` int(11) default NULL,
1910   `trans_type_to` int(11) default NULL,
1911   PRIMARY KEY  (`id`),
1912   KEY `From` (`trans_type_from`,`trans_no_from`),
1913   KEY `To` (`trans_type_to`,`trans_no_to`)
1914 ) TYPE=InnoDB  AUTO_INCREMENT=2 ;
1915
1916 --
1917 -- Dumping data for table `0_supp_allocations`
1918 --
1919
1920 INSERT INTO `0_supp_allocations` VALUES(1, 3465, '2009-06-21', 4, 22, 7, 20);
1921
1922 -- --------------------------------------------------------
1923
1924 --
1925 -- Table structure for table `0_supp_invoice_items`
1926 --
1927
1928 DROP TABLE IF EXISTS `0_supp_invoice_items`;
1929 CREATE TABLE IF NOT EXISTS `0_supp_invoice_items` (
1930   `id` int(11) NOT NULL auto_increment,
1931   `supp_trans_no` int(11) default NULL,
1932   `supp_trans_type` int(11) default NULL,
1933   `gl_code` varchar(15) NOT NULL default '',
1934   `grn_item_id` int(11) default NULL,
1935   `po_detail_item_id` int(11) default NULL,
1936   `stock_id` varchar(20) NOT NULL default '',
1937   `description` tinytext,
1938   `quantity` double NOT NULL default '0',
1939   `unit_price` double NOT NULL default '0',
1940   `unit_tax` double NOT NULL default '0',
1941   `memo_` tinytext,
1942   PRIMARY KEY  (`id`),
1943   KEY `Transaction` (`supp_trans_type`,`supp_trans_no`,`stock_id`)
1944 ) TYPE=InnoDB  AUTO_INCREMENT=6 ;
1945
1946 --
1947 -- Dumping data for table `0_supp_invoice_items`
1948 --
1949
1950 INSERT INTO `0_supp_invoice_items` VALUES(1, 7, 20, '0', 1, 1, '102', '17inch VGA Monitor', 100, 10, 0.5, '');
1951 INSERT INTO `0_supp_invoice_items` VALUES(2, 7, 20, '0', 2, 2, '103', '32MB VGA Card', 100, 11, 0.55, '');
1952 INSERT INTO `0_supp_invoice_items` VALUES(3, 7, 20, '0', 3, 3, '104', '52x CD Drive', 100, 12, 0.6, '');
1953 INSERT INTO `0_supp_invoice_items` VALUES(4, 8, 20, '2150', 0, 0, '', '', 0, 0.95, 0, 'Phone');
1954 INSERT INTO `0_supp_invoice_items` VALUES(5, 8, 20, '5780', 0, 0, '', '', 0, 19.05, 0, 'Phone');
1955
1956 -- --------------------------------------------------------
1957
1958 --
1959 -- Table structure for table `0_supp_trans`
1960 --
1961
1962 DROP TABLE IF EXISTS `0_supp_trans`;
1963 CREATE TABLE IF NOT EXISTS `0_supp_trans` (
1964   `trans_no` int(11) unsigned NOT NULL default '0',
1965   `type` smallint(6) unsigned NOT NULL default '0',
1966   `supplier_id` int(11) unsigned default NULL,
1967   `reference` tinytext NOT NULL,
1968   `supp_reference` varchar(60) NOT NULL default '',
1969   `tran_date` date NOT NULL default '0000-00-00',
1970   `due_date` date NOT NULL default '0000-00-00',
1971   `ov_amount` double NOT NULL default '0',
1972   `ov_discount` double NOT NULL default '0',
1973   `ov_gst` double NOT NULL default '0',
1974   `rate` double NOT NULL default '1',
1975   `alloc` double NOT NULL default '0',
1976   PRIMARY KEY  (`type`,`trans_no`),
1977   KEY `supplier_id` (`supplier_id`),
1978   KEY `SupplierID_2` (`supplier_id`,`supp_reference`),
1979   KEY `type` (`type`),
1980   KEY `tran_date` (`tran_date`)
1981 ) TYPE=InnoDB;
1982
1983 --
1984 -- Dumping data for table `0_supp_trans`
1985 --
1986
1987 INSERT INTO `0_supp_trans` VALUES(7, 20, 2, '1', '5t', '2009-06-21', '2009-07-01', 3300, 0, 165, 1, 3465);
1988 INSERT INTO `0_supp_trans` VALUES(8, 20, 2, '2', 'cc', '2009-06-21', '2009-07-01', 20, 0, 0, 1, 0);
1989 INSERT INTO `0_supp_trans` VALUES(4, 22, 2, '1', '', '2009-06-21', '2009-06-21', -3465, 0, 0, 1, 3465);
1990
1991 -- --------------------------------------------------------
1992
1993 --
1994 -- Table structure for table `0_sys_prefs`
1995 --
1996
1997 DROP TABLE IF EXISTS `0_sys_prefs`;
1998 CREATE TABLE IF NOT EXISTS `0_sys_prefs` (
1999   `name` varchar(35) NOT NULL default '',
2000   `category` varchar(30) default NULL,
2001   `type` varchar(20) NOT NULL default '',
2002   `length` smallint(6) default NULL,
2003   `value` tinytext,
2004   PRIMARY KEY  (`name`),
2005   KEY `category` (`category`)
2006 ) TYPE=MyISAM;
2007
2008 --
2009 -- Dumping data for table `0_sys_prefs`
2010 --
2011
2012 INSERT INTO `0_sys_prefs` VALUES('coy_name', 'setup.company', 'varchar', 60, 'Training Co.');
2013 INSERT INTO `0_sys_prefs` VALUES('gst_no', 'setup.company', 'varchar', 25, '9876543');
2014 INSERT INTO `0_sys_prefs` VALUES('coy_no', 'setup.company', 'varchar', 25, '123456789');
2015 INSERT INTO `0_sys_prefs` VALUES('tax_prd', 'setup.company', 'int', 11, '1');
2016 INSERT INTO `0_sys_prefs` VALUES('tax_last', 'setup.company', 'int', 11, '1');
2017 INSERT INTO `0_sys_prefs` VALUES('postal_address', 'setup.company', 'tinytext', 0, 'Address 1\nAddress 2\nAddress 3');
2018 INSERT INTO `0_sys_prefs` VALUES('phone', 'setup.company', 'varchar', 30, '(222) 111.222.333');
2019 INSERT INTO `0_sys_prefs` VALUES('fax', 'setup.company', 'varchar', 30, '');
2020 INSERT INTO `0_sys_prefs` VALUES('email', 'setup.company', 'varchar', 100, 'delta@delta.com');
2021 INSERT INTO `0_sys_prefs` VALUES('coy_logo', 'setup.company', 'varchar', 100, 'logo_frontaccounting.jpg');
2022 INSERT INTO `0_sys_prefs` VALUES('domicile', 'setup.company', 'varchar', 55, '');
2023 INSERT INTO `0_sys_prefs` VALUES('curr_default', 'setup.company', 'char', 3, 'USD');
2024 INSERT INTO `0_sys_prefs` VALUES('use_dimension', 'setup.company', 'tinyint', 1, '1');
2025 INSERT INTO `0_sys_prefs` VALUES('f_year', 'setup.company', 'int', 11, '3');
2026 INSERT INTO `0_sys_prefs` VALUES('no_item_list', 'setup.company', 'tinyint', 1, '0');
2027 INSERT INTO `0_sys_prefs` VALUES('no_customer_list', 'setup.company', 'tinyint', 1, '0');
2028 INSERT INTO `0_sys_prefs` VALUES('no_supplier_list', 'setup.company', 'tinyint', 1, '0');
2029 INSERT INTO `0_sys_prefs` VALUES('base_sales', 'setup.company', 'int', 11, '1');
2030 INSERT INTO `0_sys_prefs` VALUES('time_zone', 'setup.company', 'tinyint', 1, '0');
2031 INSERT INTO `0_sys_prefs` VALUES('add_pct', 'setup.company', 'int', 5, '-1');
2032 INSERT INTO `0_sys_prefs` VALUES('round_to', 'setup.company', 'int', 5, '1');
2033 INSERT INTO `0_sys_prefs` VALUES('login_tout', 'setup.company', 'smallint', 6, '600');
2034 INSERT INTO `0_sys_prefs` VALUES('past_due_days', 'glsetup.general', 'int', 11, '30');
2035 INSERT INTO `0_sys_prefs` VALUES('profit_loss_year_act', 'glsetup.general', 'varchar', 15, '9990');
2036 INSERT INTO `0_sys_prefs` VALUES('retained_earnings_act', 'glsetup.general', 'varchar', 15, '3590');
2037 INSERT INTO `0_sys_prefs` VALUES('bank_charge_act', 'glsetup.general', 'varchar', 15, '5690');
2038 INSERT INTO `0_sys_prefs` VALUES('exchange_diff_act', 'glsetup.general', 'varchar', 15, '4450');
2039 INSERT INTO `0_sys_prefs` VALUES('default_credit_limit', 'glsetup.customer', 'int', 11, '1000');
2040 INSERT INTO `0_sys_prefs` VALUES('accumulate_shipping', 'glsetup.customer', 'tinyint', 1, '0');
2041 INSERT INTO `0_sys_prefs` VALUES('legal_text', 'glsetup.customer', 'tinytext', 0, '');
2042 INSERT INTO `0_sys_prefs` VALUES('freight_act', 'glsetup.customer', 'varchar', 15, '4430');
2043 INSERT INTO `0_sys_prefs` VALUES('debtors_act', 'glsetup.sales', 'varchar', 15, '1200');
2044 INSERT INTO `0_sys_prefs` VALUES('default_sales_act', 'glsetup.sales', 'varchar', 15, '4010');
2045 INSERT INTO `0_sys_prefs` VALUES('default_sales_discount_act', 'glsetup.sales', 'varchar', 15, '4510');
2046 INSERT INTO `0_sys_prefs` VALUES('default_prompt_payment_act', 'glsetup.sales', 'varchar', 15, '4500');
2047 INSERT INTO `0_sys_prefs` VALUES('default_delivery_required', 'glsetup.sales', 'smallint', 6, '1');
2048 INSERT INTO `0_sys_prefs` VALUES('default_dim_required', 'glsetup.dims', 'int', 11, '20');
2049 INSERT INTO `0_sys_prefs` VALUES('pyt_discount_act', 'glsetup.purchase', 'varchar', 15, '5060');
2050 INSERT INTO `0_sys_prefs` VALUES('creditors_act', 'glsetup.purchase', 'varchar', 15, '2100');
2051 INSERT INTO `0_sys_prefs` VALUES('po_over_receive', 'glsetup.purchase', 'int', 11, '10');
2052 INSERT INTO `0_sys_prefs` VALUES('po_over_charge', 'glsetup.purchase', 'int', 11, '10');
2053 INSERT INTO `0_sys_prefs` VALUES('allow_negative_stock', 'glsetup.inventory', 'tinyint', 1, '0');
2054 INSERT INTO `0_sys_prefs` VALUES('default_inventory_act', 'glsetup.items', 'varchar', 15, '1510');
2055 INSERT INTO `0_sys_prefs` VALUES('default_cogs_act', 'glsetup.items', 'varchar', 15, '5010');
2056 INSERT INTO `0_sys_prefs` VALUES('default_adj_act', 'glsetup.items', 'varchar', 15, '5040');
2057 INSERT INTO `0_sys_prefs` VALUES('default_inv_sales_act', 'glsetup.items', 'varchar', 15, '4010');
2058 INSERT INTO `0_sys_prefs` VALUES('default_assembly_act', 'glsetup.items', 'varchar', 15, '1530');
2059 INSERT INTO `0_sys_prefs` VALUES('default_workorder_required', 'glsetup.manuf', 'int', 11, '20');
2060 INSERT INTO `0_sys_prefs` VALUES('version_id', 'system', 'varchar', 11, '2.3');
2061 INSERT INTO `0_sys_prefs` VALUES('auto_curr_reval', 'setup.company', 'smallint', 6, '1');
2062
2063 -- --------------------------------------------------------
2064
2065 --
2066 -- Table structure for table `0_sys_types`
2067 --
2068
2069 DROP TABLE IF EXISTS `0_sys_types`;
2070 CREATE TABLE IF NOT EXISTS `0_sys_types` (
2071   `type_id` smallint(6) NOT NULL default '0',
2072   `type_no` int(11) NOT NULL default '1',
2073   `next_reference` varchar(100) NOT NULL default '',
2074   PRIMARY KEY  (`type_id`)
2075 ) TYPE=InnoDB;
2076
2077 --
2078 -- Dumping data for table `0_sys_types`
2079 --
2080
2081 INSERT INTO `0_sys_types` VALUES(0, 19, '3');
2082 INSERT INTO `0_sys_types` VALUES(1, 8, '2');
2083 INSERT INTO `0_sys_types` VALUES(2, 5, '2');
2084 INSERT INTO `0_sys_types` VALUES(4, 3, '1');
2085 INSERT INTO `0_sys_types` VALUES(10, 19, '4');
2086 INSERT INTO `0_sys_types` VALUES(11, 3, '2');
2087 INSERT INTO `0_sys_types` VALUES(12, 6, '1');
2088 INSERT INTO `0_sys_types` VALUES(13, 5, '2');
2089 INSERT INTO `0_sys_types` VALUES(16, 2, '1');
2090 INSERT INTO `0_sys_types` VALUES(17, 2, '1');
2091 INSERT INTO `0_sys_types` VALUES(18, 1, '3');
2092 INSERT INTO `0_sys_types` VALUES(20, 8, '3');
2093 INSERT INTO `0_sys_types` VALUES(21, 1, '1');
2094 INSERT INTO `0_sys_types` VALUES(22, 4, '2');
2095 INSERT INTO `0_sys_types` VALUES(25, 1, '2');
2096 INSERT INTO `0_sys_types` VALUES(26, 1, '8');
2097 INSERT INTO `0_sys_types` VALUES(28, 1, '1');
2098 INSERT INTO `0_sys_types` VALUES(29, 1, '2');
2099 INSERT INTO `0_sys_types` VALUES(30, 5, '6');
2100 INSERT INTO `0_sys_types` VALUES(32, 0, '1');
2101 INSERT INTO `0_sys_types` VALUES(35, 1, '1');
2102 INSERT INTO `0_sys_types` VALUES(40, 1, '3');
2103
2104 -- --------------------------------------------------------
2105
2106 --
2107 -- Table structure for table `0_tags`
2108 --
2109
2110 DROP TABLE IF EXISTS `0_tags`;
2111 CREATE TABLE IF NOT EXISTS `0_tags` (
2112   `id` int(11) NOT NULL auto_increment,
2113   `type` smallint(6) NOT NULL,
2114   `name` varchar(30) NOT NULL,
2115   `description` varchar(60) default NULL,
2116   `inactive` tinyint(1) NOT NULL default '0',
2117   PRIMARY KEY  (`id`),
2118   UNIQUE KEY `type` (`type`,`name`)
2119 ) TYPE=MyISAM AUTO_INCREMENT=1 ;
2120
2121 --
2122 -- Dumping data for table `0_tags`
2123 --
2124
2125
2126 -- --------------------------------------------------------
2127
2128 --
2129 -- Table structure for table `0_tag_associations`
2130 --
2131
2132 DROP TABLE IF EXISTS `0_tag_associations`;
2133 CREATE TABLE IF NOT EXISTS `0_tag_associations` (
2134   `record_id` varchar(15) NOT NULL,
2135   `tag_id` int(11) NOT NULL,
2136   UNIQUE KEY `record_id` (`record_id`,`tag_id`)
2137 ) TYPE=MyISAM;
2138
2139 --
2140 -- Dumping data for table `0_tag_associations`
2141 --
2142
2143
2144 -- --------------------------------------------------------
2145
2146 --
2147 -- Table structure for table `0_tax_groups`
2148 --
2149
2150 DROP TABLE IF EXISTS `0_tax_groups`;
2151 CREATE TABLE IF NOT EXISTS `0_tax_groups` (
2152   `id` int(11) NOT NULL auto_increment,
2153   `name` varchar(60) NOT NULL default '',
2154   `tax_shipping` tinyint(1) NOT NULL default '0',
2155   `inactive` tinyint(1) NOT NULL default '0',
2156   PRIMARY KEY  (`id`),
2157   UNIQUE KEY `name` (`name`)
2158 ) TYPE=InnoDB  AUTO_INCREMENT=3 ;
2159
2160 --
2161 -- Dumping data for table `0_tax_groups`
2162 --
2163
2164 INSERT INTO `0_tax_groups` VALUES(1, 'Tax', 0, 0);
2165 INSERT INTO `0_tax_groups` VALUES(2, 'Tax Exempt', 0, 0);
2166
2167 -- --------------------------------------------------------
2168
2169 --
2170 -- Table structure for table `0_tax_group_items`
2171 --
2172
2173 DROP TABLE IF EXISTS `0_tax_group_items`;
2174 CREATE TABLE IF NOT EXISTS `0_tax_group_items` (
2175   `tax_group_id` int(11) NOT NULL default '0',
2176   `tax_type_id` int(11) NOT NULL default '0',
2177   `rate` double NOT NULL default '0',
2178   PRIMARY KEY  (`tax_group_id`,`tax_type_id`)
2179 ) TYPE=InnoDB;
2180
2181 --
2182 -- Dumping data for table `0_tax_group_items`
2183 --
2184
2185 INSERT INTO `0_tax_group_items` VALUES(1, 1, 5);
2186
2187 -- --------------------------------------------------------
2188
2189 --
2190 -- Table structure for table `0_tax_types`
2191 --
2192
2193 DROP TABLE IF EXISTS `0_tax_types`;
2194 CREATE TABLE IF NOT EXISTS `0_tax_types` (
2195   `id` int(11) NOT NULL auto_increment,
2196   `rate` double NOT NULL default '0',
2197   `sales_gl_code` varchar(15) NOT NULL default '',
2198   `purchasing_gl_code` varchar(15) NOT NULL default '',
2199   `name` varchar(60) NOT NULL default '',
2200   `inactive` tinyint(1) NOT NULL default '0',
2201   PRIMARY KEY  (`id`)
2202 ) TYPE=InnoDB  AUTO_INCREMENT=2 ;
2203
2204 --
2205 -- Dumping data for table `0_tax_types`
2206 --
2207
2208 INSERT INTO `0_tax_types` VALUES(1, 5, '2150', '2150', 'Tax', 0);
2209
2210 -- --------------------------------------------------------
2211
2212 --
2213 -- Table structure for table `0_trans_tax_details`
2214 --
2215
2216 DROP TABLE IF EXISTS `0_trans_tax_details`;
2217 CREATE TABLE IF NOT EXISTS `0_trans_tax_details` (
2218   `id` int(11) NOT NULL auto_increment,
2219   `trans_type` smallint(6) default NULL,
2220   `trans_no` int(11) default NULL,
2221   `tran_date` date NOT NULL,
2222   `tax_type_id` int(11) NOT NULL default '0',
2223   `rate` double NOT NULL default '0',
2224   `ex_rate` double NOT NULL default '1',
2225   `included_in_price` tinyint(1) NOT NULL default '0',
2226   `net_amount` double NOT NULL default '0',
2227   `amount` double NOT NULL default '0',
2228   `memo` tinytext,
2229   PRIMARY KEY  (`id`),
2230   KEY `Type_and_Number` (`trans_type`,`trans_no`),
2231   KEY `tran_date` (`tran_date`)
2232 ) TYPE=InnoDB  AUTO_INCREMENT=12 ;
2233
2234 --
2235 -- Dumping data for table `0_trans_tax_details`
2236 --
2237
2238 INSERT INTO `0_trans_tax_details` VALUES(1, 20, 7, '2009-06-21', 1, 5, 1, 0, 3300, 165, '5t');
2239 INSERT INTO `0_trans_tax_details` VALUES(2, 13, 3, '2009-06-21', 1, 5, 1, 0, 50, 2.5, 'auto');
2240 INSERT INTO `0_trans_tax_details` VALUES(3, 10, 17, '2009-06-21', 1, 5, 1, 0, 50, 2.5, '1');
2241 INSERT INTO `0_trans_tax_details` VALUES(4, 13, 4, '2009-06-21', 1, 5, 1.3932, 0, 35.89, 1.7945, 'auto');
2242 INSERT INTO `0_trans_tax_details` VALUES(5, 10, 18, '2009-06-21', 1, 5, 1.3932, 0, 35.89, 1.7945, '2');
2243 INSERT INTO `0_trans_tax_details` VALUES(6, 2, 5, '2009-06-21', 1, 5, 1, 0, 95.2, 4.76, '');
2244 INSERT INTO `0_trans_tax_details` VALUES(7, 1, 8, '2009-06-21', 1, 5, 1, 0, -47.6, -2.38, '');
2245 INSERT INTO `0_trans_tax_details` VALUES(8, 20, 8, '2009-06-21', 1, 5, 1, 0, -19, -0.95, 'cc');
2246 INSERT INTO `0_trans_tax_details` VALUES(9, 13, 5, '2009-06-21', 1, 5, 1, 1, 47.619047619048, 2.3809523809524, 'auto');
2247 INSERT INTO `0_trans_tax_details` VALUES(10, 10, 19, '2009-06-21', 1, 5, 1, 1, 47.619047619048, 2.3809523809524, '3');
2248 INSERT INTO `0_trans_tax_details` VALUES(11, 11, 3, '2009-06-21', 1, 5, 1.3932, 0, 35.89, 1.7945, '1');
2249
2250 -- --------------------------------------------------------
2251
2252 --
2253 -- Table structure for table `0_useronline`
2254 --
2255
2256 DROP TABLE IF EXISTS `0_useronline`;
2257 CREATE TABLE IF NOT EXISTS `0_useronline` (
2258   `id` int(11) NOT NULL auto_increment,
2259   `timestamp` int(15) NOT NULL default '0',
2260   `ip` varchar(40) NOT NULL default '',
2261   `file` varchar(100) NOT NULL default '',
2262   PRIMARY KEY  (`id`),
2263   KEY `timestamp` (`timestamp`),
2264   KEY `ip` (`ip`)
2265 ) TYPE=MyISAM AUTO_INCREMENT=1 ;
2266
2267 --
2268 -- Dumping data for table `0_useronline`
2269 --
2270
2271
2272 -- --------------------------------------------------------
2273
2274 --
2275 -- Table structure for table `0_users`
2276 --
2277
2278 DROP TABLE IF EXISTS `0_users`;
2279 CREATE TABLE IF NOT EXISTS `0_users` (
2280   `id` smallint(6) NOT NULL auto_increment,
2281   `user_id` varchar(60) NOT NULL default '',
2282   `password` varchar(100) NOT NULL default '',
2283   `real_name` varchar(100) NOT NULL default '',
2284   `role_id` int(11) NOT NULL default '1',
2285   `phone` varchar(30) NOT NULL default '',
2286   `email` varchar(100) default NULL,
2287   `language` varchar(20) default NULL,
2288   `date_format` tinyint(1) NOT NULL default '0',
2289   `date_sep` tinyint(1) NOT NULL default '0',
2290   `tho_sep` tinyint(1) NOT NULL default '0',
2291   `dec_sep` tinyint(1) NOT NULL default '0',
2292   `theme` varchar(20) NOT NULL default 'default',
2293   `page_size` varchar(20) NOT NULL default 'A4',
2294   `prices_dec` smallint(6) NOT NULL default '2',
2295   `qty_dec` smallint(6) NOT NULL default '2',
2296   `rates_dec` smallint(6) NOT NULL default '4',
2297   `percent_dec` smallint(6) NOT NULL default '1',
2298   `show_gl` tinyint(1) NOT NULL default '1',
2299   `show_codes` tinyint(1) NOT NULL default '0',
2300   `show_hints` tinyint(1) NOT NULL default '0',
2301   `last_visit_date` datetime default NULL,
2302   `query_size` tinyint(1) default '10',
2303   `graphic_links` tinyint(1) default '1',
2304   `pos` smallint(6) default '1',
2305   `print_profile` varchar(30) NOT NULL default '1',
2306   `rep_popup` tinyint(1) default '1',
2307   `sticky_doc_date` tinyint(1) default '0',
2308   `startup_tab` varchar(20) NOT NULL default '',
2309   `inactive` tinyint(1) NOT NULL default '0',
2310   PRIMARY KEY  (`id`),
2311   UNIQUE KEY `user_id` (`user_id`)
2312 ) TYPE=MyISAM  AUTO_INCREMENT=3 ;
2313
2314 --
2315 -- Dumping data for table `0_users`
2316 --
2317
2318 INSERT INTO `0_users` VALUES(1, 'admin', '5f4dcc3b5aa765d61d8327deb882cf99', 'Administrator', 2, '', 'adm@adm.com', 'en_US', 0, 0, 0, 0, 'default', 'Letter', 2, 2, 4, 1, 1, 0, 0, '2010-05-11 23:27:46', 10, 1, 1, '1', 1, 0, 'orders', 0);
2319 INSERT INTO `0_users` VALUES(2, 'demouser', '5f4dcc3b5aa765d61d8327deb882cf99', 'Demo User', 9, '999-999-999', 'demo@demo.nu', 'en_US', 0, 0, 0, 0, 'default', 'Letter', 2, 2, 3, 1, 1, 0, 0, '2008-02-06 19:02:35', 10, 1, 1, '1', 1, 0, 'orders', 0);
2320
2321 -- --------------------------------------------------------
2322
2323 --
2324 -- Table structure for table `0_voided`
2325 --
2326
2327 DROP TABLE IF EXISTS `0_voided`;
2328 CREATE TABLE IF NOT EXISTS `0_voided` (
2329   `type` int(11) NOT NULL default '0',
2330   `id` int(11) NOT NULL default '0',
2331   `date_` date NOT NULL default '0000-00-00',
2332   `memo_` tinytext NOT NULL,
2333   UNIQUE KEY `id` (`type`,`id`)
2334 ) TYPE=InnoDB;
2335
2336 --
2337 -- Dumping data for table `0_voided`
2338 --
2339
2340
2341 -- --------------------------------------------------------
2342
2343 --
2344 -- Table structure for table `0_workcentres`
2345 --
2346
2347 DROP TABLE IF EXISTS `0_workcentres`;
2348 CREATE TABLE IF NOT EXISTS `0_workcentres` (
2349   `id` int(11) NOT NULL auto_increment,
2350   `name` char(40) NOT NULL default '',
2351   `description` char(50) NOT NULL default '',
2352   `inactive` tinyint(1) NOT NULL default '0',
2353   PRIMARY KEY  (`id`),
2354   UNIQUE KEY `name` (`name`)
2355 ) TYPE=MyISAM  AUTO_INCREMENT=2 ;
2356
2357 --
2358 -- Dumping data for table `0_workcentres`
2359 --
2360
2361 INSERT INTO `0_workcentres` VALUES(1, 'Workshop', 'Workshop in Alabama', 0);
2362
2363 -- --------------------------------------------------------
2364
2365 --
2366 -- Table structure for table `0_workorders`
2367 --
2368
2369 DROP TABLE IF EXISTS `0_workorders`;
2370 CREATE TABLE IF NOT EXISTS `0_workorders` (
2371   `id` int(11) NOT NULL auto_increment,
2372   `wo_ref` varchar(60) NOT NULL default '',
2373   `loc_code` varchar(5) NOT NULL default '',
2374   `units_reqd` double NOT NULL default '1',
2375   `stock_id` varchar(20) NOT NULL default '',
2376   `date_` date NOT NULL default '0000-00-00',
2377   `type` tinyint(4) NOT NULL default '0',
2378   `required_by` date NOT NULL default '0000-00-00',
2379   `released_date` date NOT NULL default '0000-00-00',
2380   `units_issued` double NOT NULL default '0',
2381   `closed` tinyint(1) NOT NULL default '0',
2382   `released` tinyint(1) NOT NULL default '0',
2383   `additional_costs` double NOT NULL default '0',
2384   PRIMARY KEY  (`id`),
2385   UNIQUE KEY `wo_ref` (`wo_ref`)
2386 ) TYPE=InnoDB  AUTO_INCREMENT=8 ;
2387
2388 --
2389 -- Dumping data for table `0_workorders`
2390 --
2391
2392 INSERT INTO `0_workorders` VALUES(1, '1', 'DEF', 10, '3400', '2009-06-21', 0, '2009-06-21', '2009-06-21', 10, 1, 1, 10);
2393 INSERT INTO `0_workorders` VALUES(2, '2', 'DEF', 3, '3400', '2009-06-21', 2, '2009-07-11', '2009-06-21', 2, 0, 1, 0);
2394 INSERT INTO `0_workorders` VALUES(3, '3', 'DEF', 2, '3400', '2009-06-21', 0, '2009-06-21', '2009-06-21', 2, 1, 1, 0);
2395 INSERT INTO `0_workorders` VALUES(4, '4', 'DEF', 4, '3400', '2009-06-21', 0, '2009-06-21', '2009-06-21', 4, 1, 1, 0);
2396 INSERT INTO `0_workorders` VALUES(5, '5', 'DEF', 5, '3400', '2009-06-21', 0, '2009-06-21', '2009-06-21', 5, 1, 1, 10);
2397 INSERT INTO `0_workorders` VALUES(6, '6', 'DEF', -5, '3400', '2009-06-21', 1, '2009-06-21', '2009-06-21', -5, 1, 1, 0);
2398 INSERT INTO `0_workorders` VALUES(7, '7', 'DEF', -2, '3400', '2009-06-21', 1, '2009-06-21', '2009-06-21', -2, 1, 1, 10);
2399
2400 -- --------------------------------------------------------
2401
2402 --
2403 -- Table structure for table `0_wo_issues`
2404 --
2405
2406 DROP TABLE IF EXISTS `0_wo_issues`;
2407 CREATE TABLE IF NOT EXISTS `0_wo_issues` (
2408   `issue_no` int(11) NOT NULL auto_increment,
2409   `workorder_id` int(11) NOT NULL default '0',
2410   `reference` varchar(100) default NULL,
2411   `issue_date` date default NULL,
2412   `loc_code` varchar(5) default NULL,
2413   `workcentre_id` int(11) default NULL,
2414   PRIMARY KEY  (`issue_no`),
2415   KEY `workorder_id` (`workorder_id`)
2416 ) TYPE=InnoDB AUTO_INCREMENT=1 ;
2417
2418 --
2419 -- Dumping data for table `0_wo_issues`
2420 --
2421
2422
2423 -- --------------------------------------------------------
2424
2425 --
2426 -- Table structure for table `0_wo_issue_items`
2427 --
2428
2429 DROP TABLE IF EXISTS `0_wo_issue_items`;
2430 CREATE TABLE IF NOT EXISTS `0_wo_issue_items` (
2431   `id` int(11) NOT NULL auto_increment,
2432   `stock_id` varchar(40) default NULL,
2433   `issue_id` int(11) default NULL,
2434   `qty_issued` double default NULL,
2435   PRIMARY KEY  (`id`)
2436 ) TYPE=InnoDB AUTO_INCREMENT=1 ;
2437
2438 --
2439 -- Dumping data for table `0_wo_issue_items`
2440 --
2441
2442
2443 -- --------------------------------------------------------
2444
2445 --
2446 -- Table structure for table `0_wo_manufacture`
2447 --
2448
2449 DROP TABLE IF EXISTS `0_wo_manufacture`;
2450 CREATE TABLE IF NOT EXISTS `0_wo_manufacture` (
2451   `id` int(11) NOT NULL auto_increment,
2452   `reference` varchar(100) default NULL,
2453   `workorder_id` int(11) NOT NULL default '0',
2454   `quantity` double NOT NULL default '0',
2455   `date_` date NOT NULL default '0000-00-00',
2456   PRIMARY KEY  (`id`),
2457   KEY `workorder_id` (`workorder_id`)
2458 ) TYPE=InnoDB  AUTO_INCREMENT=2 ;
2459
2460 --
2461 -- Dumping data for table `0_wo_manufacture`
2462 --
2463
2464 INSERT INTO `0_wo_manufacture` VALUES(1, '1', 2, 2, '2009-06-21');
2465
2466 -- --------------------------------------------------------
2467
2468 --
2469 -- Table structure for table `0_wo_requirements`
2470 --
2471
2472 DROP TABLE IF EXISTS `0_wo_requirements`;
2473 CREATE TABLE IF NOT EXISTS `0_wo_requirements` (
2474   `id` int(11) NOT NULL auto_increment,
2475   `workorder_id` int(11) NOT NULL default '0',
2476   `stock_id` char(20) NOT NULL default '',
2477   `workcentre` int(11) NOT NULL default '0',
2478   `units_req` double NOT NULL default '1',
2479   `std_cost` double NOT NULL default '0',
2480   `loc_code` char(5) NOT NULL default '',
2481   `units_issued` double NOT NULL default '0',
2482   PRIMARY KEY  (`id`),
2483   KEY `workorder_id` (`workorder_id`)
2484 ) TYPE=InnoDB  AUTO_INCREMENT=22 ;
2485
2486 --
2487 -- Dumping data for table `0_wo_requirements`
2488 --
2489
2490 INSERT INTO `0_wo_requirements` VALUES(1, 1, '102', 1, 1, 0, 'DEF', 10);
2491 INSERT INTO `0_wo_requirements` VALUES(2, 1, '103', 1, 1, 0, 'DEF', 10);
2492 INSERT INTO `0_wo_requirements` VALUES(3, 1, '104', 1, 1, 0, 'DEF', 10);
2493 INSERT INTO `0_wo_requirements` VALUES(4, 2, '102', 1, 1, 0, 'DEF', 0);
2494 INSERT INTO `0_wo_requirements` VALUES(5, 2, '103', 1, 1, 0, 'DEF', 0);
2495 INSERT INTO `0_wo_requirements` VALUES(6, 2, '104', 1, 1, 0, 'DEF', 0);
2496 INSERT INTO `0_wo_requirements` VALUES(7, 3, '102', 1, 1, 0, 'DEF', 2);
2497 INSERT INTO `0_wo_requirements` VALUES(8, 3, '103', 1, 1, 0, 'DEF', 2);
2498 INSERT INTO `0_wo_requirements` VALUES(9, 3, '104', 1, 1, 0, 'DEF', 2);
2499 INSERT INTO `0_wo_requirements` VALUES(10, 4, '102', 1, 1, 0, 'DEF', 4);
2500 INSERT INTO `0_wo_requirements` VALUES(11, 4, '103', 1, 1, 0, 'DEF', 4);
2501 INSERT INTO `0_wo_requirements` VALUES(12, 4, '104', 1, 1, 0, 'DEF', 4);
2502 INSERT INTO `0_wo_requirements` VALUES(13, 5, '102', 1, 1, 0, 'DEF', 5);
2503 INSERT INTO `0_wo_requirements` VALUES(14, 5, '103', 1, 1, 0, 'DEF', 5);
2504 INSERT INTO `0_wo_requirements` VALUES(15, 5, '104', 1, 1, 0, 'DEF', 5);
2505 INSERT INTO `0_wo_requirements` VALUES(16, 6, '102', 1, 1, 0, 'DEF', -5);
2506 INSERT INTO `0_wo_requirements` VALUES(17, 6, '103', 1, 1, 0, 'DEF', -5);
2507 INSERT INTO `0_wo_requirements` VALUES(18, 6, '104', 1, 1, 0, 'DEF', -5);
2508 INSERT INTO `0_wo_requirements` VALUES(19, 7, '102', 1, 1, 0, 'DEF', -2);
2509 INSERT INTO `0_wo_requirements` VALUES(20, 7, '103', 1, 1, 0, 'DEF', -2);
2510 INSERT INTO `0_wo_requirements` VALUES(21, 7, '104', 1, 1, 0, 'DEF', -2);