This repository has been archived by the owner on Dec 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
bom.py
272 lines (229 loc) · 8.94 KB
/
bom.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
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
# 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.model import DeactivableMixin, ModelSQL, ModelView, fields
from trytond.pool import Pool
from trytond.pyson import Eval
from trytond.wizard import Button, StateView, Wizard
class BOM(DeactivableMixin, ModelSQL, ModelView):
"Bill of Material"
__name__ = 'production.bom'
name = fields.Char('Name', required=True, translate=True)
inputs = fields.One2Many('production.bom.input', 'bom', 'Inputs')
outputs = fields.One2Many('production.bom.output', 'bom', 'Outputs')
output_products = fields.Many2Many('production.bom.output',
'bom', 'product', 'Output Products')
def compute_factor(self, product, quantity, uom):
'''
Compute factor for an output product
'''
Uom = Pool().get('product.uom')
output_quantity = 0
for output in self.outputs:
if output.product == product:
output_quantity += Uom.compute_qty(
output.uom, output.quantity, uom, round=False)
if output_quantity:
return quantity / output_quantity
else:
return 0
@classmethod
def copy(cls, records, default=None):
if default is None:
default = {}
else:
default = default.copy()
default.setdefault('output_products', None)
return super(BOM, cls).copy(records, default=default)
class BOMInput(ModelSQL, ModelView):
"Bill of Material Input"
__name__ = 'production.bom.input'
bom = fields.Many2One(
'production.bom', "BOM", required=True, ondelete='CASCADE')
product = fields.Many2One('product.product', 'Product', required=True)
uom_category = fields.Function(fields.Many2One(
'product.uom.category', 'Uom Category'), 'on_change_with_uom_category')
uom = fields.Many2One('product.uom', 'Uom', required=True,
domain=[
('category', '=', Eval('uom_category')),
])
quantity = fields.Float('Quantity', digits='uom', required=True,
domain=['OR',
('quantity', '>=', 0),
('quantity', '=', None),
])
@classmethod
def __setup__(cls):
super(BOMInput, cls).__setup__()
cls.product.domain = [('type', 'in', cls.get_product_types())]
cls.__access__.add('bom')
@classmethod
def __register__(cls, module):
super().__register__(module)
table_h = cls.__table_handler__(module)
# Migration from 6.0: remove unique constraint
table_h.drop_constraint('product_bom_uniq')
@classmethod
def get_product_types(cls):
return ['goods', 'assets']
@fields.depends('product', 'uom')
def on_change_product(self):
if self.product:
category = self.product.default_uom.category
if not self.uom or self.uom.category != category:
self.uom = self.product.default_uom
else:
self.uom = None
@fields.depends('product')
def on_change_with_uom_category(self, name=None):
if self.product:
return self.product.default_uom.category.id
def get_rec_name(self, name):
return self.product.rec_name
@classmethod
def search_rec_name(cls, name, clause):
return [('product.rec_name',) + tuple(clause[1:])]
@classmethod
def validate(cls, boms):
super(BOMInput, cls).validate(boms)
for bom in boms:
bom.check_bom_recursion()
def check_bom_recursion(self):
'''
Check BOM recursion
'''
self.product.check_bom_recursion()
def compute_quantity(self, factor):
return self.uom.ceil(self.quantity * factor)
class BOMOutput(BOMInput):
"Bill of Material Output"
__name__ = 'production.bom.output'
_table = 'production_bom_output' # Needed to override BOMInput._table
def compute_quantity(self, factor):
return self.uom.floor(self.quantity * factor)
@classmethod
def delete(cls, outputs):
pool = Pool()
ProductBOM = pool.get('product.product-production.bom')
bom_products = [b for o in outputs for b in o.product.boms]
super(BOMOutput, cls).delete(outputs)
# Validate that output_products domain on bom is still valid
ProductBOM._validate(bom_products, ['bom'])
@classmethod
def write(cls, *args):
pool = Pool()
ProductBOM = pool.get('product.product-production.bom')
actions = iter(args)
bom_products = []
for outputs, values in zip(actions, actions):
if 'product' in values:
bom_products.extend(
[b for o in outputs for b in o.product.boms])
super().write(*args)
# Validate that output_products domain on bom is still valid
ProductBOM._validate(bom_products, ['bom'])
class BOMTree(ModelView):
'BOM Tree'
__name__ = 'production.bom.tree'
product = fields.Many2One('product.product', 'Product')
quantity = fields.Float('Quantity', digits='uom')
uom = fields.Many2One('product.uom', 'Uom')
childs = fields.One2Many('production.bom.tree', None, 'Childs')
@classmethod
def tree(cls, product, quantity, uom, bom=None):
Input = Pool().get('production.bom.input')
result = []
if bom is None:
if not product.boms:
return result
bom = product.boms[0].bom
factor = bom.compute_factor(product, quantity, uom)
for input_ in bom.inputs:
quantity = Input.compute_quantity(input_, factor)
childs = cls.tree(input_.product, quantity, input_.uom)
values = {
'product': input_.product.id,
'product.': {
'rec_name': input_.product.rec_name,
},
'quantity': quantity,
'uom': input_.uom.id,
'uom.': {
'rec_name': input_.uom.rec_name,
},
'childs': childs,
}
result.append(values)
return result
class OpenBOMTreeStart(ModelView):
'Open BOM Tree'
__name__ = 'production.bom.tree.open.start'
quantity = fields.Float('Quantity', digits='uom', required=True)
uom = fields.Many2One('product.uom', 'Unit', required=True,
domain=[
('category', '=', Eval('category')),
])
category = fields.Many2One('product.uom.category', 'Category',
readonly=True)
bom = fields.Many2One('product.product-production.bom',
'BOM', required=True, domain=[
('product', '=', Eval('product')),
])
product = fields.Many2One('product.product', 'Product', readonly=True)
class OpenBOMTreeTree(ModelView):
'Open BOM Tree'
__name__ = 'production.bom.tree.open.tree'
bom_tree = fields.One2Many('production.bom.tree', None, 'BOM Tree',
readonly=True)
@classmethod
def tree(cls, bom, product, quantity, uom):
pool = Pool()
Tree = pool.get('production.bom.tree')
childs = Tree.tree(product, quantity, uom, bom=bom)
bom_tree = [{
'product': product.id,
'product.': {
'rec_name': product.rec_name,
},
'quantity': quantity,
'uom': uom.id,
'uom.': {
'rec_name': uom.rec_name,
},
'childs': childs,
}]
return {
'bom_tree': bom_tree,
}
class OpenBOMTree(Wizard):
'Open BOM Tree'
__name__ = 'production.bom.tree.open'
start = StateView('production.bom.tree.open.start',
'production.bom_tree_open_start_view_form', [
Button('Cancel', 'end', 'tryton-cancel'),
Button('OK', 'tree', 'tryton-ok', True),
])
tree = StateView('production.bom.tree.open.tree',
'production.bom_tree_open_tree_view_form', [
Button('Change', 'start', 'tryton-back'),
Button('Close', 'end', 'tryton-close'),
])
def default_start(self, fields):
defaults = {}
product = self.record
defaults['category'] = product.default_uom.category.id
if getattr(self.start, 'uom', None):
defaults['uom'] = self.start.uom.id
else:
defaults['uom'] = product.default_uom.id
defaults['product'] = product.id
if getattr(self.start, 'bom', None):
defaults['bom'] = self.start.bom.id
elif product.boms:
defaults['bom'] = product.boms[0].id
defaults['quantity'] = getattr(self.start, 'quantity', None)
return defaults
def default_tree(self, fields):
pool = Pool()
BomTree = pool.get('production.bom.tree.open.tree')
return BomTree.tree(self.start.bom.bom, self.start.product,
self.start.quantity, self.start.uom)