Odoo Help
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
|
etc.
custom title of form view for custom module
hello,
I have created a new module and for some reason i am unable to change the form title as shown in the figure Screenshot.
Can anyone help me with this?
Hello Zadeek,
It is quite simple. There is a rule in openerp that your each object should have one "name" field. If not you should define any field as your name field in "_rec_name".
Syntax:
class mail_alias(osv.Model):
_name = 'my.object'
_rec_name = 'my_field'
_rec_name: Name of the field in which the name of every resource is stored. Default value: ‘name’. Note: by default, the name_get method simply returns the content of this field.
In short, you just have to either define "name" field or "_rec_name" in your object.
See _rec_name for more information.
thanks that helped but if i wanted a string like in salesorder so001 how can i acheive that..
Here is your answer to generate sequence: www.odoo.com/forum/help-1/question/how-to-implement-sequences-8830.
About This Community
This platform is for beginners and experts willing to share their Odoo knowledge. It's not a forum to discuss ideas, but a knowledge base of questions and their answers.
RegisterOdoo Training Center
Access to our E-learning platform and experience all Odoo Apps through learning videos, exercises and Quizz.
Test it nowQuestion tools
Stats
Asked: 9/16/14, 12:26 PM |
Seen: 1421 times |
Last updated: 3/16/15, 8:10 AM |