Hi all, is there a way to create a user from a contact without installing the mail odoo app ? Because I want to have this feature in my odoo integration but I don't want a mail service in it, for example coding something or maybe editing a module.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Účetnictví
- Sklad
- PoS
- Project
- MRP
This question has been flagged
2
Odpovědi
1722
Zobrazení
thanks for the help, but im trying this code and its not creating new users i dont know why?
Hi,
If you are familiar with code you can achieve this by over riding the create function of model res.partner, super it and create the user.
class ResPartner(models.Model):
_name = 'res.partner'
_inherit = 'res.partner'
@api.model
def create(self, vals):
res = super(ResPartner, self).create(vals)
for rec in res:
user = self.env[‘res.users’].sudo().create({
‘name’: rec.name,
‘login’: rec.email,
‘partner_id’: rec.id
)}
return res
Regards
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Přihlásit seRelated Posts | Odpovědi | Zobrazení | Aktivita | |
---|---|---|---|---|
|
1
srp 25
|
1741 | ||
|
0
říj 24
|
1373 | ||
|
0
lis 23
|
1847 | ||
Sell Price / Price per Weight
Vyřešeno
|
|
1
srp 22
|
2618 | |
|
0
srp 22
|
2147 |