Skip to content

Commit

Permalink
[FIX] mrp: typo # Read Work Orders -> # Ready Work Orders
Browse files Browse the repository at this point in the history
Description of the issue/feature this PR addresses:
fix a typo

closes #163704

Signed-off-by: Quentin Wolfs (quwo) <quwo@odoo.com>
  • Loading branch information
robodoo authored and Odoo Online committed May 7, 2024
2 parents afd5f7a + e58afe3 commit 72af57f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/mrp/models/mrp_workcenter.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class MrpWorkcenter(models.Model):
has_routing_lines = fields.Boolean(compute='_compute_has_routing_lines', help='Technical field for workcenter views')
order_ids = fields.One2many('mrp.workorder', 'workcenter_id', "Orders")
workorder_count = fields.Integer('# Work Orders', compute='_compute_workorder_count')
workorder_ready_count = fields.Integer('# Read Work Orders', compute='_compute_workorder_count')
workorder_ready_count = fields.Integer('# Ready Work Orders', compute='_compute_workorder_count')
workorder_progress_count = fields.Integer('Total Running Orders', compute='_compute_workorder_count')
workorder_pending_count = fields.Integer('Total Pending Orders', compute='_compute_workorder_count')
workorder_late_count = fields.Integer('Total Late Orders', compute='_compute_workorder_count')
Expand Down

0 comments on commit 72af57f

Please sign in to comment.