一种创建方法 2 独立模型

one create method 2 separate models

class SunOrder(models.Model):

    _name = 'sun.order'
    manufacture_id = fields.Many2one(
    'product.product',

     @api.model
     def create(self, vals):
        Sequence = self.env['ir.sequence']
        vals['name'] = Sequence.next_by_code('sun.order')
        return super(SunOrder, self).create(vals)

这是我在模块中创建数据时使用的简单创建方法。 目标是使用具有相同名称的相同 CREATE 方法创建报价,并且 samemanufacture_id.I 意味着当我创建 sun.order 时,我需要创建相同的时间报价。所以也许有人 1 可以给我示例或一般想法如何完成。因为我不知道。

class pos_quotation(models.Model):
    _name = "pos.quotation"
    name = fields.Char('Name')
    manufacture_id = fields.Many2one(
        'product.product',

您可以按如下方式重写您的创建方法:

@api.model
def create(self, vals):
    Sequence = self.env['ir.sequence']
    vals['name'] = Sequence.next_by_code('sun.order')
    #set your pos_quotation dictionary
    vals_quot = {'manufacture_id': vals['manufacture_id'],
                #... other fields for pos.quotation model
                } 
    self.env['pos.quotation'].create(vals_quot)
    return super(SunOrder, self).create(vals)

希望对你有所帮助。