Files
stock-logistics-warehouse/stock_cycle_count/models/stock_cycle_count.py
2024-06-11 08:34:30 +02:00

89 lines
3.2 KiB
Python

# -*- coding: utf-8 -*-
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
# (http://www.eficent.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from openerp import api, fields, models
class StockCycleCount(models.Model):
_name = 'stock.cycle.count'
_inherit = 'mail.thread'
@api.one
def _count_inventory_adj(self):
self.inventory_adj_count = len(self.stock_adjustment_ids)
@api.model
def create(self, vals):
vals['name'] = self.env['ir.sequence'].next_by_code(
'stock.cycle.count') or ''
return super(StockCycleCount, self).create(vals)
@api.model
def _company_get(self):
company_id = self.env['res.company']._company_default_get(self._name)
return company_id
name = fields.Char(string='Name', readonly=True)
location_id = fields.Many2one(comodel_name='stock.location',
string='Location',
required=True)
responsible_id = fields.Many2one(comodel_name='res.users',
string='Assigned to')
date_deadline = fields.Date(string='Required Date')
cycle_count_rule_id = fields.Many2one(
comodel_name='stock.cycle.count.rule',
string='Cycle count rule',
required=True)
state = fields.Selection(selection=[
('draft', 'Planned'),
('open', 'Execution'),
('cancelled', 'Cancelled'),
('done', 'Done')
], string='State', default='draft')
stock_adjustment_ids = fields.One2many(comodel_name='stock.inventory',
inverse_name='cycle_count_id',
string='Inventory Adjustment')
inventory_adj_count = fields.Integer(compute=_count_inventory_adj)
company_id = fields.Many2one(comodel_name='res.company',
string='Company',
required=True,
default=_company_get)
@api.one
def do_cancel(self):
self.state = 'cancelled'
@api.model
def _prepare_inventory_adjustment(self):
return {
'name': 'INV/{}'.format(self.name),
'cycle_count_id': self.id,
'location_id': self.location_id.id,
'exclude_sublocation': True
}
@api.one
def action_create_inventory_adjustment(self):
data = self._prepare_inventory_adjustment()
self.env['stock.inventory'].create(data)
self.state = 'open'
return True
@api.multi
def action_view_inventory(self):
action = self.env.ref('stock.action_inventory_form')
result = action.read()[0]
result['context'] = {}
adjustment_ids = sum([cycle_count.stock_adjustment_ids.ids
for cycle_count in self], [])
if len(adjustment_ids) > 1:
result['domain'] = \
"[('id','in',[" + ','.join(map(str, adjustment_ids)) + "])]"
elif len(adjustment_ids) == 1:
res = self.env.ref('stock.view_inventory_form', False)
result['views'] = [(res and res.id or False, 'form')]
result['res_id'] = adjustment_ids and adjustment_ids[0] or False
return result