I created a function that computes the internal reference I need so I need directions on how to add it to the internal reference field. Thanks in advance :)
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
Hi,
Inherit the corresponding model and add the compute to corresponding field.
class ModelName(models.Model):
_inherit = "model.name"
so_line = fields.Char(compute='_compute_function_name')
To do it from user interface, use automated actions in odoo. See a use case here: https://www.youtube.com/watch?v=Cz5eM5FDmTE&list=PLqRRLx0cl0hq6DeOzGlfHyjgBxjN5jW90&index=1
Thanks
So if the id of the internal reference is "default_code" do I write it instead of "so_line"? Will that override it?
For an option that does not require you to build a module, and leverages the SEQUENCE model, see https://www.odoo.com/forum/help-1/question/can-i-assign-a-custom-field-the-value-of-a-sequence-without-a-module-143107
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 | |
---|---|---|---|---|
|
1
Oct 24
|
131 | ||
|
2
Mar 24
|
486 | ||
|
0
Dec 22
|
655 | ||
|
2
Nov 19
|
5466 | ||
|
1
May 17
|
2400 |