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