mrp.routing.workcenter: fields, relations and API
The mrp.routing.workcenter model ("Work Center Usage") is a persistent model declared by the Manufacturing module. It exposes 53 fields, 23 of them declared directly on the model; 6 fields from other models point to it. 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
mrp.routing.workcenter- Label
- Work Center Usage
- Type
- Persistent (models.Model)
- SQL table
mrp_routing_workcenter- Origin module
- Manufacturing (
mrp) - Default order (_order)
bom_id, sequence, id- Inherits from (mixins)
- mail.threadmail.activity.mixin
Model fields
23 own fields, 24 inherited from mixins and 6 automatic ORM fields. Click a name to get a direct link to that field.
53 of 53 fields shown
| Technical name | Label | Type | Details |
|---|---|---|---|
| active | Active | boolean | |
| allow_operation_dependencies | Allow Operation Dependencies | boolean | related: |
| blocked_by_operation_ids | Blocked By Operations that need to be completed before this operation can start. | many2many | |
| bom_id | Bill of Material | many2one→ mrp.bom | required |
| bom_product_template_attribute_value_ids | Apply on Variants BOM Product Variants needed to apply this line. | many2many | |
| company_id | Company | many2one | related: |
| cost | Cost | float | computed |
| cost_mode | Cost based on Determines the way Odoo calculates the cost of the operation: - Based on Actual time: the cost will be calculated based on tracked time and real employee costs. - Based on Estimated time: the cost will be calculated based on estimated time and costs. | selection | Values: |
| cycle_number | Repetitions | integer | computed |
| name | Operation | char | required |
| needed_by_operation_ids | Blocks Operations that cannot start before this operation is completed. | many2many | |
| possible_bom_product_template_attribute_value_ids | Possible Bom Product Template Attribute Value | many2many | related: |
| sequence | Sequence Gives the sequence order when displaying a list of routing Work Centers. | integer | |
| show_time_total | Show Total Duration? | boolean | computed |
| time_computed_on | Computed on last | char | computed |
| time_cycle | Cycles | float | computed |
| time_cycle_manual | Manual Duration Time in minutes:- In fixed mode, time used- In computed mode, supposed first time when there aren't any work orders yet | float | |
| time_mode | Duration Computation | selection | Values: |
| time_mode_batch | Based on | integer | |
| time_total | Total Duration | float | computed |
| workcenter_id | Work Center | many2one | required |
| workorder_count | # Work Orders | integer | computed |
| workorder_ids | Work Orders | one2many | inverse: |
| activity_calendar_event_id | Next Activity Calendar Event | many2one | computed inherited from mail.activity.mixin |
| activity_date_deadline | Next Activity Deadline | date | read-onlycomputed inherited from mail.activity.mixin |
| activity_exception_decoration | Activity Exception Decoration Type of the exception activity on record. | selection | computed Values: inherited from mail.activity.mixin |
| activity_exception_icon | Icon Icon to indicate an exception activity. | char | computed inherited from mail.activity.mixin |
| activity_ids | Activities | one2many | inverse: inherited from mail.activity.mixin |
| activity_state | Activity State Status based on activities Overdue: Due date is already passed Today: Activity date is today Planned: Future activities. | selection | computed Values: inherited from mail.activity.mixin |
| activity_summary | Next Activity Summary | char | related: inherited from mail.activity.mixin |
| activity_type_icon | Activity Type Icon | char | related: inherited from mail.activity.mixin |
| activity_type_id | Next Activity Type | many2one | related: inherited from mail.activity.mixin |
| activity_user_id | Responsible User | many2one | read-onlycomputed inherited from mail.activity.mixin |
| has_message | Has Message | boolean | computed inherited from mail.thread |
| message_attachment_count | Attachment Count | integer | computed inherited from mail.thread |
| message_follower_ids | Followers | one2many | inverse: inherited from mail.thread |
| message_has_error | Message Delivery error If checked, some messages have a delivery error. | boolean | computed inherited from mail.thread |
| message_has_error_counter | Number of errors Number of messages with delivery error | integer | computed inherited from mail.thread |
| message_has_sms_error | SMS Delivery error If checked, some messages have a delivery error. | boolean | computed inherited from mail.thread |
| message_ids | Messages | one2many | inverse: inherited from mail.thread |
| message_is_follower | Is Follower | boolean | computed inherited from mail.thread |
| message_needaction | Action Needed If checked, new messages require your attention. | boolean | computed inherited from mail.thread |
| message_needaction_counter | Number of Actions Number of messages requiring action | integer | computed inherited from mail.thread |
| message_partner_ids | Followers (Partners) | many2many | computed inherited from mail.thread |
| my_activity_date_deadline | My Activity Deadline | date | read-onlycomputed inherited from mail.activity.mixin |
| rating_ids | Ratings | one2many | inverse: inherited from mail.thread |
| website_message_ids | Website Messages Website communication history | one2many | inverse: inherited from mail.thread |
| create_date | Created on | datetime | read-onlyautomatic |
| 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
- mrp.bom: bom_id
- mrp.routing.workcenter: blocked_by_operation_ids, needed_by_operation_ids
- mrp.workcenter: workcenter_id
- mrp.workorder: workorder_ids
- product.template.attribute.value: bom_product_template_attribute_value_ids, possible_bom_product_template_attribute_value_ids
- res.company: company_id
Fields of other models pointing here
- mrp.bom.byproduct: operation_id
- mrp.bom.line: operation_id
- mrp.routing.workcenter: blocked_by_operation_ids, needed_by_operation_ids
- mrp.workorder: operation_id
- stock.move: operation_id
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/mrp.routing.workcenter/search_read" \
-H "Authorization: bearer $ODOO_API_KEY" \
-H "X-Odoo-Database: your-db" \
-H "Content-Type: application/json" \
-d '{"domain":[],"fields":["name","bom_id","workcenter_id","company_id","active"],"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}/mrp.routing.workcenter/search_read",
headers=headers,
json={"domain": [], "fields": ["name","bom_id","workcenter_id","company_id","active"], "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/mrp-routing-workcenter">mrp.routing.workcenter (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.