以下方法存在于
查询 1: stock.move
@api.multi
def action_assign(self, no_prepare=False):
for move in moves:
if move.product_id.type == 'consu'
moves_to_assign |= move
continue
else:
moves_to_do |= move
我只想添加一行更改(即)
@api.multi
def action_assign(self, no_prepare=False):
for move in moves:
if move.product_id.type == 'consu' or move.product_id.type == 'service':
moves_to_assign |= move
continue
else:
moves_to_do |= move
我只想自定义这一行
**if move.product_id.type == 'consu' or move.product_id.type == 'service':**
以及 此方法中的查询 2: 'mrp.production'
def _generate_raw_move(self, bom_line, line_data):
我只想删除以下行
if bom_line.product_id.type not in ['product', 'consu']:
#return self.env['stock.move']
如何在 Odoo 10 的自定义模块中编写此方法。