Remove duplicate statement from 2.3.1 sql upgrade script

Remove quantity column from database.sql
Update item import example with correct location id
Fix detailed report receipt links
This commit is contained in:
jekkos-t520
2014-11-28 08:51:08 +01:00
parent 44b5404fe7
commit ee30b178b4
5 changed files with 13 additions and 21 deletions

View File

@@ -37,11 +37,11 @@ INSERT INTO `ospos_app_config` (`key`, `value`) VALUES
('return_policy', 'Test'),
('timezone', 'America/New_York'),
('website', ''),
('recv_invoice_format', ''),
('sales_invoice_format', ''),
('recv_invoice_format', '$CO'),
('sales_invoice_format', '$CO'),
('tax_included', '0'),
('recv_invoice_enable', '1'),
('sales_invoice_enable', '1');
('recv_invoice_enable', '0'),
('sales_invoice_enable', '0');
-- --------------------------------------------------------
@@ -147,7 +147,6 @@ CREATE TABLE `ospos_items` (
`description` varchar(255) NOT NULL,
`cost_price` decimal(15,2) NOT NULL,
`unit_price` decimal(15,2) NOT NULL,
`quantity` decimal(15,2) NOT NULL DEFAULT '0',
`reorder_level` decimal(15,2) NOT NULL DEFAULT '0',
`receiving_quantity` int(11) NOT NULL DEFAULT '1',
`item_id` int(10) NOT NULL AUTO_INCREMENT,