In odoo 15, any time I create a work order, the status by default is "waiting for another wo" and the starting date is replanned to the end of the previous work order. I want to have my WO running in parallel and by default in ready state. I don't want odoo to reschedule dates for the new work orders.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project
- MRP
This question has been flagged
1
Reply
2398
Views
Thanks @Cybrosys, but that did not work for me.
Just as a reference, I solved the problem by:
Changing the default value from "Waiting for another wo" to "ready" and
redefining the following compute methods
date_planned_start = fields.Datetime(
compute=lambda self: self._compute_date_planned_start(),
default=lambda self: self._default_date_planned_start(),
string='Planned Start',
)
date_planned_finished = fields.Datetime(
compute=lambda self: self._compute_date_planned_start(),
string='Planned End',
)
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
0
Aug 24
|
1340 | ||
|
1
May 24
|
1836 | ||
|
0
May 24
|
1390 | ||
|
2
Feb 24
|
1850 | ||
|
2
Mar 23
|
2365 |
Hi,
Please refer to this forum answer: https://www.odoo.com/forum/help-1/workaround-to-how-to-manage-operations-in-parallel-in-the-same-work-center-205360