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