|
From: <rc...@us...> - 2017-09-27 23:48:30
|
Revision: 7841
http://sourceforge.net/p/web-erp/reponame/7841
Author: rchacon
Date: 2017-09-27 23:48:22 +0000 (Wed, 27 Sep 2017)
Log Message:
-----------
Increases accuracy in coordinates.
Modified Paths:
--------------
trunk/doc/Change.log
trunk/sql/mysql/upgrade4.14.1-4.14.2.sql
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2017-09-26 12:24:24 UTC (rev 7840)
+++ trunk/doc/Change.log 2017-09-27 23:48:22 UTC (rev 7841)
@@ -1,5 +1,6 @@
webERP Change Log
+27/09/26 RChacon: Increases accuracy in coordinates.
17/09/26 Exson: Fixed the wrong price retrieved bug in PO_Header.php.
17/09/26 Exson: Fixed the vendor price bug to ensure only the effective price showed by suppliers in SelectProduct.php.
17/09/20 Exson: Fixed the bug to make GRN reverse workable.
Modified: trunk/sql/mysql/upgrade4.14.1-4.14.2.sql
===================================================================
--- trunk/sql/mysql/upgrade4.14.1-4.14.2.sql 2017-09-26 12:24:24 UTC (rev 7840)
+++ trunk/sql/mysql/upgrade4.14.1-4.14.2.sql 2017-09-27 23:48:22 UTC (rev 7841)
@@ -23,3 +23,8 @@
`amount` DOUBLE NOT NULL DEFAULT 0.0,
PRIMARY KEY(counterindex)
);
+
+ALTER TABLE `custbranch` CHANGE `lat` `lat` FLOAT(12,8) NOT NULL DEFAULT '0.00000000';
+ALTER TABLE `custbranch` CHANGE `lng` `lng` FLOAT(12,8) NOT NULL DEFAULT '0.00000000'
+
+
|