Bhumi Thakkar (Open ERP) has proposed merging 
lp:~openerp-dev/openerp-web/6.1-opw-577694-bth into lp:openerp-web/6.1.

Requested reviews:
  OpenERP Core Team (openerp)

For more details, see:
https://code.launchpad.net/~openerp-dev/openerp-web/6.1-opw-577694-bth/+merge/118891

Hello,

Error with Internet Explorer 8

An error message is displayed when creating a sale order:
  * Sales -> Sales Orders : click on "Create"
Error : 'object doesn't support this property or method'

database can be downloaded here:
  
http://migration.openerp.com/download/6cd46f87fd7e447fa8988b9ec3aa83dd/test.migrated.vprime.dump?force_download=1

console.error is not support with the console object because it is not defined 
in console object IE 8 not support if method is not defined with the object.
If console is not defined or object then
console = {}
console.log = console.error = console.warn = function() {}

Thanks.
-- 
https://code.launchpad.net/~openerp-dev/openerp-web/6.1-opw-577694-bth/+merge/118891
Your team OpenERP R&D Team is subscribed to branch 
lp:~openerp-dev/openerp-web/6.1-opw-577694-bth.
=== modified file 'addons/web/static/src/js/core.js'
--- addons/web/static/src/js/core.js	2012-06-14 12:30:24 +0000
+++ addons/web/static/src/js/core.js	2012-08-09 07:47:23 +0000
@@ -3,7 +3,8 @@
  *--------------------------------------------------------*/
 var console;
 if (!console) {
-    console = {log: function () {}};
+    console = {}
+    console.log = console.error = console.debug = console.info = console.warn = console.assert = console.clear = console.dir = console.dirxml = console.trace = console.group = console.groupCollapsed = console.groupEnd = console.time = console.timeEnd = console.profile = console.profileEnd = console.count = console.exception = console.table = function() {}
 }
 if (!console.debug) {
     console.debug = console.log;

_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help   : https://help.launchpad.net/ListHelp

Reply via email to