Answers for "changes not showing on website server odoo"

1

changes not showing on website server odoo

had a similar problem and I could solve it by eliminating 
the QWeb Template from
Settings --> Technical --> User Interface --> Views. 
Then, you need to update the module.



I hope I've helped :)
Posted by: Guest on June-27-2021
0

changes not showing on website server odoo

update
    ir_model_data
set
    noupdate = false
where
    id in(
        select
            model_data_id
        from
            ir_ui_view
        where
            name = '<the name of your template - in my case tpl-imprint>'
    );
Posted by: Guest on July-01-2021

Code answers related to "changes not showing on website server odoo"

Python Answers by Framework

Browse Popular Code Answers by Language