1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models, _
from odoo.exceptions import UserError
class StockPickingToBatch(models.TransientModel):
_name = 'stock.picking.to.batch'
_description = 'Batch Transfer Lines'
batch_id = fields.Many2one('stock.picking.batch', string='Batch Transfer', domain="[('state', '=', 'draft')]")
mode = fields.Selection([('existing', 'an existing batch transfer'), ('new', 'a new batch transfer')], default='existing')
user_id = fields.Many2one('res.users', string='Responsible', help='Person responsible for this batch transfer')
def attach_pickings(self):
self.ensure_one()
pickings = self.env['stock.picking'].browse(self.env.context.get('active_ids'))
if self.mode == 'new':
company = pickings.company_id
if len(company) > 1:
raise UserError(_("The selected pickings should belong to an unique company."))
batch = self.env['stock.picking.batch'].create({
'user_id': self.user_id.id,
'company_id': company.id,
'picking_type_id': pickings[0].picking_type_id.id,
})
else:
batch = self.batch_id
pickings.write({'batch_id': batch.id})
|