forked from OCA/stock-logistics-workflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
picking_priority.py
146 lines (123 loc) · 5.49 KB
/
picking_priority.py
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# -*- coding: utf-8 -*-
##############################################################################
#
# Author: Alexandre Fayolle
# Copyright 2013 Camptocamp SA
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
import logging
from openerp.osv import orm, fields
from openerp.tools.translate import _
_logger = logging.getLogger(__name__)
class StockPicking(orm.Model):
_inherit = "stock.picking"
def get_selection_priority(self, cr, uid, context=None):
""" Inherit to extend the selection.
The field in `_columns` does not need to be duplicated in the
inheriting class.
"""
return [('0', 'Normal'), ('1', 'Urgent'), ('2', 'Very Urgent')]
def __selection_priority(self, cr, uid, context=None):
""" Do not touch me. Extend `get_selection_priority` to modify
the selection
"""
return self.get_selection_priority(cr, uid, context=context)
_columns = {
'priority': fields.selection(__selection_priority,
'Priority',
required=True,
help='The priority of the picking'),
}
_defaults = {
'priority': '0',
}
def retry_assign_all(self, cr, uid, ids, context=None):
domain = [('type', '!=', 'in'),
('move_lines', '!=', []),
('state', 'in', ('confirmed', 'assigned'))]
if ids:
domain += [('id', 'in', ids)]
picking_ids = self.search(cr, uid, domain,
order='priority desc, min_date',
context=context)
_logger.info('cancelling pickings')
cancelled_ids = self.cancel_assign(cr, uid, picking_ids, context)
assigned_ids = []
errors = []
_logger.info('reassigning pickings')
for picking_id in picking_ids:
try:
assigned_id = self.action_assign(cr, uid, [picking_id],
context)
assigned_ids.append(assigned_id)
except orm.except_orm, exc:
name = self.read(cr, uid, picking_id, ['name'],
context=context)['name']
errors.append(u'%s: %s' % (name, exc.args[-1]))
_logger.info('error in action_assign for picking %s: %s'
% (name, exc))
if errors:
message = '\n'.join(errors)
raise orm.except_orm(_(u'Warning'),
_(u'No operations validated due '
'to the following errors:\n%s') % message)
return cancelled_ids, assigned_ids
class StockPickingOut(orm.Model):
_inherit = 'stock.picking.out'
def __selection_priority(self, cr, uid, context=None):
""" Do not touch me. Extend `get_selection_priority` in `stock.picking`
to modify the selection
"""
picking_obj = self.pool['stock.picking']
return picking_obj.get_selection_priority(cr, uid, context=context)
_columns = {
'priority': fields.selection(__selection_priority,
'Priority',
required=True,
help='The priority of the picking'),
}
_defaults = {
'priority': '0',
}
def retry_assign_all(self, cr, uid, ids, context=None):
return self.pool.get('stock.picking').retry_assign_all(cr, uid, ids,
context=context)
class StockPickingIn(orm.Model):
_inherit = 'stock.picking.in'
def __selection_priority(self, cr, uid, context=None):
""" Do not touch me. Extend `get_selection_priority` in `stock.picking`
to modify the selection
"""
picking_obj = self.pool['stock.picking']
return picking_obj.get_selection_priority(cr, uid, context=context)
_columns = {
'priority': fields.selection(__selection_priority,
'Priority',
required=True,
help='The priority of the picking'),
}
_defaults = {
'priority': '0',
}
def retry_assign_all(self, cr, uid, ids, context=None):
return self.pool.get('stock.picking').retry_assign_all(cr, uid, ids,
context=context)
class StockPickingRetryAvailability(orm.TransientModel):
_name = "stock.picking.retry.availability"
def action_retry_assign(self, cr, uid, ids, context=None):
pick_obj = self.pool['stock.picking']
pick_obj.retry_assign_all(cr, uid, [], context=context)
return {'type': 'ir.actions.act_window_close'}