Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
1829 มุมมอง

I want to make the creator of the contact as salesperson automatically as they normally forgot to add. It is required field now but normally the creator just choose any user id. 

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Hi Aklili Lamudok,


For this, you can add code like this in create method of 'Contact' model.

Please find code in comment. 

Feel free to contact us for further assistance

Hope this answer helps you.

Thanks & Regards,
Email: odoo@aktivsoftware.com     

Skype: kalpeshmaheshwari

อวตาร
ละทิ้ง

Please find code example here :-

EX:

class ResPartner(models.Model):
_inherit = 'res.partner'

@api.model
def create(self, values):
# If the user_id is not provided, set it to the creator's user_id
if 'user_id' not in values:
values['user_id'] = self.env.uid

return super(ResPartner, self).create(values)

Related Posts ตอบกลับ มุมมอง กิจกรรม
3
ส.ค. 25
2736
1
พ.ค. 25
2694
1
เม.ย. 25
3685
1
เม.ย. 25
4538
1
เม.ย. 25
2000