From: <tu...@us...> - 2010-10-21 00:24:17
|
Revision: 4103 http://web-erp.svn.sourceforge.net/web-erp/?rev=4103&view=rev Author: turbopt Date: 2010-10-21 00:24:11 +0000 (Thu, 21 Oct 2010) Log Message: ----------- Correct condition check so the calendar will properly use date from the textbox. Modified Paths: -------------- trunk/doc/Change.log.html trunk/javascripts/MiscFunctions.js Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-10-19 01:17:08 UTC (rev 4102) +++ trunk/doc/Change.log.html 2010-10-21 00:24:11 UTC (rev 4103) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> +<p>20/10/10 Paul: MiscFunctions.js - Bug #3060329. Correct condition check. [allows the calendar to start with the textbox's date]</p> <p>18/10/10 Paul: WorkOrderReceive.php - Bug #3023776. Applied anonymous contribution.</p> <p>16/10/10 Phil: SupplierInvocie.php fixed for mix up with commits - now shipment charges added correctly and contract charges also <p>14/10/10 Tim: MiscFunctions.php - Fix bug preventing download of ECB rates</p> Modified: trunk/javascripts/MiscFunctions.js =================================================================== --- trunk/javascripts/MiscFunctions.js 2010-10-19 01:17:08 UTC (rev 4102) +++ trunk/javascripts/MiscFunctions.js 2010-10-21 00:24:11 UTC (rev 4103) @@ -148,8 +148,8 @@ } function convertDate(dS,dF){ var d,m,y; -if (dF="d.m.Y") -dA=dS.split(".") +if (dF=="d.m.Y") +dA=dS.split("."); else dA=dS.split("/"); switch (dF){ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |