コンテンツへスキップ
メニュー
この質問にフラグが付けられました
4022 ビュー

My custom module create a new products. It's logic based on eCommerce. But i want to overwrite value of field "Created by" (create_uid) - it must be equal to the name of current user on the moment of creation (user_id.partner_id.name).
How compute field only on creation?

class New(models.Model):
    _inherit = 'product.template'
    new_product = fields.Char(string='Your product')
    create_uid = fields.One2many('res.users', compute='_computed_author')
@api.multi
def _computed_author(self):
    self.create_uid = user_id.partner_id.name
    return True
アバター
破棄
著作者

easy

@api.one

def _get_creator_id(self):

self.create_uid = self.env.user.id

return True

関連投稿 返信 ビュー 活動
3
11月 23
17313
3
11月 24
24925
1
4月 23
6066
6
1月 23
11433
2
12月 22
6802