report.project.task.user: fields, relations and API
The report.project.task.user model ("Tasks Analysis") is a persistent model declared by the Project module, then extended by 4 other modules. It exposes 48 fields, 43 of them declared directly on the model. Below you will find every field with its technical name, type, label and relations, followed by an Odoo 19 JSON-2 API call.
Model identity
- Technical name
report.project.task.user- Label
- Tasks Analysis
- Type
- Persistent (models.Model)
- SQL table
- None (no table)
- Origin module
- Project (
project) - Extended by
- hr_timesheet, project_hr_skills, sale_project, sale_timesheet
- Default order (_order)
name desc, project_id
Model fields
43 own fields, 0 inherited from mixins and 5 automatic ORM fields. Click a name to get a direct link to that field.
48 of 48 fields shown
| Technical name | Label | Type | Details |
|---|---|---|---|
| allocated_hours | Allocated Time | float | read-only added by Task Logs ( |
| company_id | Company | many2one | read-only |
| create_date | Create Date | datetime | read-only |
| date_assign | Assignment Date | datetime | read-only |
| date_deadline | Deadline | datetime | read-only |
| date_end | Ending Date | datetime | read-only |
| date_last_stage_update | Last Stage Update | datetime | read-only |
| delay_endings_days | Days to Deadline | float | read-only |
| dependent_ids | Block | many2many | read-only |
| description | Description | text | read-only |
| display_in_project | Display In Project | boolean | |
| effective_hours | Time Spent | float | read-only added by Task Logs ( |
| has_template_ancestor | Has Template Ancestor | boolean | read-only |
| is_closed | Closed state | boolean | read-only |
| is_template | Is Template | boolean | read-only |
| message_is_follower | Message Is Follower | boolean | related: |
| milestone_id | Milestone | many2one | read-only |
| name | Task Title | char | read-only |
| nbr | # of Tasks | integer | read-only |
| overtime | Overtime | float | read-only added by Task Logs ( |
| parent_id | Parent Task | many2one | read-only |
| partner_id | Customer | many2one | read-only |
| personal_stage_type_ids | Personal Stage | many2many | read-only |
| priority | Priority | selection | read-only Values: |
| progress | Progress | float | read-only added by Task Logs ( |
| project_id | Project | many2one | read-only |
| rating_avg | Average Rating (1-5) | float | read-only |
| rating_last_value | Last Rating (1-5) | float | read-only |
| remaining_hours | Time Remaining | float | read-only added by Task Logs ( |
| remaining_hours_percentage | Time Remaining Percentage | float | read-only added by Task Logs ( |
| remaining_hours_so | Time Remaining on SO | float | read-only added by Sales Timesheet ( |
| sale_line_id | Sales Order Item | many2one | read-only added by Sales - Project ( |
| sale_order_id | Sales Order | many2one | read-only added by Sales - Project ( |
| stage_id | Stage | many2one | read-only |
| state | State | selection | read-only Values: |
| tag_ids | Tags | many2many | read-only |
| task_id | Task | many2one | read-only |
| user_ids | Assignees | many2many | read-only |
| user_skill_ids | Skills | one2many | related: added by Project - Skills ( |
| working_days_close | Working Days to Close | float | read-only |
| working_days_open | Working Days to Assign | float | read-only |
| working_hours_close | Working Hours to Close | float | read-only |
| working_hours_open | Working Hours to Assign | float | read-only |
| create_uid | Created by | many2one | read-onlyautomatic |
| display_name | Display Name | char | read-onlycomputedautomatic |
| id | ID | integer | read-onlyautomatic |
| write_date | Last Updated on | datetime | read-onlyautomatic |
| write_uid | Last Updated by | many2one | read-onlyautomatic |
Relations
Models linked from this model
- hr.employee.skill: user_skill_ids
- project.milestone: milestone_id
- project.project: project_id
- project.tags: tag_ids
- project.task: dependent_ids, parent_id, task_id
- project.task.type: personal_stage_type_ids, stage_id
- res.company: company_id
- res.partner: partner_id
- res.users: user_ids
- sale.order: sale_order_id
- sale.order.line: sale_line_id
Fields of other models pointing here
No Many2one or Many2many field of another model points to this model.
Reading this model through the API
Odoo 19 JSON-2 API call reading the first five records with real fields of the model. Replace the instance, database and API key with your own.
curl -X POST "https://your-instance.odoo.com/json/2/report.project.task.user/search_read" \
-H "Authorization: bearer $ODOO_API_KEY" \
-H "X-Odoo-Database: your-db" \
-H "Content-Type: application/json" \
-d '{"domain":[],"fields":["name","state","company_id","milestone_id","parent_id"],"limit":5}'import requests
BASE_URL = "https://your-instance.odoo.com/json/2"
headers = {"Authorization": f"bearer {API_KEY}", "X-Odoo-Database": "your-db"}
res = requests.post(
f"{BASE_URL}/report.project.task.user/search_read",
headers=headers,
json={"domain": [], "fields": ["name","state","company_id","milestone_id","parent_id"], "limit": 5},
)
res.raise_for_status()
print(res.json())- External API access requires Odoo's Custom plan.
- XML-RPC and JSON-RPC will be removed in Odoo 22 (fall 2028): use JSON-2.
- The access rights and record rules of the key's user apply.
Cite this tool
Writing a tutorial, internal documentation or a forum answer? Copy this link to send your readers to the up-to-date reference.
<a href="https://aidoo.ai/en/outils/explorateur-modeles-odoo/report-project-task-user">report.project.task.user (Odoo 19.0)</a>Sources
Data verified on September 23, 2026 · Odoo 19.0 Community
Have an Odoo project, or want to put your ERP to work with AI? Let's talk
Implementation, custom module development, connecting Claude or ChatGPT to your data: tell us about your context and we will reply within 24 business hours.