Skip to Content
Menu
This question has been flagged
2 Replies
2413 Views

I have just installed the current docker container (docker run -p 8069:8069 --name odoo --link db:db -t odoo)

Every thing seems to be OK except the fact that when i fill an input box with ant text. I get the following error

onFieldChanged@http://172.17.0.3:8069/web/content/309-8c2e75f/web.assets_backend.js:1616:1121
_onFieldChanged@http://172.17.0.3:8069/web/content/309-8c2e75f/web.assets_backend.js:1374:1
proxy/<@http://172.17.0.3:8069/web/content/308-1c5f08f/web.assets_common.js:3950:8
trigger@http://172.17.0.3:8069/web/content/308-1c5f08f/web.assets_common.js:3948:166
_trigger_up@http://172.17.0.3:8069/web/content/308-1c5f08f/web.assets_common.js:3954:353
_trigger_up@http://172.17.0.3:8069/web/content/308-1c5f08f/web.assets_common.js:3954:455
_trigger_up@http://172.17.0.3:8069/web/content/308-1c5f08f/web.assets_common.js:3954:455
trigger_up@http://172.17.0.3:8069/web/content/308-1c5f08f/web.assets_common.js:3954:275
_setValue/<@http://172.17.0.3:8069/web/content/309-8c2e75f/web.assets_backend.js:823:99
MyPromise/promise<@http://172.17.0.3:8069/web/content/308-1c5f08f/web.assets_common.js:71:230
MyPromise@http://172.17.0.3:8069/web/content/308-1c5f08f/web.assets_common.js:71:13
_setValue@http://172.17.0.3:8069/web/content/309-8c2e75f/web.assets_backend.js:823:22
reinitialize@http://172.17.0.3:8069/web/content/309-8c2e75f/web.assets_backend.js:987:260
on_selected@http://172.17.0.3:8069/web/content/309-8c2e75f/web.assets_backend.js:993:633
on_saved@http://172.17.0.3:8069/web/content/309-8c2e75f/web.assets_backend.js:1642:884
_save/<@http://172.17.0.3:8069/web/content/309-8c2e75f/web.assets_backend.js:1638:608

This error does not prevent the data to be entered into the data base, but it is quite embarassing

Avatar
Discard

Thanks for your answer.

I followed your instructions (regenerate asset bundles). But it did not correct the problem.

I try to exec "DELETE FROM ir_attachment WHERE datas_fname SIMILAR TO '%.(js|css)';"

but the ir_attachment has no column named datas-fname. The columns for this table are : id,name,description,res_model,res_field,res_id,company_id,type,url,public,
access_token,db_datas,store_fname,file_size,checksum,mimetype

I had a look on the source code of the js in which the error appears ( field_manager_mixin.js) it seems that at line 121, the __applyChanges method cause an exception.


Best Answer

Try a couple of things.

First, try activating developer mode (with assets) and regenerating the asset bundles by going to developer tools (bug symbol on top right) and selecting the Regenerate Asset Bundles menu item.

If that does not work, try going to the database and doing the following before regenerating the asset bundles.

DELETE FROM ir_attachment WHERE datas_fname SIMILAR TO '%.(js|css)';


 

Avatar
Discard