From: <ice...@us...> - 2013-07-28 15:24:40
|
Revision: 6156 http://sourceforge.net/p/web-erp/reponame/6156 Author: icedlava Date: 2013-07-28 15:24:37 +0000 (Sun, 28 Jul 2013) Log Message: ----------- Small grammar correction installer. For now with installer testing, add field name change in stock master table. Modified Paths: -------------- trunk/install/index.php trunk/sql/mysql/weberp-demo.sql trunk/sql/mysql/weberp-new.sql Modified: trunk/install/index.php =================================================================== --- trunk/install/index.php 2013-07-28 15:17:13 UTC (rev 6155) +++ trunk/install/index.php 2013-07-28 15:24:37 UTC (rev 6156) @@ -719,7 +719,7 @@ <ul> <li>'._('During installation you may see different status messages.').'</li> <li>'._('When there is an error message you must correct the error to continue.').'</li> - <li>'._('If you see a warning message you should take notice of before you proceed.').'</li> + <li>'._('If you see a warning message you should take notice before you proceed.').'</li> <li>'._('If you are unsure of an option value, you may keep the default setting.').'</li> </ul>'; ?> Modified: trunk/sql/mysql/weberp-demo.sql =================================================================== --- trunk/sql/mysql/weberp-demo.sql 2013-07-28 15:17:13 UTC (rev 6155) +++ trunk/sql/mysql/weberp-demo.sql 2013-07-28 15:24:37 UTC (rev 6156) @@ -2461,7 +2461,7 @@ `controlled` tinyint(4) NOT NULL DEFAULT '0', `eoq` double NOT NULL DEFAULT '0', `volume` decimal(20,4) NOT NULL DEFAULT '0.0000', - `kgs` decimal(20,4) NOT NULL DEFAULT '0.0000', + `grossweight` decimal(20,4) NOT NULL DEFAULT '0.0000', `barcode` varchar(50) NOT NULL DEFAULT '', `discountcategory` char(2) NOT NULL DEFAULT '', `taxcatid` tinyint(4) NOT NULL DEFAULT '1', Modified: trunk/sql/mysql/weberp-new.sql =================================================================== --- trunk/sql/mysql/weberp-new.sql 2013-07-28 15:17:13 UTC (rev 6155) +++ trunk/sql/mysql/weberp-new.sql 2013-07-28 15:24:37 UTC (rev 6156) @@ -2459,7 +2459,7 @@ `controlled` tinyint(4) NOT NULL DEFAULT '0', `eoq` double NOT NULL DEFAULT '0', `volume` decimal(20,4) NOT NULL DEFAULT '0.0000', - `kgs` decimal(20,4) NOT NULL DEFAULT '0.0000', + `grossweight` decimal(20,4) NOT NULL DEFAULT '0.0000', `barcode` varchar(50) NOT NULL DEFAULT '', `discountcategory` char(2) NOT NULL DEFAULT '', `taxcatid` tinyint(4) NOT NULL DEFAULT '1', |