[fix] problem with date and time parsing
authorniv-openerp <nicolas.vanhoren@openerp.com>
Thu, 26 Jan 2012 15:28:22 +0000 (16:28 +0100)
committerniv-openerp <nicolas.vanhoren@openerp.com>
Thu, 26 Jan 2012 15:28:22 +0000 (16:28 +0100)
bzr revid: nicolas.vanhoren@openerp.com-20120126152822-z98udmqoj1qc9cx6

addons/web/static/src/js/dates.js
addons/web/static/test/formats.js

index 907eaa3..fe57f1b 100644 (file)
@@ -5,8 +5,8 @@ openerp.web.dates = function(openerp) {
  * Converts a string to a Date javascript object using OpenERP's
  * datetime string format (exemple: '2011-12-01 15:12:35').
  * 
- * The timezone is assumed to be UTC (standard for OpenERP 6.1)
- * and will be converted to the browser's timezone.
+ * The time zone is assumed to be UTC (standard for OpenERP 6.1)
+ * and will be converted to the browser's time zone.
  * 
  * @param {String} str A string representing a datetime.
  * @returns {Date}
@@ -31,6 +31,10 @@ openerp.web.str_to_datetime = function(str) {
  * Converts a string to a Date javascript object using OpenERP's
  * date string format (exemple: '2011-12-01').
  * 
+ * As a date is not subject to time zones, we assume it should be
+ * represented as a Date javascript object at 00:00:00 in the
+ * time zone of the browser.
+ * 
  * @param {String} str A string representing a date.
  * @returns {Date}
  */
@@ -43,7 +47,7 @@ openerp.web.str_to_date = function(str) {
     if ( !res ) {
         throw new Error("'" + str + "' is not a valid date");
     }
-    var obj = Date.parseExact(str + ' UTC', 'yyyy-MM-dd zzz');
+    var obj = Date.parseExact(str, 'yyyy-MM-dd');
     if (! obj) {
         throw new Error("'" + str + "' is not a valid date");
     }
@@ -54,6 +58,10 @@ openerp.web.str_to_date = function(str) {
  * Converts a string to a Date javascript object using OpenERP's
  * time string format (exemple: '15:12:35').
  * 
+ * The OpenERP times are supposed to always be naive times. We assume it is
+ * represented using a javascript Date with a date 1 of January 1970 and a
+ * time corresponding to the meant time in the browser's time zone.
+ * 
  * @param {String} str A string representing a time.
  * @returns {Date}
  */
@@ -66,7 +74,7 @@ openerp.web.str_to_time = function(str) {
     if ( !res ) {
         throw new Error("'" + str + "' is not a valid time");
     }
-    var obj = Date.parseExact(res[1] + ' UTC', 'HH:mm:ss zzz');
+    var obj = Date.parseExact("1970-01-01 " + res[1], 'yyyy-MM-dd HH:mm:ss');
     if (! obj) {
         throw new Error("'" + str + "' is not a valid time");
     }
@@ -90,7 +98,7 @@ var zpad = function(str, size) {
  * Converts a Date javascript object to a string using OpenERP's
  * datetime string format (exemple: '2011-12-01 15:12:35').
  * 
- * The timezone of the Date object is assumed to be the one of the
+ * The time zone of the Date object is assumed to be the one of the
  * browser and it will be converted to UTC (standard for OpenERP 6.1).
  * 
  * @param {Date} obj
@@ -109,6 +117,10 @@ openerp.web.datetime_to_str = function(obj) {
  * Converts a Date javascript object to a string using OpenERP's
  * date string format (exemple: '2011-12-01').
  * 
+ * As a date is not subject to time zones, we assume it should be
+ * represented as a Date javascript object at 00:00:00 in the
+ * time zone of the browser.
+ * 
  * @param {Date} obj
  * @returns {String} A string representing a date.
  */
index b841d12..640eaaa 100644 (file)
@@ -28,13 +28,13 @@ $(document).ready(function () {
     test('Parse server date', function () {
         var date = openerp.web.str_to_date("2009-05-04");
         deepEqual(
-            [date.getUTCFullYear(), date.getUTCMonth(), date.getUTCDate()],
+            [date.getFullYear(), date.getMonth(), date.getDate()],
             [2009, 5 - 1, 4]);
     });
     test('Parse server time', function () {
         var date = openerp.web.str_to_time("12:34:23");
         deepEqual(
-            [date.getUTCHours(), date.getUTCMinutes(), date.getUTCSeconds()],
+            [date.getHours(), date.getMinutes(), date.getSeconds()],
             [12, 34, 23]);
     });