- Get Odoo 17 up and running locally by following this guide
- Clone this repo (duh)
- Run Odoo with
ENV=local python3 odoo-bin --addons-path="addons, {PATH TO onecore-odoo}" -d odoo --db_user={DB_USER} --db_host={DB_HOST} --db_port={DB_PORT} -i base -u onecore_maintenance_extension -u onecore_mail_extension -u onecore_ui -u onecore_web_extension --dev xml
This assumes you are using Lens, but you can of course use for example kubectl
instead if you want.
A kubeconfig for connecting to the cluster can be found in Bitwarden.
- Go to Workloads > Cron Jobs and select the
odoo-test
namespace - Select
odoo-git-install
, and click "Trigger"- You can see logs for the job under Jobs if there are any errors
- Go to Deployments, select
odoo
, and click on "Restart" - When the pod is up and running, log in to https://odoo-test.mimer.nu and manually update the OneCore apps that have been changed (or all of them if you are not sure)
https://www.odoo.com/documentation/17.0/applications/general/users/azure.html
IMPORTANT! When restoring a backup db the owner of the db needs to be bn_odoo
for Odoo to recognize it.
Whenever you need to make a change to an existing model you need to create a migration to prevent data in that model to be lost. Roughly what you do is this:
-
Create a
migrations
folder unless one exists already. -
Increase the version in the manifest file of your module and create a folder inside the migrations folder named {odoo-version}.{module-version}. Eg. if Odoo 17.0 and module version 1.1 the migration folder should be named
17.0.1.1
. -
Inside the migration folder you create your pre-, post- and/or end-scripts. The order of execution if you have several scripts of the same kind is lexical, like this:
pre-10-do_something.py
pre-20-something_else.py
post-do_something.py
post-something.py
end-01-migrate.py
end-migrate.py
-
Upgrade your module.
Here's a complete example of a migration that stores and restores the data of the phone_number
field in the maintenance_tenant_option
and maintenance_tenant
models as the phone_number
field type is converted from Char to Integer.
I have yet to find a way to rollback migrations so for now I guess we need to create another commit that reverts the changes to the model and create another migration that reverts the changes to the data.