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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
|
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.i18n import gettext
from trytond.model import ModelSQL, ModelView, fields
from trytond.pool import Pool
from trytond.pyson import Equal, Eval, If, In, Not
from trytond.transaction import Transaction
from .exceptions import OrderPointValidationError
class OrderPoint(ModelSQL, ModelView):
"""
Order Point
Provide a way to define a supply policy for each
product on each locations. Order points on warehouse are
considered by the supply scheduler to generate purchase requests.
"""
__name__ = 'stock.order_point'
product = fields.Many2One(
'product.product', "Product", required=True,
domain=[
('type', '=', 'goods'),
('consumable', '=', False),
('purchasable', 'in', If(Equal(Eval('type'), 'purchase'),
[True], [True, False])),
],
context={
'company': Eval('company', -1),
},
depends={'company'})
warehouse_location = fields.Many2One(
'stock.location', 'Warehouse Location',
domain=[('type', '=', 'warehouse')],
states={
'invisible': Not(Equal(Eval('type'), 'purchase')),
'required': Equal(Eval('type'), 'purchase'),
})
storage_location = fields.Many2One(
'stock.location', "Storage Location",
domain=[('type', '=', 'storage')],
states={
'invisible': Not(Equal(Eval('type'), 'internal')),
'required': Equal(Eval('type'), 'internal'),
})
location = fields.Function(fields.Many2One('stock.location', 'Location'),
'get_location', searcher='search_location')
provisioning_location = fields.Many2One(
'stock.location', 'Provisioning Location',
domain=[('type', 'in', ['storage', 'view'])],
states={
'invisible': Not(Equal(Eval('type'), 'internal')),
'required': ((Eval('type') == 'internal')
& (Eval('min_quantity', None) != None)), # noqa: E711
})
overflowing_location = fields.Many2One(
'stock.location', 'Overflowing Location',
domain=[('type', 'in', ['storage', 'view'])],
states={
'invisible': Eval('type') != 'internal',
'required': ((Eval('type') == 'internal')
& (Eval('max_quantity', None) != None)), # noqa: E711
})
type = fields.Selection(
[('internal', 'Internal'),
('purchase', 'Purchase')],
"Type", required=True)
min_quantity = fields.Float(
"Minimal Quantity", digits='unit',
states={
# required for purchase and production types
'required': Eval('type') != 'internal',
},
domain=['OR',
('min_quantity', '=', None),
('min_quantity', '<=', Eval('target_quantity', 0)),
])
target_quantity = fields.Float(
"Target Quantity", digits='unit', required=True,
domain=[
['OR',
('min_quantity', '=', None),
('target_quantity', '>=', Eval('min_quantity', 0)),
],
['OR',
('max_quantity', '=', None),
('target_quantity', '<=', Eval('max_quantity', 0)),
],
])
max_quantity = fields.Float(
"Maximal Quantity", digits='unit',
states={
'invisible': Eval('type') != 'internal',
},
domain=['OR',
('max_quantity', '=', None),
('max_quantity', '>=', Eval('target_quantity', 0)),
])
company = fields.Many2One('company.company', 'Company', required=True,
domain=[
('id', If(In('company', Eval('context', {})), '=', '!='),
Eval('context', {}).get('company', -1)),
])
unit = fields.Function(fields.Many2One('product.uom', 'Unit'), 'get_unit')
@staticmethod
def default_type():
return "purchase"
@classmethod
def default_warehouse_location(cls):
return Pool().get('stock.location').get_default_warehouse()
@fields.depends('product', '_parent_product.default_uom')
def on_change_product(self):
self.unit = None
if self.product:
self.unit = self.product.default_uom
def get_unit(self, name):
return self.product.default_uom.id
@classmethod
def validate(cls, orderpoints):
super(OrderPoint, cls).validate(orderpoints)
cls.check_concurrent_internal(orderpoints)
cls.check_uniqueness(orderpoints)
@classmethod
def check_concurrent_internal(cls, orders):
"""
Ensure that there is no 'concurrent' internal order
points. I.E. no two order point with opposite location for the
same product and same company.
"""
internals = cls.browse([o for o in orders if o.type == 'internal'])
if not internals:
return
for location_name in [
'provisioning_location', 'overflowing_location']:
query = []
for op in internals:
if getattr(op, location_name, None) is None:
continue
arg = ['AND',
('product', '=', op.product.id),
(location_name, '=', op.storage_location.id),
('storage_location', '=',
getattr(op, location_name).id),
('company', '=', op.company.id),
('type', '=', 'internal')]
query.append(arg)
if query and cls.search(['OR'] + query):
raise OrderPointValidationError(
gettext('stock_supply'
'.msg_order_point_concurrent_%s_internal' %
location_name))
@staticmethod
def _type2field(type=None):
t2f = {
'purchase': 'warehouse_location',
'internal': 'storage_location',
}
if type is None:
return t2f
else:
return t2f[type]
@classmethod
def check_uniqueness(cls, orders):
"""
Ensure uniqueness of order points. I.E that there is no several
order point for the same location, the same product and the
same company.
"""
query = ['OR']
for op in orders:
field = cls._type2field(op.type)
arg = ['AND',
('product', '=', op.product.id),
(field, '=', getattr(op, field).id),
('id', '!=', op.id),
('company', '=', op.company.id),
]
query.append(arg)
if cls.search(query):
raise OrderPointValidationError(
gettext('stock_supply.msg_order_point_unique'))
def get_rec_name(self, name):
return "%s @ %s" % (self.product.name, self.location.name)
@classmethod
def search_rec_name(cls, name, clause):
_, operator, value = clause
if operator.startswith('!') or operator.startswith('not '):
bool_op = 'AND'
else:
bool_op = 'OR'
return [bool_op,
('location.rec_name', *clause[1:]),
('product.rec_name', *clause[1:]),
]
def get_location(self, name):
if self.type == 'purchase':
return self.warehouse_location.id
elif self.type == 'internal':
return self.storage_location.id
@classmethod
def search_location(cls, name, domain=None):
clauses = ['OR']
for type, field in cls._type2field().items():
clauses.append([
('type', '=', type),
(field,) + tuple(domain[1:]),
])
return clauses
@staticmethod
def default_company():
return Transaction().context.get('company')
@classmethod
def supply_stock(cls):
pool = Pool()
StockSupply = pool.get('stock.supply', type='wizard')
session_id, _, _ = StockSupply.create()
StockSupply.execute(session_id, {}, 'create_')
StockSupply.delete(session_id)
|