This is an Odoo 12 custom module that essentially extends fieldservice_activity
. It is based off the odoo scaffold
command for creating custom modules.
It generates reports based on activity and location, modifies some field names, and adds a custom field for recording numeric test results.
Odoo module dependencies - make sure they're installed:
- fieldservice
- fieldservice_activity
- Download and add to your
/addons
folder - Go to Apps, search for
hism_fieldservice_extras
and install
- Activities tab is renamed to Tasks
- Results/Score column for floating point values added
- Workaround for OCA/field-service#509
- Go to Field Service > Reporting > Tasks
- View excludes tasks that aren't
status = done
- make sure to mark the tasks as Complete in the order! - Can use built-in Odoo filters and date range selects
For Docker, assuming your files are in /addons
locally :
docker pull odoo:12.0
docker pull postgres:10
docker run -d -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=odoo -e POSTGRES_DB=postgres --name db postgres:10
docker run -v /addons:/var/lib/odoo/addons/12.0 -p 8069:8069 --name odoo --link db:db -t odoo:12.0
- To look around container:
docker exec -it odoo bin/sh