2017-10-16 24 views
1
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) 

ここに私のモジュールでデータを作成するときに使用する簡単な作成方法です。 目標は、同じ名前とsamemanufacture_idを持つ同じCREATEメソッドを使用して見積もりを作成することです。私はcreat sun.orderを意味するので、同じ見積もりが作成される必要があります。だから、おそらく1つは、どのようにそれを行うことができる例や一般的なアイデアを与えることができます。私には手がかりがないので。1つの作成方法2つの異なるモデル

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

答えて

1

次のようにあなたの作成方法を書き換えることができます。

@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) 

私は、これはあなたを助ける願っています。

関連する問題