2017-11-15 8 views
1

나는이 수업이 있습니다피 계산 필드에서 클래스의 상태를 변경 - Odoo의 V8

class bsi_production_order(models.Model): 
    _name = 'bsi.production.order' 

    name = fields.Char('Reference', required=True, index=True, copy=False, readonly='True', default='New') 
    order_lines = fields.One2many('bsi.production.order.lines', 'production_order', states={'finished': [('readonly', True)], 'cancel': [('readonly', True)]}, string="Order lines", copy=True) 
print_orders = fields.One2many('bsi.print.order', 'production_orders', string="Print Orders") 
state = fields.Selection([ 
     ('draft','Draft'), 
     ('start','Started'), 
     ('inprogress','In progress'), 
     ('print_order_inprogress','Print Order In Progress'), 
     ('finished','Finished'), 
     ('cancel','Cancel'), 
    ], string='State', index=True, 
    track_visibility='onchange', copy=False, 
    help=" ") 

class bsi_print_order(models.Model): 
    _name = 'bsi.print.order' 

    name = fields.Char('Reference', required=True, index=True, copy=False, readonly='True', default='New') 
    order_lines = fields.One2many('bsi.print.order.lines', 'print_order', string="Order lines") 
    state = fields.Selection([ 
     ('inprogress','Draft'), 
     ('awaitingraw','Awaiting raw materials'), 
     ('work_in_progress','Work in Progress'), 
     ('delivered','Delivered'), 
     ('cancel','Cancel'), 
    ], string="State") 
    notes = fields.Text(string="Notes") 

class bsi_production_order_lines(models.Model): 
    _name = 'bsi.production.order.lines' 

    production_order = fields.Many2one('bsi.production.order', string="Production Orders") 
    isbn = fields.Many2one('product.product', string="ISBN", domain="[('is_isbn', '=', True)]") 
    qty = fields.Float(string="Quantity") 
    consumed_qty = fields.Float(string="Consumed quantity") 
    remaining_qty = fields.Float(string="Remaining quantity", compute="_remaining_func") # 

    @api.onchange('qty', 'consumed_qty') 
    def _remaining_func(self): 
     if self.qty or self.consumed_qty: 
      self.remaining_qty = self.qty +(-self.consumed_qty) 

class bsi_print_order_lines(models.Model): 
    _name = 'bsi.print.order.lines' 

    print_order = fields.Many2one('bsi.print.order', string="Print Order") 
    production_orders = fields.Many2one('bsi.production.order', ondelete='cascade', string="Production Order") 
    isbn = fields.Many2one('product.product', string="ISBN", domain="[('is_isbn', '=', True)]") 
    qty = fields.Integer(string="Quantity") 
    consumed_qty = fields.Integer(string="Quantity consumed") 
    remaining_qty = fields.Float(string="Remaining quantity", compute="_remaining_func") 
    is_book_block = fields.Boolean(string="Is Book Block Done") 
    is_binding = fields.Boolean(string="Is Binding Done") 
    is_edging = fields.Boolean(string="Is Edging Done") 
    isbns = fields.Many2one('worksheets.isbns', string="Worksheet ISBNS") 

@api.onchange('qty', 'consumed_qty') 
def _remaining_func(self): 
    if self.consumed_qty or self.qty: 
     self.remaining_qty = self.qty +(-self.consumed_qty) 

내가 만드는이 방법과 bsi.production.order 클래스의 bsi.print.order : 상관없이

@api.multi 
def create_printy(self): 
    copy_record = self.env['bsi.print.order'] 
    for record in self: 
     order_lines = [] 
     for rec in record.order_lines: 
      order_lines.append(
      (0,0, 
      { 
       'isbn': rec.isbn.id, 
       'qty': rec.qty, 
       } 
      )) 
     copy_record.create({ 
      'state' : 'inprogress', 
      'order_lines': order_lines, # here we pass the list of commands that we created earlier 
     }) 
     record.update({'state': 'print_order_inprogress',},) 

하지만 상태를 나는 record.update에 항상 bsi.print.order에 바뀌는 상태를 선택한다.

계산 된 필드가 있기 때문에 간접적으로 전달할 수있는 방법이 있는지 알고 있습니다. 또는 하위 클래스의 states에 영향을주지 않는 방법은 무엇입니까? (bsi.print.order). 다른 클래스에

class bsi_production_order_lines(models.Model): 
    _name = 'bsi.production.order.lines' 

    production_order = fields.Many2one('bsi.production.order', string="Production Orders") 
    isbn = fields.Many2one('product.product', string="ISBN", domain="[('is_isbn', '=', True)]") 
    qty = fields.Float(string="Quantity") 
    consumed_qty = fields.Float(string="Consumed quantity") 
    remaining_qty = fields.Float(string="Remaining quantity", compute="_remaining_func") # 

@api.onchange('qty', 'consumed_qty') 
def _remaining_func(self): 
    for s in self: 
     for qty in s.isbn: 
      if s.qty or s.consumed_qty: 
       s.remaining_qty = s.qty +(-s.consumed_qty) 

이이 같은 필드입니다 :

편집

이러한 계산 된 필드는 다음과 같습니다.

답변

2

ORM create 방법으로 updatewrite으로 바꾸어보세요. 계산 된 필드가 아무 곳에도 표시되지 않기 때문에 유일한 문제라고 생각합니다. create 메서드에서 값 필드를 수정하면 왜 값 필드가 변경됩니까? 나는 그 update을 ORM 방법으로 사용하는 것이 효과가 없다고 생각한다. 따라서 상태가 결코 값을 변경하지 않는다.

@api.multi 
def create_printy(self): 
    copy_record = self.env['bsi.print.order'] 
    for record in self: 
     order_lines = [] 
     for rec in record.order_lines: 
      order_lines.append(
      (0,0, 
      { 
       'isbn': rec.isbn.id, 
       'qty': rec.qty, 
       } 
      )) 
     copy_record.create({ 
      'state' : 'inprogress', 
      'order_lines': order_lines, # here we pass the list of commands that we created earlier 
     }) 
     record.write({'state': 'print_order_inprogress',},) 
+0

예 두 가지 계산 된 필드는하지만, 내가 그 :) – NeoVe

+0

같이 해보자 그리고 업데이트는 원래 클래스가 아닌 대상 하나이지만, 어쨌든 난 그는 생각하지 않습니다, 나를 보자 문제는. – NeoVe

+0

'state'메서드를 지정하면 대상 클래스가 문제가됩니다. 'draft'는 대상 개체를 만들어야하지만 절대로 두 계산 된 필드 때문입니다. – NeoVe