X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sql%2Fen_US-new.sql;h=9cd561faccb6548ccba8a68ab125c7c2ef4342e8;hb=8e3f71a8644277f3a88694998b462d868a55978d;hp=5cb23408547878343b5fc0e5c567a1c3160490f0;hpb=50b610c0c50f70913d65f07b5959ce52f5a999ad;p=fa-stable.git diff --git a/sql/en_US-new.sql b/sql/en_US-new.sql index 5cb23408..9cd561fa 100644 --- a/sql/en_US-new.sql +++ b/sql/en_US-new.sql @@ -1,20 +1,21 @@ -- phpMyAdmin SQL Dump --- version 2.7.0-pl2 +-- version 2.11.4 -- http://www.phpmyadmin.net --- +-- -- Host: localhost --- Created: 09 februar 2007 at 11:03 --- Server Version: 4.1.11 --- PHP-version: 4.4.1 --- --- Database: `en_US-new` --- +-- Generation Time: Apr 04, 2008 at 12:35 PM +-- Server version: 5.0.45 +-- PHP Version: 5.2.4 + +-- +-- Database: `en_US-new.sql, release 2.0` +-- -- -------------------------------------------------------- --- --- Structure for table `areas` --- +-- +-- Table structure for table `0_areas` +-- DROP TABLE IF EXISTS `0_areas`; CREATE TABLE IF NOT EXISTS `0_areas` ( @@ -22,13 +23,13 @@ CREATE TABLE IF NOT EXISTS `0_areas` ( `description` varchar(60) NOT NULL default '', PRIMARY KEY (`area_code`), UNIQUE KEY `description` (`description`) -) TYPE=MyISAM; +) TYPE=MyISAM AUTO_INCREMENT=2 ; -- -------------------------------------------------------- --- --- Structure for table `bank_accounts` --- +-- +-- Table structure for table `0_bank_accounts` +-- DROP TABLE IF EXISTS `0_bank_accounts`; CREATE TABLE IF NOT EXISTS `0_bank_accounts` ( @@ -46,9 +47,9 @@ CREATE TABLE IF NOT EXISTS `0_bank_accounts` ( -- -------------------------------------------------------- --- --- Structure for table `bank_trans` --- +-- +-- Table structure for table `0_bank_trans` +-- DROP TABLE IF EXISTS `0_bank_trans`; CREATE TABLE IF NOT EXISTS `0_bank_trans` ( @@ -67,13 +68,13 @@ CREATE TABLE IF NOT EXISTS `0_bank_trans` ( PRIMARY KEY (`id`), KEY `bank_act` (`bank_act`,`ref`), KEY `type` (`type`,`trans_no`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `bank_trans_types` --- +-- +-- Table structure for table `0_bank_trans_types` +-- DROP TABLE IF EXISTS `0_bank_trans_types`; CREATE TABLE IF NOT EXISTS `0_bank_trans_types` ( @@ -81,20 +82,20 @@ CREATE TABLE IF NOT EXISTS `0_bank_trans_types` ( `name` varchar(60) NOT NULL default '', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) -) TYPE=MyISAM; +) TYPE=MyISAM AUTO_INCREMENT=3 ; -- -------------------------------------------------------- --- --- Structure for table `bom` --- +-- +-- Table structure for table `0_bom` +-- DROP TABLE IF EXISTS `0_bom`; CREATE TABLE IF NOT EXISTS `0_bom` ( `id` int(11) NOT NULL auto_increment, `parent` char(20) NOT NULL default '', `component` char(20) NOT NULL default '', - `workcentre_added` char(5) NOT NULL default '', + `workcentre_added` int(11) NOT NULL default '0', `loc_code` char(5) NOT NULL default '', `quantity` double NOT NULL default '1', PRIMARY KEY (`parent`,`component`,`workcentre_added`,`loc_code`), @@ -104,13 +105,13 @@ CREATE TABLE IF NOT EXISTS `0_bom` ( KEY `parent` (`parent`,`loc_code`), KEY `Parent_2` (`parent`), KEY `workcentre_added` (`workcentre_added`) -) TYPE=MyISAM; +) TYPE=MyISAM AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `budget_trans` --- +-- +-- Table structure for table `0_budget_trans` +-- DROP TABLE IF EXISTS `0_budget_trans`; CREATE TABLE IF NOT EXISTS `0_budget_trans` ( @@ -127,13 +128,13 @@ CREATE TABLE IF NOT EXISTS `0_budget_trans` ( `person_id` tinyblob, PRIMARY KEY (`counter`), KEY `Type_and_Number` (`type`,`type_no`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `chart_class` --- +-- +-- Table structure for table `0_chart_class` +-- DROP TABLE IF EXISTS `0_chart_class`; CREATE TABLE IF NOT EXISTS `0_chart_class` ( @@ -145,9 +146,9 @@ CREATE TABLE IF NOT EXISTS `0_chart_class` ( -- -------------------------------------------------------- --- --- Structure for table `chart_master` --- +-- +-- Table structure for table `0_chart_master` +-- DROP TABLE IF EXISTS `0_chart_master`; CREATE TABLE IF NOT EXISTS `0_chart_master` ( @@ -163,9 +164,9 @@ CREATE TABLE IF NOT EXISTS `0_chart_master` ( -- -------------------------------------------------------- --- --- Structure for table `chart_types` --- +-- +-- Table structure for table `0_chart_types` +-- DROP TABLE IF EXISTS `0_chart_types`; CREATE TABLE IF NOT EXISTS `0_chart_types` ( @@ -175,13 +176,13 @@ CREATE TABLE IF NOT EXISTS `0_chart_types` ( `parent` int(11) NOT NULL default '-1', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) -) TYPE=MyISAM; +) TYPE=MyISAM AUTO_INCREMENT=53 ; -- -------------------------------------------------------- --- --- Structure for table `comments` --- +-- +-- Table structure for table `0_comments` +-- DROP TABLE IF EXISTS `0_comments`; CREATE TABLE IF NOT EXISTS `0_comments` ( @@ -193,9 +194,9 @@ CREATE TABLE IF NOT EXISTS `0_comments` ( -- -------------------------------------------------------- --- --- Structure for table `company` --- +-- +-- Table structure for table `0_company` +-- DROP TABLE IF EXISTS `0_company`; CREATE TABLE IF NOT EXISTS `0_company` ( @@ -244,14 +245,18 @@ CREATE TABLE IF NOT EXISTS `0_company` ( `past_due_days` int(11) NOT NULL default '30', `use_dimension` tinyint(1) default '0', `f_year` int(11) NOT NULL default '1', + `no_item_list` tinyint(1) NOT NULL default '0', + `no_customer_list` tinyint(1) NOT NULL default '0', + `no_supplier_list` tinyint(1) NOT NULL default '0', + `base_sales` int(11) NOT NULL default '-1', PRIMARY KEY (`coy_code`) ) TYPE=MyISAM; -- -------------------------------------------------------- --- --- Structure for table `credit_status` --- +-- +-- Table structure for table `0_credit_status` +-- DROP TABLE IF EXISTS `0_credit_status`; CREATE TABLE IF NOT EXISTS `0_credit_status` ( @@ -260,13 +265,13 @@ CREATE TABLE IF NOT EXISTS `0_credit_status` ( `dissallow_invoices` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id`), UNIQUE KEY `reason_description` (`reason_description`) -) TYPE=MyISAM; +) TYPE=MyISAM AUTO_INCREMENT=5 ; -- -------------------------------------------------------- --- --- Structure for table `currencies` --- +-- +-- Table structure for table `0_currencies` +-- DROP TABLE IF EXISTS `0_currencies`; CREATE TABLE IF NOT EXISTS `0_currencies` ( @@ -280,9 +285,9 @@ CREATE TABLE IF NOT EXISTS `0_currencies` ( -- -------------------------------------------------------- --- --- Structure for table `cust_allocations` --- +-- +-- Table structure for table `0_cust_allocations` +-- DROP TABLE IF EXISTS `0_cust_allocations`; CREATE TABLE IF NOT EXISTS `0_cust_allocations` ( @@ -294,13 +299,13 @@ CREATE TABLE IF NOT EXISTS `0_cust_allocations` ( `trans_no_to` int(11) default NULL, `trans_type_to` int(11) default NULL, PRIMARY KEY (`id`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `cust_branch` --- +-- +-- Table structure for table `0_cust_branch` +-- DROP TABLE IF EXISTS `0_cust_branch`; CREATE TABLE IF NOT EXISTS `0_cust_branch` ( @@ -326,18 +331,45 @@ CREATE TABLE IF NOT EXISTS `0_cust_branch` ( PRIMARY KEY (`branch_code`,`debtor_no`), KEY `branch_code` (`branch_code`), KEY `br_name` (`br_name`) -) TYPE=MyISAM; +) TYPE=MyISAM AUTO_INCREMENT=1 ; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `0_debtors_master` +-- + +DROP TABLE IF EXISTS `0_debtors_master`; +CREATE TABLE IF NOT EXISTS `0_debtors_master` ( + `debtor_no` int(11) NOT NULL auto_increment, + `name` varchar(60) NOT NULL default '', + `address` tinytext, + `email` varchar(100) NOT NULL default '', + `tax_id` varchar(55) NOT NULL default '', + `curr_code` char(3) NOT NULL default '', + `sales_type` int(11) NOT NULL default '1', + `dimension_id` int(11) NOT NULL default '0', + `dimension2_id` int(11) NOT NULL default '0', + `credit_status` int(11) NOT NULL default '0', + `payment_terms` int(11) default NULL, + `discount` double NOT NULL default '0', + `pymt_discount` double NOT NULL default '0', + `credit_limit` float NOT NULL default '1000', + PRIMARY KEY (`debtor_no`), + UNIQUE KEY `name` (`name`) +) TYPE=MyISAM AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `debtor_trans` --- +-- +-- Table structure for table `0_debtor_trans` +-- DROP TABLE IF EXISTS `0_debtor_trans`; CREATE TABLE IF NOT EXISTS `0_debtor_trans` ( `trans_no` int(11) unsigned NOT NULL default '0', `type` smallint(6) unsigned NOT NULL default '0', + `version` tinyint(1) unsigned NOT NULL default '0', `debtor_no` int(11) unsigned default NULL, `branch_code` int(11) NOT NULL default '-1', `tran_date` date NOT NULL default '0000-00-00', @@ -348,19 +380,21 @@ CREATE TABLE IF NOT EXISTS `0_debtor_trans` ( `ov_amount` double NOT NULL default '0', `ov_gst` double NOT NULL default '0', `ov_freight` double NOT NULL default '0', + `ov_freight_tax` double NOT NULL default '0', `ov_discount` double NOT NULL default '0', `alloc` double NOT NULL default '0', `rate` double NOT NULL default '1', `ship_via` int(11) default NULL, + `trans_link` int(11) NOT NULL default '0', PRIMARY KEY (`trans_no`,`type`), KEY `debtor_no` (`debtor_no`,`branch_code`) ) TYPE=InnoDB; -- -------------------------------------------------------- --- --- Structure for table `debtor_trans_details` --- +-- +-- Table structure for table `0_debtor_trans_details` +-- DROP TABLE IF EXISTS `0_debtor_trans_details`; CREATE TABLE IF NOT EXISTS `0_debtor_trans_details` ( @@ -374,14 +408,15 @@ CREATE TABLE IF NOT EXISTS `0_debtor_trans_details` ( `quantity` double NOT NULL default '0', `discount_percent` double NOT NULL default '0', `standard_cost` double NOT NULL default '0', + `qty_done` double NOT NULL default '0', PRIMARY KEY (`id`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `debtor_trans_tax_details` --- +-- +-- Table structure for table `0_debtor_trans_tax_details` +-- DROP TABLE IF EXISTS `0_debtor_trans_tax_details`; CREATE TABLE IF NOT EXISTS `0_debtor_trans_tax_details` ( @@ -394,39 +429,13 @@ CREATE TABLE IF NOT EXISTS `0_debtor_trans_tax_details` ( `included_in_price` tinyint(1) NOT NULL default '0', `amount` double NOT NULL default '0', PRIMARY KEY (`id`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `debtors_master` --- - -DROP TABLE IF EXISTS `0_debtors_master`; -CREATE TABLE IF NOT EXISTS `0_debtors_master` ( - `debtor_no` int(11) NOT NULL auto_increment, - `name` varchar(60) NOT NULL default '', - `address` tinytext, - `email` varchar(100) NOT NULL default '', - `tax_id` varchar(55) NOT NULL default '', - `curr_code` char(3) NOT NULL default '', - `sales_type` int(11) NOT NULL default '1', - `dimension_id` int(11) NOT NULL default '0', - `dimension2_id` int(11) NOT NULL default '0', - `credit_status` int(11) NOT NULL default '0', - `payment_terms` int(11) default NULL, - `discount` double NOT NULL default '0', - `pymt_discount` double NOT NULL default '0', - `credit_limit` float NOT NULL default '1000', - PRIMARY KEY (`debtor_no`), - UNIQUE KEY `name` (`name`) -) TYPE=MyISAM; - --- -------------------------------------------------------- - --- --- Structure for table `dimensions` --- +-- +-- Table structure for table `0_dimensions` +-- DROP TABLE IF EXISTS `0_dimensions`; CREATE TABLE IF NOT EXISTS `0_dimensions` ( @@ -439,13 +448,13 @@ CREATE TABLE IF NOT EXISTS `0_dimensions` ( `due_date` date NOT NULL default '0000-00-00', PRIMARY KEY (`id`), UNIQUE KEY `reference` (`reference`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `exchange_rates` --- +-- +-- Table structure for table `0_exchange_rates` +-- DROP TABLE IF EXISTS `0_exchange_rates`; CREATE TABLE IF NOT EXISTS `0_exchange_rates` ( @@ -456,13 +465,13 @@ CREATE TABLE IF NOT EXISTS `0_exchange_rates` ( `date_` date NOT NULL default '0000-00-00', PRIMARY KEY (`id`), UNIQUE KEY `curr_code` (`curr_code`,`date_`) -) TYPE=MyISAM; +) TYPE=MyISAM AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `fiscal_year` --- +-- +-- Table structure for table `0_fiscal_year` +-- DROP TABLE IF EXISTS `0_fiscal_year`; CREATE TABLE IF NOT EXISTS `0_fiscal_year` ( @@ -471,30 +480,13 @@ CREATE TABLE IF NOT EXISTS `0_fiscal_year` ( `end` date default '0000-00-00', `closed` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=2 ; -- -------------------------------------------------------- --- --- Structure for table `form_items` --- - -DROP TABLE IF EXISTS `0_form_items`; -CREATE TABLE IF NOT EXISTS `0_form_items` ( - `form_id` int(11) NOT NULL default '0', - `form_type` int(11) NOT NULL default '0', - `trans_type` int(11) NOT NULL default '0', - `trans_id` int(11) NOT NULL default '0', - `param1` varchar(100) NOT NULL default '', - `param2` varchar(100) default NULL, - PRIMARY KEY (`form_id`,`form_type`) -) TYPE=InnoDB; - --- -------------------------------------------------------- - --- --- Structure for table `gl_trans` --- +-- +-- Table structure for table `0_gl_trans` +-- DROP TABLE IF EXISTS `0_gl_trans`; CREATE TABLE IF NOT EXISTS `0_gl_trans` ( @@ -511,13 +503,13 @@ CREATE TABLE IF NOT EXISTS `0_gl_trans` ( `person_id` tinyblob, PRIMARY KEY (`counter`), KEY `Type_and_Number` (`type`,`type_no`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `grn_batch` --- +-- +-- Table structure for table `0_grn_batch` +-- DROP TABLE IF EXISTS `0_grn_batch`; CREATE TABLE IF NOT EXISTS `0_grn_batch` ( @@ -528,13 +520,13 @@ CREATE TABLE IF NOT EXISTS `0_grn_batch` ( `delivery_date` date NOT NULL default '0000-00-00', `loc_code` varchar(5) default NULL, PRIMARY KEY (`id`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `grn_items` --- +-- +-- Table structure for table `0_grn_items` +-- DROP TABLE IF EXISTS `0_grn_items`; CREATE TABLE IF NOT EXISTS `0_grn_items` ( @@ -546,26 +538,13 @@ CREATE TABLE IF NOT EXISTS `0_grn_items` ( `qty_recd` double NOT NULL default '0', `quantity_inv` double NOT NULL default '0', PRIMARY KEY (`id`) -) TYPE=InnoDB; - --- -------------------------------------------------------- - --- --- Structure for table `item_tax_type_exemptions` --- - -DROP TABLE IF EXISTS `0_item_tax_type_exemptions`; -CREATE TABLE IF NOT EXISTS `0_item_tax_type_exemptions` ( - `item_tax_type_id` int(11) NOT NULL default '0', - `tax_type_id` int(11) NOT NULL default '0', - PRIMARY KEY (`item_tax_type_id`,`tax_type_id`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `item_tax_types` --- +-- +-- Table structure for table `0_item_tax_types` +-- DROP TABLE IF EXISTS `0_item_tax_types`; CREATE TABLE IF NOT EXISTS `0_item_tax_types` ( @@ -574,28 +553,41 @@ CREATE TABLE IF NOT EXISTS `0_item_tax_types` ( `exempt` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `loc_stock` --- +-- +-- Table structure for table `0_item_tax_type_exemptions` +-- -DROP TABLE IF EXISTS `0_loc_stock`; -CREATE TABLE IF NOT EXISTS `0_loc_stock` ( - `loc_code` char(5) NOT NULL default '', - `stock_id` char(20) NOT NULL default '', - `reorder_level` bigint(20) NOT NULL default '0', - PRIMARY KEY (`loc_code`,`stock_id`), - KEY `stock_id` (`stock_id`) +DROP TABLE IF EXISTS `0_item_tax_type_exemptions`; +CREATE TABLE IF NOT EXISTS `0_item_tax_type_exemptions` ( + `item_tax_type_id` int(11) NOT NULL default '0', + `tax_type_id` int(11) NOT NULL default '0', + PRIMARY KEY (`item_tax_type_id`,`tax_type_id`) ) TYPE=InnoDB; -- -------------------------------------------------------- --- --- Structure for table `locations` --- +-- +-- Table structure for table `0_item_units` +-- + +DROP TABLE IF EXISTS `0_item_units`; +CREATE TABLE IF NOT EXISTS `0_item_units` ( + `abbr` varchar(20) NOT NULL, + `name` varchar(40) NOT NULL, + `decimals` tinyint(2) NOT NULL, + PRIMARY KEY (`abbr`), + UNIQUE KEY `name` (`name`) +) TYPE=MyISAM; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `0_locations` +-- DROP TABLE IF EXISTS `0_locations`; CREATE TABLE IF NOT EXISTS `0_locations` ( @@ -611,9 +603,24 @@ CREATE TABLE IF NOT EXISTS `0_locations` ( -- -------------------------------------------------------- --- --- Structure for table `movement_types` --- +-- +-- Table structure for table `0_loc_stock` +-- + +DROP TABLE IF EXISTS `0_loc_stock`; +CREATE TABLE IF NOT EXISTS `0_loc_stock` ( + `loc_code` char(5) NOT NULL default '', + `stock_id` char(20) NOT NULL default '', + `reorder_level` bigint(20) NOT NULL default '0', + PRIMARY KEY (`loc_code`,`stock_id`), + KEY `stock_id` (`stock_id`) +) TYPE=InnoDB; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `0_movement_types` +-- DROP TABLE IF EXISTS `0_movement_types`; CREATE TABLE IF NOT EXISTS `0_movement_types` ( @@ -621,13 +628,13 @@ CREATE TABLE IF NOT EXISTS `0_movement_types` ( `name` varchar(60) NOT NULL default '', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) -) TYPE=MyISAM; +) TYPE=MyISAM AUTO_INCREMENT=2 ; -- -------------------------------------------------------- --- --- Structure for table `payment_terms` --- +-- +-- Table structure for table `0_payment_terms` +-- DROP TABLE IF EXISTS `0_payment_terms`; CREATE TABLE IF NOT EXISTS `0_payment_terms` ( @@ -637,13 +644,13 @@ CREATE TABLE IF NOT EXISTS `0_payment_terms` ( `day_in_following_month` smallint(6) NOT NULL default '0', PRIMARY KEY (`terms_indicator`), UNIQUE KEY `terms` (`terms`) -) TYPE=MyISAM; +) TYPE=MyISAM AUTO_INCREMENT=5 ; -- -------------------------------------------------------- --- --- Structure for table `prices` --- +-- +-- Table structure for table `0_prices` +-- DROP TABLE IF EXISTS `0_prices`; CREATE TABLE IF NOT EXISTS `0_prices` ( @@ -654,13 +661,13 @@ CREATE TABLE IF NOT EXISTS `0_prices` ( `price` double NOT NULL default '0', PRIMARY KEY (`id`), UNIQUE KEY `price` (`stock_id`,`sales_type_id`,`curr_abrev`) -) TYPE=MyISAM; +) TYPE=MyISAM AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `purch_data` --- +-- +-- Table structure for table `0_purch_data` +-- DROP TABLE IF EXISTS `0_purch_data`; CREATE TABLE IF NOT EXISTS `0_purch_data` ( @@ -675,9 +682,28 @@ CREATE TABLE IF NOT EXISTS `0_purch_data` ( -- -------------------------------------------------------- --- --- Structure for table `purch_order_details` --- +-- +-- Table structure for table `0_purch_orders` +-- + +DROP TABLE IF EXISTS `0_purch_orders`; +CREATE TABLE IF NOT EXISTS `0_purch_orders` ( + `order_no` int(11) NOT NULL auto_increment, + `supplier_id` int(11) NOT NULL default '0', + `comments` tinytext, + `ord_date` date NOT NULL default '0000-00-00', + `reference` tinytext NOT NULL, + `requisition_no` tinytext, + `into_stock_location` varchar(5) NOT NULL default '', + `delivery_address` tinytext NOT NULL, + PRIMARY KEY (`order_no`) +) TYPE=InnoDB AUTO_INCREMENT=1 ; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `0_purch_order_details` +-- DROP TABLE IF EXISTS `0_purch_order_details`; CREATE TABLE IF NOT EXISTS `0_purch_order_details` ( @@ -693,32 +719,13 @@ CREATE TABLE IF NOT EXISTS `0_purch_order_details` ( `quantity_ordered` double NOT NULL default '0', `quantity_received` double NOT NULL default '0', PRIMARY KEY (`po_detail_item`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `purch_orders` --- - -DROP TABLE IF EXISTS `0_purch_orders`; -CREATE TABLE IF NOT EXISTS `0_purch_orders` ( - `order_no` int(11) NOT NULL auto_increment, - `supplier_id` int(11) NOT NULL default '0', - `comments` tinytext, - `ord_date` date NOT NULL default '0000-00-00', - `reference` tinytext NOT NULL, - `requisition_no` tinytext, - `into_stock_location` varchar(5) NOT NULL default '', - `delivery_address` tinytext NOT NULL, - PRIMARY KEY (`order_no`) -) TYPE=InnoDB; - --- -------------------------------------------------------- - --- --- Structure for table `refs` --- +-- +-- Table structure for table `0_refs` +-- DROP TABLE IF EXISTS `0_refs`; CREATE TABLE IF NOT EXISTS `0_refs` ( @@ -730,31 +737,35 @@ CREATE TABLE IF NOT EXISTS `0_refs` ( -- -------------------------------------------------------- --- --- Structure for table `sales_order_details` --- +-- +-- Table structure for table `0_salesman` +-- -DROP TABLE IF EXISTS `0_sales_order_details`; -CREATE TABLE IF NOT EXISTS `0_sales_order_details` ( - `order_no` int(11) NOT NULL default '0', - `stk_code` varchar(20) NOT NULL default '', - `description` tinytext, - `qty_invoiced` double NOT NULL default '0', - `unit_price` double NOT NULL default '0', - `quantity` double NOT NULL default '0', - `discount_percent` double NOT NULL default '0', - PRIMARY KEY (`order_no`,`stk_code`) -) TYPE=InnoDB; +DROP TABLE IF EXISTS `0_salesman`; +CREATE TABLE IF NOT EXISTS `0_salesman` ( + `salesman_code` int(11) NOT NULL auto_increment, + `salesman_name` char(60) NOT NULL default '', + `salesman_phone` char(30) NOT NULL default '', + `salesman_fax` char(30) NOT NULL default '', + `salesman_email` varchar(100) NOT NULL default '', + `provision` double NOT NULL default '0', + `break_pt` double NOT NULL default '0', + `provision2` double NOT NULL default '0', + PRIMARY KEY (`salesman_code`), + UNIQUE KEY `salesman_name` (`salesman_name`) +) TYPE=MyISAM AUTO_INCREMENT=2 ; -- -------------------------------------------------------- --- --- Structure for table `sales_orders` --- +-- +-- Table structure for table `0_sales_orders` +-- DROP TABLE IF EXISTS `0_sales_orders`; CREATE TABLE IF NOT EXISTS `0_sales_orders` ( `order_no` int(11) NOT NULL auto_increment, + `version` tinyint(1) unsigned NOT NULL default '0', + `type` tinyint(1) NOT NULL default '0', `debtor_no` int(11) NOT NULL default '0', `branch_code` int(11) NOT NULL default '0', `customer_ref` tinytext NOT NULL, @@ -770,44 +781,48 @@ CREATE TABLE IF NOT EXISTS `0_sales_orders` ( `from_stk_loc` varchar(5) NOT NULL default '', `delivery_date` date NOT NULL default '0000-00-00', PRIMARY KEY (`order_no`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=1 ; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `0_sales_order_details` +-- + +DROP TABLE IF EXISTS `0_sales_order_details`; +CREATE TABLE IF NOT EXISTS `0_sales_order_details` ( + `id` int(11) NOT NULL auto_increment, + `order_no` int(11) NOT NULL default '0', + `stk_code` varchar(20) NOT NULL default '', + `description` tinytext, + `qty_sent` double NOT NULL default '0', + `unit_price` double NOT NULL default '0', + `quantity` double NOT NULL default '0', + `discount_percent` double NOT NULL default '0', + PRIMARY KEY (`id`) +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `sales_types` --- +-- +-- Table structure for table `0_sales_types` +-- DROP TABLE IF EXISTS `0_sales_types`; CREATE TABLE IF NOT EXISTS `0_sales_types` ( `id` int(11) NOT NULL auto_increment, `sales_type` char(50) NOT NULL default '', + `tax_included` int(1) NOT NULL default '0', + `factor` double NOT NULL default '1', PRIMARY KEY (`id`), UNIQUE KEY `sales_type` (`sales_type`) -) TYPE=MyISAM; - --- -------------------------------------------------------- - --- --- Structure for table `salesman` --- - -DROP TABLE IF EXISTS `0_salesman`; -CREATE TABLE IF NOT EXISTS `0_salesman` ( - `salesman_code` int(11) NOT NULL auto_increment, - `salesman_name` char(60) NOT NULL default '', - `salesman_phone` char(30) NOT NULL default '', - `salesman_fax` char(30) NOT NULL default '', - `salesman_email` varchar(100) NOT NULL default '', - PRIMARY KEY (`salesman_code`), - UNIQUE KEY `salesman_name` (`salesman_name`) -) TYPE=MyISAM; +) TYPE=MyISAM AUTO_INCREMENT=3 ; -- -------------------------------------------------------- --- --- Structure for table `shippers` --- +-- +-- Table structure for table `0_shippers` +-- DROP TABLE IF EXISTS `0_shippers`; CREATE TABLE IF NOT EXISTS `0_shippers` ( @@ -818,13 +833,13 @@ CREATE TABLE IF NOT EXISTS `0_shippers` ( `address` tinytext NOT NULL, PRIMARY KEY (`shipper_id`), UNIQUE KEY `name` (`shipper_name`) -) TYPE=MyISAM; +) TYPE=MyISAM AUTO_INCREMENT=2 ; -- -------------------------------------------------------- --- --- Structure for table `stock_category` --- +-- +-- Table structure for table `0_stock_category` +-- DROP TABLE IF EXISTS `0_stock_category`; CREATE TABLE IF NOT EXISTS `0_stock_category` ( @@ -836,13 +851,13 @@ CREATE TABLE IF NOT EXISTS `0_stock_category` ( `purch_price_var_act` varchar(11) default NULL, PRIMARY KEY (`category_id`), UNIQUE KEY `description` (`description`) -) TYPE=MyISAM; +) TYPE=MyISAM AUTO_INCREMENT=5 ; -- -------------------------------------------------------- --- --- Structure for table `stock_master` --- +-- +-- Table structure for table `0_stock_master` +-- DROP TABLE IF EXISTS `0_stock_master`; CREATE TABLE IF NOT EXISTS `0_stock_master` ( @@ -870,9 +885,9 @@ CREATE TABLE IF NOT EXISTS `0_stock_master` ( -- -------------------------------------------------------- --- --- Structure for table `stock_moves` --- +-- +-- Table structure for table `0_stock_moves` +-- DROP TABLE IF EXISTS `0_stock_moves`; CREATE TABLE IF NOT EXISTS `0_stock_moves` ( @@ -891,13 +906,37 @@ CREATE TABLE IF NOT EXISTS `0_stock_moves` ( `visible` tinyint(1) NOT NULL default '1', PRIMARY KEY (`trans_id`), KEY `type` (`type`,`trans_no`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=1 ; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `0_suppliers` +-- + +DROP TABLE IF EXISTS `0_suppliers`; +CREATE TABLE IF NOT EXISTS `0_suppliers` ( + `supplier_id` int(11) NOT NULL auto_increment, + `supp_name` varchar(60) NOT NULL default '', + `address` tinytext NOT NULL, + `email` varchar(100) NOT NULL default '', + `bank_account` varchar(60) NOT NULL default '', + `curr_code` char(3) default NULL, + `payment_terms` int(11) default NULL, + `dimension_id` int(11) default '0', + `dimension2_id` int(11) default '0', + `tax_group_id` int(11) default NULL, + `purchase_account` varchar(11) default NULL, + `payable_account` varchar(11) default NULL, + `payment_discount_account` varchar(11) default NULL, + PRIMARY KEY (`supplier_id`) +) TYPE=MyISAM AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `supp_allocations` --- +-- +-- Table structure for table `0_supp_allocations` +-- DROP TABLE IF EXISTS `0_supp_allocations`; CREATE TABLE IF NOT EXISTS `0_supp_allocations` ( @@ -909,20 +948,20 @@ CREATE TABLE IF NOT EXISTS `0_supp_allocations` ( `trans_no_to` int(11) default NULL, `trans_type_to` int(11) default NULL, PRIMARY KEY (`id`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `supp_invoice_items` --- +-- +-- Table structure for table `0_supp_invoice_items` +-- DROP TABLE IF EXISTS `0_supp_invoice_items`; CREATE TABLE IF NOT EXISTS `0_supp_invoice_items` ( `id` int(11) NOT NULL auto_increment, `supp_trans_no` int(11) default NULL, `supp_trans_type` int(11) default NULL, - `gl_code` int(11) NOT NULL default '0', + `gl_code` varchar(11) NOT NULL default '0', `grn_item_id` int(11) default NULL, `po_detail_item_id` int(11) default NULL, `stock_id` varchar(20) NOT NULL default '', @@ -932,13 +971,13 @@ CREATE TABLE IF NOT EXISTS `0_supp_invoice_items` ( `unit_tax` double NOT NULL default '0', `memo_` tinytext, PRIMARY KEY (`id`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `supp_invoice_tax_items` --- +-- +-- Table structure for table `0_supp_invoice_tax_items` +-- DROP TABLE IF EXISTS `0_supp_invoice_tax_items`; CREATE TABLE IF NOT EXISTS `0_supp_invoice_tax_items` ( @@ -951,13 +990,13 @@ CREATE TABLE IF NOT EXISTS `0_supp_invoice_tax_items` ( `included_in_price` tinyint(1) NOT NULL default '0', `amount` double NOT NULL default '0', PRIMARY KEY (`id`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `supp_trans` --- +-- +-- Table structure for table `0_supp_trans` +-- DROP TABLE IF EXISTS `0_supp_trans`; CREATE TABLE IF NOT EXISTS `0_supp_trans` ( @@ -981,33 +1020,9 @@ CREATE TABLE IF NOT EXISTS `0_supp_trans` ( -- -------------------------------------------------------- --- --- Structure for table `suppliers` --- - -DROP TABLE IF EXISTS `0_suppliers`; -CREATE TABLE IF NOT EXISTS `0_suppliers` ( - `supplier_id` int(11) NOT NULL auto_increment, - `supp_name` varchar(60) NOT NULL default '', - `address` tinytext NOT NULL, - `email` varchar(100) NOT NULL default '', - `bank_account` varchar(60) NOT NULL default '', - `curr_code` char(3) default NULL, - `payment_terms` int(11) default NULL, - `dimension_id` int(11) default '0', - `dimension2_id` int(11) default '0', - `tax_group_id` int(11) default NULL, - `purchase_account` varchar(11) default NULL, - `payable_account` varchar(11) default NULL, - `payment_discount_account` varchar(11) default NULL, - PRIMARY KEY (`supplier_id`) -) TYPE=MyISAM; - --- -------------------------------------------------------- - --- --- Structure for table `sys_types` --- +-- +-- Table structure for table `0_sys_types` +-- DROP TABLE IF EXISTS `0_sys_types`; CREATE TABLE IF NOT EXISTS `0_sys_types` ( @@ -1020,24 +1035,9 @@ CREATE TABLE IF NOT EXISTS `0_sys_types` ( -- -------------------------------------------------------- --- --- Structure for table `tax_group_items` --- - -DROP TABLE IF EXISTS `0_tax_group_items`; -CREATE TABLE IF NOT EXISTS `0_tax_group_items` ( - `tax_group_id` int(11) NOT NULL default '0', - `tax_type_id` int(11) NOT NULL default '0', - `rate` double NOT NULL default '0', - `included_in_price` tinyint(1) NOT NULL default '0', - PRIMARY KEY (`tax_group_id`,`tax_type_id`) -) TYPE=InnoDB; - --- -------------------------------------------------------- - --- --- Structure for table `tax_groups` --- +-- +-- Table structure for table `0_tax_groups` +-- DROP TABLE IF EXISTS `0_tax_groups`; CREATE TABLE IF NOT EXISTS `0_tax_groups` ( @@ -1046,13 +1046,27 @@ CREATE TABLE IF NOT EXISTS `0_tax_groups` ( `tax_shipping` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) +) TYPE=InnoDB AUTO_INCREMENT=1 ; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `0_tax_group_items` +-- + +DROP TABLE IF EXISTS `0_tax_group_items`; +CREATE TABLE IF NOT EXISTS `0_tax_group_items` ( + `tax_group_id` int(11) NOT NULL default '0', + `tax_type_id` int(11) NOT NULL default '0', + `rate` double NOT NULL default '0', + PRIMARY KEY (`tax_group_id`,`tax_type_id`) ) TYPE=InnoDB; -- -------------------------------------------------------- --- --- Structure for table `tax_types` --- +-- +-- Table structure for table `0_tax_types` +-- DROP TABLE IF EXISTS `0_tax_types`; CREATE TABLE IF NOT EXISTS `0_tax_types` ( @@ -1061,16 +1075,15 @@ CREATE TABLE IF NOT EXISTS `0_tax_types` ( `sales_gl_code` varchar(11) NOT NULL default '', `purchasing_gl_code` varchar(11) NOT NULL default '', `name` varchar(60) NOT NULL default '', - `out` tinyint(1) NOT NULL default '1', PRIMARY KEY (`id`), - UNIQUE KEY `name` (`name`) -) TYPE=InnoDB; + UNIQUE KEY `name` (`name`,`rate`) +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `users` --- +-- +-- Table structure for table `0_users` +-- DROP TABLE IF EXISTS `0_users`; CREATE TABLE IF NOT EXISTS `0_users` ( @@ -1093,15 +1106,16 @@ CREATE TABLE IF NOT EXISTS `0_users` ( `percent_dec` smallint(6) NOT NULL default '1', `show_gl` tinyint(1) NOT NULL default '1', `show_codes` tinyint(1) NOT NULL default '0', + `show_hints` tinyint(1) NOT NULL default '0', `last_visit_date` datetime default NULL, PRIMARY KEY (`user_id`) ) TYPE=MyISAM; -- -------------------------------------------------------- --- --- Structure for table `voided` --- +-- +-- Table structure for table `0_voided` +-- DROP TABLE IF EXISTS `0_voided`; CREATE TABLE IF NOT EXISTS `0_voided` ( @@ -1114,24 +1128,49 @@ CREATE TABLE IF NOT EXISTS `0_voided` ( -- -------------------------------------------------------- --- --- Structure for table `wo_issue_items` --- +-- +-- Table structure for table `0_workcentres` +-- -DROP TABLE IF EXISTS `0_wo_issue_items`; -CREATE TABLE IF NOT EXISTS `0_wo_issue_items` ( +DROP TABLE IF EXISTS `0_workcentres`; +CREATE TABLE IF NOT EXISTS `0_workcentres` ( `id` int(11) NOT NULL auto_increment, - `stock_id` varchar(40) default NULL, - `issue_id` int(11) default NULL, - `qty_issued` double default NULL, - PRIMARY KEY (`id`) -) TYPE=InnoDB; + `name` char(40) NOT NULL default '', + `description` char(50) NOT NULL default '', + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) TYPE=MyISAM AUTO_INCREMENT=1 ; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `0_workorders` +-- + +DROP TABLE IF EXISTS `0_workorders`; +CREATE TABLE IF NOT EXISTS `0_workorders` ( + `id` int(11) NOT NULL auto_increment, + `wo_ref` varchar(60) NOT NULL default '', + `loc_code` varchar(5) NOT NULL default '', + `units_reqd` double NOT NULL default '1', + `stock_id` varchar(20) NOT NULL default '', + `date_` date NOT NULL default '0000-00-00', + `type` tinyint(4) NOT NULL default '0', + `required_by` date NOT NULL default '0000-00-00', + `released_date` date NOT NULL default '0000-00-00', + `units_issued` double NOT NULL default '0', + `closed` tinyint(1) NOT NULL default '0', + `released` tinyint(1) NOT NULL default '0', + `additional_costs` double NOT NULL default '0', + PRIMARY KEY (`id`), + UNIQUE KEY `wo_ref` (`wo_ref`) +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `wo_issues` --- +-- +-- Table structure for table `0_wo_issues` +-- DROP TABLE IF EXISTS `0_wo_issues`; CREATE TABLE IF NOT EXISTS `0_wo_issues` ( @@ -1142,13 +1181,28 @@ CREATE TABLE IF NOT EXISTS `0_wo_issues` ( `loc_code` varchar(5) default NULL, `workcentre_id` int(11) default NULL, PRIMARY KEY (`issue_no`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `wo_manufacture` --- +-- +-- Table structure for table `0_wo_issue_items` +-- + +DROP TABLE IF EXISTS `0_wo_issue_items`; +CREATE TABLE IF NOT EXISTS `0_wo_issue_items` ( + `id` int(11) NOT NULL auto_increment, + `stock_id` varchar(40) default NULL, + `issue_id` int(11) default NULL, + `qty_issued` double default NULL, + PRIMARY KEY (`id`) +) TYPE=InnoDB AUTO_INCREMENT=1 ; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `0_wo_manufacture` +-- DROP TABLE IF EXISTS `0_wo_manufacture`; CREATE TABLE IF NOT EXISTS `0_wo_manufacture` ( @@ -1158,269 +1212,234 @@ CREATE TABLE IF NOT EXISTS `0_wo_manufacture` ( `quantity` double NOT NULL default '0', `date_` date NOT NULL default '0000-00-00', PRIMARY KEY (`id`) -) TYPE=InnoDB; +) TYPE=InnoDB AUTO_INCREMENT=1 ; -- -------------------------------------------------------- --- --- Structure for table `wo_requirements` --- +-- +-- Table structure for table `0_wo_requirements` +-- DROP TABLE IF EXISTS `0_wo_requirements`; CREATE TABLE IF NOT EXISTS `0_wo_requirements` ( `id` int(11) NOT NULL auto_increment, `workorder_id` int(11) NOT NULL default '0', `stock_id` char(20) NOT NULL default '', - `workcentre` char(5) NOT NULL default '', + `workcentre` int(11) NOT NULL default '0', `units_req` double NOT NULL default '1', `std_cost` double NOT NULL default '0', `loc_code` char(5) NOT NULL default '', `units_issued` double NOT NULL default '0', PRIMARY KEY (`id`) -) TYPE=InnoDB; - --- -------------------------------------------------------- - --- --- Structure for table `workcentres` --- - -DROP TABLE IF EXISTS `0_workcentres`; -CREATE TABLE IF NOT EXISTS `0_workcentres` ( - `id` int(11) NOT NULL auto_increment, - `name` char(40) NOT NULL default '', - `description` char(50) NOT NULL default '', - PRIMARY KEY (`id`), - UNIQUE KEY `name` (`name`) -) TYPE=MyISAM; - --- -------------------------------------------------------- - --- --- Structure for table `workorders` --- - -DROP TABLE IF EXISTS `0_workorders`; -CREATE TABLE IF NOT EXISTS `0_workorders` ( - `id` int(11) NOT NULL auto_increment, - `wo_ref` varchar(60) NOT NULL default '', - `loc_code` varchar(5) NOT NULL default '', - `units_reqd` double NOT NULL default '1', - `stock_id` varchar(20) NOT NULL default '', - `date_` date NOT NULL default '0000-00-00', - `type` tinyint(4) NOT NULL default '0', - `required_by` date NOT NULL default '0000-00-00', - `released_date` date NOT NULL default '0000-00-00', - `units_issued` double NOT NULL default '0', - `closed` tinyint(1) NOT NULL default '0', - `released` tinyint(1) NOT NULL default '0', - `additional_costs` double NOT NULL default '0', - PRIMARY KEY (`id`), - UNIQUE KEY `wo_ref` (`wo_ref`) -) TYPE=InnoDB; - --- -------------------------------------------------------- - --- --- Data in table `areas` --- - -INSERT INTO `0_areas` VALUES (1, 'USA'); - --- --- Data in table `bank_accounts` --- - -INSERT INTO `0_bank_accounts` VALUES ('1700', 0, 'Current account', 'N/A', 'N/A', NULL, 'USD'); -INSERT INTO `0_bank_accounts` VALUES ('1705', 0, 'Petty Cash account', 'N/A', 'N/A', NULL, 'USD'); - --- --- Data in table `bank_trans_types` --- - -INSERT INTO `0_bank_trans_types` VALUES (1, 'Cash'); -INSERT INTO `0_bank_trans_types` VALUES (2, 'Transfer'); - --- --- Data in table `chart_class` --- - -INSERT INTO `0_chart_class` VALUES (1, 'Assets', 1); -INSERT INTO `0_chart_class` VALUES (2, 'Liabilities', 1); -INSERT INTO `0_chart_class` VALUES (3, 'Income', 0); -INSERT INTO `0_chart_class` VALUES (4, 'Costs', 0); - --- --- Data in table `chart_master` --- - -INSERT INTO `0_chart_master` VALUES ('3000', NULL, 'Sales', 1, 1); -INSERT INTO `0_chart_master` VALUES ('3010', NULL, 'Sales - Wholesale', 1, 1); -INSERT INTO `0_chart_master` VALUES ('3020', NULL, 'Sales of Other items', 1, 1); -INSERT INTO `0_chart_master` VALUES ('3400', NULL, 'Difference On Exchange', 1, 0); -INSERT INTO `0_chart_master` VALUES ('5000', NULL, 'Direct Labour', 2, 0); -INSERT INTO `0_chart_master` VALUES ('5050', NULL, 'Direct Labour Recovery', 2, 0); -INSERT INTO `0_chart_master` VALUES ('4200', NULL, 'Material Usage Varaiance', 2, 4); -INSERT INTO `0_chart_master` VALUES ('4210', NULL, 'Consumable Materials', 2, 4); -INSERT INTO `0_chart_master` VALUES ('4220', NULL, 'Purchase price Variance', 2, 0); -INSERT INTO `0_chart_master` VALUES ('4000', NULL, 'Purchases of materials', 2, 4); -INSERT INTO `0_chart_master` VALUES ('4250', NULL, 'Discounts Received', 2, 0); -INSERT INTO `0_chart_master` VALUES ('4260', NULL, 'Exchange Variation', 2, 0); -INSERT INTO `0_chart_master` VALUES ('4300', NULL, 'Freight Inwards', 2, 4); -INSERT INTO `0_chart_master` VALUES ('4010', NULL, 'Cost of Goods Sold - Retail', 2, 4); -INSERT INTO `0_chart_master` VALUES ('6790', NULL, 'Bank Charges', 5, 4); -INSERT INTO `0_chart_master` VALUES ('6800', NULL, 'Entertainments', 5, 4); -INSERT INTO `0_chart_master` VALUES ('6810', NULL, 'Legal Expenses', 5, 4); -INSERT INTO `0_chart_master` VALUES ('6600', NULL, 'Repairs and Maintenance Office', 5, 4); -INSERT INTO `0_chart_master` VALUES ('6730', NULL, 'phone', 5, 4); -INSERT INTO `0_chart_master` VALUES ('8200', NULL, 'Bank Interest', 52, 0); -INSERT INTO `0_chart_master` VALUES ('6840', NULL, 'Credit Control', 5, 0); -INSERT INTO `0_chart_master` VALUES ('7040', NULL, 'Depreciation Office Equipment', 51, 0); -INSERT INTO `0_chart_master` VALUES ('3800', NULL, 'Freight Outwards', 5, 4); -INSERT INTO `0_chart_master` VALUES ('4500', NULL, 'Packaging', 5, 4); -INSERT INTO `0_chart_master` VALUES ('6400', NULL, 'Commissions', 5, 0); -INSERT INTO `0_chart_master` VALUES ('3200', NULL, 'Prompt Payment Discounts', 1, 0); -INSERT INTO `0_chart_master` VALUES ('6700', NULL, 'General Expenses', 5, 4); -INSERT INTO `0_chart_master` VALUES ('5200', NULL, 'Indirect Labour', 2, 0); -INSERT INTO `0_chart_master` VALUES ('5210', NULL, 'Overhead Recovery', 5, 0); -INSERT INTO `0_chart_master` VALUES ('1700', NULL, 'Bank account', 10, 0); -INSERT INTO `0_chart_master` VALUES ('1705', NULL, 'Petty Cash', 10, 0); -INSERT INTO `0_chart_master` VALUES ('1710', NULL, 'Foreign currency account', 10, 0); -INSERT INTO `0_chart_master` VALUES ('1500', NULL, 'Accounts Receivable', 20, 0); -INSERT INTO `0_chart_master` VALUES ('1400', NULL, 'Stocks of Raw Materials', 45, 0); -INSERT INTO `0_chart_master` VALUES ('1410', NULL, 'Stocks of Work In Progress', 45, 0); -INSERT INTO `0_chart_master` VALUES ('1420', NULL, 'Stocks of Finsihed Goods', 45, 0); -INSERT INTO `0_chart_master` VALUES ('1430', NULL, 'Goods Received Clearing account', 30, 0); -INSERT INTO `0_chart_master` VALUES ('2630', NULL, 'Accounts Payable', 30, 0); -INSERT INTO `0_chart_master` VALUES ('2660', NULL, 'VAT out 5', 30, 0); -INSERT INTO `0_chart_master` VALUES ('2662', NULL, 'VAT out 1', 30, 0); -INSERT INTO `0_chart_master` VALUES ('2664', NULL, 'VAT out 25', 30, 0); -INSERT INTO `0_chart_master` VALUES ('2680', NULL, 'VAT In 5', 30, 0); -INSERT INTO `0_chart_master` VALUES ('2682', NULL, 'VAT In 25', 30, 0); -INSERT INTO `0_chart_master` VALUES ('2050', NULL, 'Retained Earnings', 50, 0); -INSERT INTO `0_chart_master` VALUES ('2000', NULL, 'Share Capital', 50, 0); - --- --- Data in table `chart_types` --- - -INSERT INTO `0_chart_types` VALUES (1, 'Sales', 3, -1); -INSERT INTO `0_chart_types` VALUES (2, 'Cost of Sales', 4, -1); -INSERT INTO `0_chart_types` VALUES (5, 'Expenses', 4, -1); -INSERT INTO `0_chart_types` VALUES (10, 'Cash/Bank', 1, -1); -INSERT INTO `0_chart_types` VALUES (20, 'Accounts Receivable', 1, -1); -INSERT INTO `0_chart_types` VALUES (30, 'Accounts Payable', 2, -1); -INSERT INTO `0_chart_types` VALUES (40, 'Fixed Assets', 1, -1); -INSERT INTO `0_chart_types` VALUES (45, 'Inventory', 1, -1); -INSERT INTO `0_chart_types` VALUES (50, 'Equity', 2, -1); -INSERT INTO `0_chart_types` VALUES (51, 'Depreciations', 4, -1); -INSERT INTO `0_chart_types` VALUES (52, 'Financials', 4, -1); - --- --- Data in table `company` --- - -INSERT INTO `0_company` VALUES (1, 'Company name', '', '', 1, 1, 'N/A', '', '', '', '', '', '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, 1); - --- --- Data in table `credit_status` --- - -INSERT INTO `0_credit_status` VALUES (1, 'Good History', 0); -INSERT INTO `0_credit_status` VALUES (3, 'No more work until payment received', 1); -INSERT INTO `0_credit_status` VALUES (4, 'In liquidation', 1); - --- --- Data in table `currencies` --- - -INSERT INTO `0_currencies` VALUES ('Euro', 'EUR', '?', 'Europe', 'Cents'); -INSERT INTO `0_currencies` VALUES ('Pounds', 'GBP', '?', 'England', 'Pence'); -INSERT INTO `0_currencies` VALUES ('US Dollars', 'USD', '$', 'United States', 'Cents'); - --- --- Data in table `fiscal_year` --- - -INSERT INTO `0_fiscal_year` VALUES (1, '2007-01-01', '2007-12-31', 0); - --- --- Data in table `locations` --- - -INSERT INTO `0_locations` VALUES ('DEF', 'Default', 'N/A', '', '', '', ''); - --- --- Data in table `movement_types` --- - -INSERT INTO `0_movement_types` VALUES (1, 'Adjustment'); - --- --- Data in table `payment_terms` --- - -INSERT INTO `0_payment_terms` VALUES (1, 'Due 15th Of the Following Month', 0, 17); -INSERT INTO `0_payment_terms` VALUES (2, 'Due By End Of The Following Month', 0, 30); -INSERT INTO `0_payment_terms` VALUES (3, 'Payment due within 10 days', 10, 0); -INSERT INTO `0_payment_terms` VALUES (4, 'Cash Only', 1, 0); - --- --- Data in table `sales_types` --- - -INSERT INTO `0_sales_types` VALUES (1, 'Retail'); -INSERT INTO `0_sales_types` VALUES (2, 'Wholesale'); - --- --- Data in table `salesman` --- - -INSERT INTO `0_salesman` VALUES (1, 'Sales Person', '', '', ''); - --- --- Data in table `shippers` --- - -INSERT INTO `0_shippers` VALUES (1, 'Default', '', '', ''); - --- --- Data in table `stock_category` --- - -INSERT INTO `0_stock_category` VALUES (1, 'Components', NULL, NULL, NULL, NULL); -INSERT INTO `0_stock_category` VALUES (2, 'Charges', NULL, NULL, NULL, NULL); -INSERT INTO `0_stock_category` VALUES (3, 'Systems', NULL, NULL, NULL, NULL); -INSERT INTO `0_stock_category` VALUES (4, 'Services', NULL, NULL, NULL, NULL); - --- --- Data in table `sys_types` --- - -INSERT INTO `0_sys_types` VALUES (0, 'Journal - GL', 17, '1'); -INSERT INTO `0_sys_types` VALUES (1, 'Payment - GL', 7, '1'); -INSERT INTO `0_sys_types` VALUES (2, 'Receipt - GL', 4, '1'); -INSERT INTO `0_sys_types` VALUES (4, 'Funds Transfer', 3, '1'); -INSERT INTO `0_sys_types` VALUES (10, 'Sales Invoice', 16, '1'); -INSERT INTO `0_sys_types` VALUES (11, 'Credit Note', 2, '1'); -INSERT INTO `0_sys_types` VALUES (12, 'Receipt', 6, '1'); -INSERT INTO `0_sys_types` VALUES (16, 'Location Transfer', 2, '1'); -INSERT INTO `0_sys_types` VALUES (17, 'Inventory Adjustment', 2, '1'); -INSERT INTO `0_sys_types` VALUES (18, 'Purchase Order', 1, '1'); -INSERT INTO `0_sys_types` VALUES (20, 'Supplier Invoice', 6, '1'); -INSERT INTO `0_sys_types` VALUES (21, 'Supplier Credit Note', 1, '1'); -INSERT INTO `0_sys_types` VALUES (22, 'Supplier Payment', 3, '1'); -INSERT INTO `0_sys_types` VALUES (25, 'Purchase Order Delivery', 1, '1'); -INSERT INTO `0_sys_types` VALUES (26, 'Work Order', 1, '1'); -INSERT INTO `0_sys_types` VALUES (28, 'Work Order Issue', 1, '1'); -INSERT INTO `0_sys_types` VALUES (29, 'Work Order Production', 1, '1'); -INSERT INTO `0_sys_types` VALUES (30, 'Sales Order', 1, '1'); -INSERT INTO `0_sys_types` VALUES (35, 'Cost Update', 1, '1'); -INSERT INTO `0_sys_types` VALUES (40, 'Dimension', 1, '1'); - --- --- Data in table `users` --- - -INSERT INTO `0_users` VALUES ('admin', '5f4dcc3b5aa765d61d8327deb882cf99', 'Administrator', 2, '', 'info@frontaccounting.com', 'en_US', 0, 0, 0, 0, 'default', 'Letter', 2, 2, 4, 1, 1, 0, '2007-03-20 10:52:46'); +) TYPE=InnoDB AUTO_INCREMENT=1 ; + +-- +-- Dumping data for table `0_areas` +-- + +INSERT INTO `0_areas` VALUES(1, 'USA'); + +-- +-- Dumping data for table `0_bank_accounts` +-- + +INSERT INTO `0_bank_accounts` VALUES('1700', 0, 'Current account', 'N/A', 'N/A', NULL, 'USD'); +INSERT INTO `0_bank_accounts` VALUES('1705', 0, 'Petty Cash account', 'N/A', 'N/A', NULL, 'USD'); + +-- +-- Dumping data for table `0_bank_trans_types` +-- + +INSERT INTO `0_bank_trans_types` VALUES(1, 'Cash'); +INSERT INTO `0_bank_trans_types` VALUES(2, 'Transfer'); + +-- +-- Dumping data for table `0_chart_class` +-- + +INSERT INTO `0_chart_class` VALUES(1, 'Assets', 1); +INSERT INTO `0_chart_class` VALUES(2, 'Liabilities', 1); +INSERT INTO `0_chart_class` VALUES(3, 'Income', 0); +INSERT INTO `0_chart_class` VALUES(4, 'Costs', 0); + +-- +-- Dumping data for table `0_chart_master` +-- + +INSERT INTO `0_chart_master` VALUES('3000', NULL, 'Sales', 1, 1); +INSERT INTO `0_chart_master` VALUES('3010', NULL, 'Sales - Wholesale', 1, 1); +INSERT INTO `0_chart_master` VALUES('3020', NULL, 'Sales of Other items', 1, 1); +INSERT INTO `0_chart_master` VALUES('3400', NULL, 'Difference On Exchange', 1, 0); +INSERT INTO `0_chart_master` VALUES('5000', NULL, 'Direct Labour', 2, 0); +INSERT INTO `0_chart_master` VALUES('5050', NULL, 'Direct Labour Recovery', 2, 0); +INSERT INTO `0_chart_master` VALUES('4200', NULL, 'Material Usage Varaiance', 2, 4); +INSERT INTO `0_chart_master` VALUES('4210', NULL, 'Consumable Materials', 2, 4); +INSERT INTO `0_chart_master` VALUES('4220', NULL, 'Purchase price Variance', 2, 0); +INSERT INTO `0_chart_master` VALUES('4000', NULL, 'Purchases of materials', 2, 4); +INSERT INTO `0_chart_master` VALUES('4250', NULL, 'Discounts Received', 2, 0); +INSERT INTO `0_chart_master` VALUES('4260', NULL, 'Exchange Variation', 2, 0); +INSERT INTO `0_chart_master` VALUES('4300', NULL, 'Freight Inwards', 2, 4); +INSERT INTO `0_chart_master` VALUES('4010', NULL, 'Cost of Goods Sold - Retail', 2, 4); +INSERT INTO `0_chart_master` VALUES('6790', NULL, 'Bank Charges', 5, 4); +INSERT INTO `0_chart_master` VALUES('6800', NULL, 'Entertainments', 5, 4); +INSERT INTO `0_chart_master` VALUES('6810', NULL, 'Legal Expenses', 5, 4); +INSERT INTO `0_chart_master` VALUES('6600', NULL, 'Repairs and Maintenance Office', 5, 4); +INSERT INTO `0_chart_master` VALUES('6730', NULL, 'phone', 5, 4); +INSERT INTO `0_chart_master` VALUES('8200', NULL, 'Bank Interest', 52, 0); +INSERT INTO `0_chart_master` VALUES('6840', NULL, 'Credit Control', 5, 0); +INSERT INTO `0_chart_master` VALUES('7040', NULL, 'Depreciation Office Equipment', 51, 0); +INSERT INTO `0_chart_master` VALUES('3800', NULL, 'Freight Outwards', 5, 4); +INSERT INTO `0_chart_master` VALUES('4500', NULL, 'Packaging', 5, 4); +INSERT INTO `0_chart_master` VALUES('6400', NULL, 'Commissions', 5, 0); +INSERT INTO `0_chart_master` VALUES('3200', NULL, 'Prompt Payment Discounts', 1, 0); +INSERT INTO `0_chart_master` VALUES('6700', NULL, 'General Expenses', 5, 4); +INSERT INTO `0_chart_master` VALUES('5200', NULL, 'Indirect Labour', 2, 0); +INSERT INTO `0_chart_master` VALUES('5210', NULL, 'Overhead Recovery', 5, 0); +INSERT INTO `0_chart_master` VALUES('1700', NULL, 'Bank account', 10, 0); +INSERT INTO `0_chart_master` VALUES('1705', NULL, 'Petty Cash', 10, 0); +INSERT INTO `0_chart_master` VALUES('1710', NULL, 'Foreign currency account', 10, 0); +INSERT INTO `0_chart_master` VALUES('1500', NULL, 'Accounts Receivable', 20, 0); +INSERT INTO `0_chart_master` VALUES('1400', NULL, 'Stocks of Raw Materials', 45, 0); +INSERT INTO `0_chart_master` VALUES('1410', NULL, 'Stocks of Work In Progress', 45, 0); +INSERT INTO `0_chart_master` VALUES('1420', NULL, 'Stocks of Finsihed Goods', 45, 0); +INSERT INTO `0_chart_master` VALUES('1430', NULL, 'Goods Received Clearing account', 30, 0); +INSERT INTO `0_chart_master` VALUES('2630', NULL, 'Accounts Payable', 30, 0); +INSERT INTO `0_chart_master` VALUES('2660', NULL, 'VAT out 5', 30, 0); +INSERT INTO `0_chart_master` VALUES('2662', NULL, 'VAT out 1', 30, 0); +INSERT INTO `0_chart_master` VALUES('2664', NULL, 'VAT out 25', 30, 0); +INSERT INTO `0_chart_master` VALUES('2680', NULL, 'VAT In 5', 30, 0); +INSERT INTO `0_chart_master` VALUES('2682', NULL, 'VAT In 25', 30, 0); +INSERT INTO `0_chart_master` VALUES('2050', NULL, 'Retained Earnings', 50, 0); +INSERT INTO `0_chart_master` VALUES('2000', NULL, 'Share Capital', 50, 0); + +-- +-- Dumping data for table `0_chart_types` +-- + +INSERT INTO `0_chart_types` VALUES(1, 'Sales', 3, -1); +INSERT INTO `0_chart_types` VALUES(2, 'Cost of Sales', 4, -1); +INSERT INTO `0_chart_types` VALUES(5, 'Expenses', 4, -1); +INSERT INTO `0_chart_types` VALUES(10, 'Cash/Bank', 1, -1); +INSERT INTO `0_chart_types` VALUES(20, 'Accounts Receivable', 1, -1); +INSERT INTO `0_chart_types` VALUES(30, 'Accounts Payable', 2, -1); +INSERT INTO `0_chart_types` VALUES(40, 'Fixed Assets', 1, -1); +INSERT INTO `0_chart_types` VALUES(45, 'Inventory', 1, -1); +INSERT INTO `0_chart_types` VALUES(50, 'Equity', 2, -1); +INSERT INTO `0_chart_types` VALUES(51, 'Depreciations', 4, -1); +INSERT INTO `0_chart_types` VALUES(52, 'Financials', 4, -1); + +-- +-- Dumping data for table `0_company` +-- + +INSERT INTO `0_company` VALUES(1, 'Company name', '', '', 1, 1, 'N/A', '', '', '', '', '', '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, 1, 0, 0, 0, -1); + +-- +-- Dumping data for table `0_credit_status` +-- + +INSERT INTO `0_credit_status` VALUES(1, 'Good History', 0); +INSERT INTO `0_credit_status` VALUES(3, 'No more work until payment received', 1); +INSERT INTO `0_credit_status` VALUES(4, 'In liquidation', 1); + +-- +-- Dumping data for table `0_currencies` +-- + +INSERT INTO `0_currencies` VALUES('Euro', 'EUR', '?', 'Europe', 'Cents'); +INSERT INTO `0_currencies` VALUES('Pounds', 'GBP', '?', 'England', 'Pence'); +INSERT INTO `0_currencies` VALUES('US Dollars', 'USD', '$', 'United States', 'Cents'); + +-- +-- Dumping data for table `0_fiscal_year` +-- + +INSERT INTO `0_fiscal_year` VALUES(1, '2008-01-01', '2008-12-31', 0); + +-- +-- Dumping data for table `0_item_units` +-- + +INSERT INTO `0_item_units` VALUES('ea.', 'Each', 0); + +-- +-- Dumping data for table `0_locations` +-- + +INSERT INTO `0_locations` VALUES('DEF', 'Default', 'N/A', '', '', '', ''); + +-- +-- Dumping data for table `0_movement_types` +-- + +INSERT INTO `0_movement_types` VALUES(1, 'Adjustment'); + +-- +-- Dumping data for table `0_payment_terms` +-- + +INSERT INTO `0_payment_terms` VALUES(1, 'Due 15th Of the Following Month', 0, 17); +INSERT INTO `0_payment_terms` VALUES(2, 'Due By End Of The Following Month', 0, 30); +INSERT INTO `0_payment_terms` VALUES(3, 'Payment due within 10 days', 10, 0); +INSERT INTO `0_payment_terms` VALUES(4, 'Cash Only', 1, 0); + +-- +-- Dumping data for table `0_salesman` +-- + +INSERT INTO `0_salesman` VALUES(1, 'Sales Person', '', '', '', 5, 1000, 4); + +-- +-- Dumping data for table `0_sales_types` +-- + +INSERT INTO `0_sales_types` VALUES(1, 'Retail', 0, 1); +INSERT INTO `0_sales_types` VALUES(2, 'Wholesale', 0, 1); + +-- +-- Dumping data for table `0_shippers` +-- + +INSERT INTO `0_shippers` VALUES(1, 'Default', '', '', ''); + +-- +-- Dumping data for table `0_stock_category` +-- + +INSERT INTO `0_stock_category` VALUES(1, 'Components', NULL, NULL, NULL, NULL); +INSERT INTO `0_stock_category` VALUES(2, 'Charges', NULL, NULL, NULL, NULL); +INSERT INTO `0_stock_category` VALUES(3, 'Systems', NULL, NULL, NULL, NULL); +INSERT INTO `0_stock_category` VALUES(4, 'Services', NULL, NULL, NULL, NULL); + +-- +-- Dumping data for table `0_sys_types` +-- + +INSERT INTO `0_sys_types` VALUES(0, 'Journal - GL', 17, '1'); +INSERT INTO `0_sys_types` VALUES(1, 'Payment - GL', 7, '1'); +INSERT INTO `0_sys_types` VALUES(2, 'Receipt - GL', 4, '1'); +INSERT INTO `0_sys_types` VALUES(4, 'Funds Transfer', 3, '1'); +INSERT INTO `0_sys_types` VALUES(10, 'Sales Invoice', 16, '1'); +INSERT INTO `0_sys_types` VALUES(11, 'Credit Note', 2, '1'); +INSERT INTO `0_sys_types` VALUES(12, 'Receipt', 6, '1'); +INSERT INTO `0_sys_types` VALUES(13, 'Delivery', 1, '1'); +INSERT INTO `0_sys_types` VALUES(16, 'Location Transfer', 2, '1'); +INSERT INTO `0_sys_types` VALUES(17, 'Inventory Adjustment', 2, '1'); +INSERT INTO `0_sys_types` VALUES(18, 'Purchase Order', 1, '1'); +INSERT INTO `0_sys_types` VALUES(20, 'Supplier Invoice', 6, '1'); +INSERT INTO `0_sys_types` VALUES(21, 'Supplier Credit Note', 1, '1'); +INSERT INTO `0_sys_types` VALUES(22, 'Supplier Payment', 3, '1'); +INSERT INTO `0_sys_types` VALUES(25, 'Purchase Order Delivery', 1, '1'); +INSERT INTO `0_sys_types` VALUES(26, 'Work Order', 1, '1'); +INSERT INTO `0_sys_types` VALUES(28, 'Work Order Issue', 1, '1'); +INSERT INTO `0_sys_types` VALUES(29, 'Work Order Production', 1, '1'); +INSERT INTO `0_sys_types` VALUES(30, 'Sales Order', 1, '1'); +INSERT INTO `0_sys_types` VALUES(35, 'Cost Update', 1, '1'); +INSERT INTO `0_sys_types` VALUES(40, 'Dimension', 1, '1'); + +-- +-- Dumping data for table `0_users` +-- + +INSERT INTO `0_users` VALUES('admin', '5f4dcc3b5aa765d61d8327deb882cf99', 'Administrator', 2, '', 'adm@adm.com', 'en_US', 0, 0, 0, 0, 'default', 'Letter', 2, 2, 4, 1, 1, 0, 0, '2008-04-04 12:34:29');