我正在创建一个自定义模块。有一个one2many领域。它有 -
量
计量单位
来源地点
目的地位置
我需要将产品从源位置转移到目标位置。
在odoo v8中,我看到了两个函数 -
def do_detailed_transfer(self)
和
do_transfer()
但是在odoo v9中没有do_detailed_transfer。
如何创建自定义库存移动,将两个版本的产品从源位置转移到目标位置?
感谢。
答案 0 :(得分:2)
我可以使用以下代码创建库存移动 -
res = {}
Move = self.env['stock.move']
for transfer in self:
moves = self.env['stock.move']
for products in transfer.requisition_items:
move = Move.create({
'name': transfer.employee_id.name,
'product_id': products.product_id.id,
'restrict_lot_id': False,
'product_uom_qty': products.delivery_quantity,
'product_uom': 1, #TODO: Change the test value 1 to produc_uom
'partner_id': 1, #TODO: Change the test value 1 to partner_id
'location_id': products.source_location.id,
'location_dest_id': products.destination_location.id,
})
moves |= move
moves.action_done()
products.write({'move_id': move.id, 'state': 'done'})
res[transfer.id] = move.id
return res
答案 1 :(得分:0)
我正在测试您的代码,但出现错误'对象没有属性'requisition_items'或employee_id产品 一定是我缺少了重要的东西,您可以告诉我下一个是我的代码:
# -*- coding: utf-8 -*-
from openerp import models, fields, api
class add_fields_envase(models.Model):
_inherit = 'sale.order.line'
articulo = fields.Many2one('product.product', 'Articulo')
cantidad1 = fields.Integer('Cantidad',default=0)
@api.onchange('envases1')
def new_move_stock(self):
res = {}
Move = self.env['stock.move']
for transfer in self:
moves = self.env['stock.move']
for products in transfer.requisition_items:
move = Move.create({
'name': transfer.employee_id.name,
'product_id': products.product_id.id,
'restrict_lot_id': False,
'product_uom_qty': products.delivery_quantity,
'product_uom': 1, #TODO: Change the test value 1 to produc_uom
'partner_id': 1, #TODO: Change the test value 1 to partner_id
'location_id': products.source_location.id,
'location_dest_id': products.destination_location.id,
})
moves |= move
moves.action_done()
products.write({'move_id': move.id, 'state': 'done'})
res[transfer.id] = move.id
return res