How can I set in the customers, default tags?
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
In this code is helful for you, change it right now.
partner_id=fields.Many2one('res.partner', 'Partner',change_default=True)
category_id= fields.Many2many('res.partner.category', id1='partner_id', id2='category_id', string='Tags',default=lambda self: self.env['res.partner.category'].search([('name','=','Employee')]))
Hello wizardz,
For set-up default value of tags for customer you need to inherit res.partner and set default value.
Example :
class res_partner(osv.osv):
_inherit = 'res.partner'
def get_category(self,cr,uid,context=None):
res=self.pool.get('ir.model.data').get_object_reference(cr, uid, 'base', 'res_partner_category_17')
return [(6,0,[res[1]])]
_defaults={
'category_id':get_category,
}
Hope this helps.
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
Mar 15
|
3562 | ||
|
1
Jun 22
|
1558 | ||
|
8
Nov 20
|
16137 | ||
|
0
Apr 16
|
2445 | ||
|
3
Mar 16
|
16034 |