37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import api, fields, models, _
|
|
from odoo.exceptions import UserError
|
|
|
|
|
|
class StockImmediateTransfer(models.TransientModel):
|
|
_name = 'stock.immediate.transfer'
|
|
_description = 'Immediate Transfer'
|
|
|
|
pick_id = fields.Many2one('stock.picking')
|
|
|
|
@api.model
|
|
def default_get(self, fields):
|
|
res = super(StockImmediateTransfer, self).default_get(fields)
|
|
if not res.get('pick_id') and self._context.get('active_id'):
|
|
res['pick_id'] = self._context['active_id']
|
|
return res
|
|
|
|
@api.multi
|
|
def process(self):
|
|
self.ensure_one()
|
|
# If still in draft => confirm and assign
|
|
if self.pick_id.state == 'draft':
|
|
self.pick_id.action_confirm()
|
|
if self.pick_id.state != 'assigned':
|
|
self.pick_id.action_assign()
|
|
if self.pick_id.state != 'assigned':
|
|
raise UserError(_("Could not reserve all requested products. Please use the \'Mark as Todo\' button to handle the reservation manually."))
|
|
for pack in self.pick_id.pack_operation_ids:
|
|
if pack.product_qty > 0:
|
|
pack.write({'qty_done': pack.product_qty})
|
|
else:
|
|
pack.unlink()
|
|
return self.pick_id.do_transfer()
|