odoo 8 upgrade module from command line

89 views Asked by At

I want to upgrade my module from command line so I dont have to upgarde it from odoo dashboard. I have tried command like this but failed.

cd odoo-server
./odoo-bin -c /etc/odoo-server.conf -d ddf_production -u mi_report_activity_sales

The error that I get is

No such file or directory

I'm using odoo 8. What command should I use to make it run without error?

1

There are 1 answers

0
Kenly On

I can see a similar error message in the convert file

You can get the same error message using the field tag and setting the type attribute to file with some text in the field body

Example:

<field name="image" type="file">text</field>

The correct way to use it is as follows:

<field name="image" type="base64" file="base/static/img/public_user-image.png"/>