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