revert changes 2324
[odoo/odoo.git] / addons / product / product.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 from osv import osv, fields
24 import pooler
25
26 import math
27 from _common import rounding
28
29 from tools import config
30 from tools.translate import _
31
32 def is_pair(x):
33     return not x%2
34
35 #----------------------------------------------------------
36 # UOM
37 #----------------------------------------------------------
38
39 class product_uom_categ(osv.osv):
40     _name = 'product.uom.categ'
41     _description = 'Product uom categ'
42     _columns = {
43         'name': fields.char('Name', size=64, required=True, translate=True),
44     }
45 product_uom_categ()
46
47 class product_uom(osv.osv):
48     _name = 'product.uom'
49     _description = 'Product Unit of Measure'
50
51     def _factor(self, cursor, user, ids, name, arg, context):
52         res = {}
53         for uom in self.browse(cursor, user, ids, context=context):
54             if uom.factor:
55                 if uom.factor_inv_data:
56                     res[uom.id] = uom.factor_inv_data
57                 else:
58                     res[uom.id] = round(1 / uom.factor, 6)
59             else:
60                 res[uom.id] = 0.0
61         return res
62
63     def _factor_inv(self, cursor, user, id, name, value, arg, context):
64         ctx = context.copy()
65         if 'read_delta' in ctx:
66             del ctx['read_delta']
67         if value:
68             data = 0.0
69             if round(1 / round(1/value, 6), 6) != value:
70                 data = value
71             self.write(cursor, user, id, {
72                 'factor': round(1/value, 6),
73                 'factor_inv_data': data,
74                 }, context=ctx)
75         else:
76             self.write(cursor, user, id, {
77                 'factor': 0.0,
78                 'factor_inv_data': 0.0,
79                 }, context=ctx)
80
81     _columns = {
82         'name': fields.char('Name', size=64, required=True, translate=True),
83         'category_id': fields.many2one('product.uom.categ', 'UoM Category', required=True, ondelete='cascade',
84             help="Unit of Measure of a category can be converted between each others in the same category."),
85         'factor': fields.float('Rate', digits=(12, 6), required=True,
86             help='The coefficient for the formula:\n' \
87                     '1 (base unit) = coeff (this unit). Rate = 1 / Factor.'),
88         'factor_inv': fields.function(_factor, digits=(12, 6),
89             method=True, string='Factor',
90             help='The coefficient for the formula:\n' \
91                     'coeff (base unit) = 1 (this unit). Factor = 1 / Rate.'),
92         'factor_inv_data': fields.float('Factor', digits=(12, 6)),
93         'rounding': fields.float('Rounding Precision', digits=(16, 3), required=True,
94             help="The computed quantity will be a multiple of this value. Use 1.0 for products that can not be split."),
95         'active': fields.boolean('Active'),
96     }
97
98     _defaults = {
99         'factor': lambda *a: 1.0,
100         'factor_inv': lambda *a: 1.0,
101         'active': lambda *a: 1,
102         'rounding': lambda *a: 0.01,
103     }
104
105     def _compute_qty(self, cr, uid, from_uom_id, qty, to_uom_id=False):
106         if not from_uom_id or not qty or not to_uom_id:
107             return qty
108         uoms = self.browse(cr, uid, [from_uom_id, to_uom_id])
109         if uoms[0].id == from_uom_id:
110             from_unit, to_unit = uoms[0], uoms[-1]
111         else:
112             from_unit, to_unit = uoms[-1], uoms[0]
113         return self._compute_qty_obj(cr, uid, from_unit, qty, to_unit)
114
115     def _compute_qty_obj(self, cr, uid, from_unit, qty, to_unit, context={}):
116         if from_unit.category_id.id <> to_unit.category_id.id:
117             return qty
118         if from_unit.factor_inv_data:
119             amount = qty * from_unit.factor_inv_data
120         else:
121             amount = qty / from_unit.factor
122         if to_unit:
123             if to_unit.factor_inv_data:
124                 amount = rounding(amount / to_unit.factor_inv_data, to_unit.rounding)
125             else:
126                 amount = rounding(amount * to_unit.factor, to_unit.rounding)
127         return amount
128
129     def _compute_price(self, cr, uid, from_uom_id, price, to_uom_id=False):
130         if not from_uom_id or not price or not to_uom_id:
131             return price
132         uoms = self.browse(cr, uid, [from_uom_id, to_uom_id])
133         if uoms[0].id == from_uom_id:
134             from_unit, to_unit = uoms[0], uoms[-1]
135         else:
136             from_unit, to_unit = uoms[-1], uoms[0]
137         if from_unit.category_id.id <> to_unit.category_id.id:
138             return price
139         if from_unit.factor_inv_data:
140             amount = price / from_unit.factor_inv_data
141         else:
142             amount = price * from_unit.factor
143         if to_uom_id:
144             if to_unit.factor_inv_data:
145                 amount = amount * to_unit.factor_inv_data
146             else:
147                 amount = amount / to_unit.factor
148         return amount
149
150     def onchange_factor_inv(self, cursor, user, ids, value):
151         if value == 0.0:
152             return {'value': {'factor': 0}}
153         return {'value': {'factor': round(1/value, 6)}}
154
155     def onchange_factor(self, cursor, user, ids, value):
156         if value == 0.0:
157             return {'value': {'factor_inv': 0}}
158         return {'value': {'factor_inv': round(1/value, 6)}}
159
160 product_uom()
161
162
163 class product_ul(osv.osv):
164     _name = "product.ul"
165     _description = "Shipping Unit"
166     _columns = {
167         'name' : fields.char('Name', size=64,select=True, required=True, translate=True),
168         'type' : fields.selection([('unit','Unit'),('pack','Pack'),('box', 'Box'), ('palet', 'Pallet')], 'Type', required=True),
169     }
170 product_ul()
171
172
173 #----------------------------------------------------------
174 # Categories
175 #----------------------------------------------------------
176 class product_category(osv.osv):
177
178     def name_get(self, cr, uid, ids, context=None):
179         if not len(ids):
180             return []
181         reads = self.read(cr, uid, ids, ['name','parent_id'], context)
182         res = []
183         for record in reads:
184             name = record['name']
185             if record['parent_id']:
186                 name = record['parent_id'][1]+' / '+name
187             res.append((record['id'], name))
188         return res
189
190     def _name_get_fnc(self, cr, uid, ids, prop, unknow_none, context):
191         res = self.name_get(cr, uid, ids, context)
192         return dict(res)
193
194     _name = "product.category"
195     _description = "Product Category"
196     _columns = {
197         'name': fields.char('Name', size=64, required=True, translate=True),
198         'complete_name': fields.function(_name_get_fnc, method=True, type="char", string='Name'),
199         'parent_id': fields.many2one('product.category','Parent Category', select=True),
200         'child_id': fields.one2many('product.category', 'parent_id', string='Child Categories'),
201         'sequence': fields.integer('Sequence'),
202     }
203     _order = "sequence"
204     def _check_recursion(self, cr, uid, ids):
205         level = 100
206         while len(ids):
207             cr.execute('select distinct parent_id from product_category where id in ('+','.join(map(str,ids))+')')
208             ids = filter(None, map(lambda x:x[0], cr.fetchall()))
209             if not level:
210                 return False
211             level -= 1
212         return True
213
214     _constraints = [
215         (_check_recursion, 'Error ! You can not create recursive categories.', ['parent_id'])
216     ]
217     def child_get(self, cr, uid, ids):
218         return [ids]
219
220 product_category()
221
222
223 #----------------------------------------------------------
224 # Products
225 #----------------------------------------------------------
226 class product_template(osv.osv):
227     _name = "product.template"
228     _description = "Product Template"
229     def _calc_seller_delay(self, cr, uid, ids, name, arg, context={}):
230         result = {}
231         for product in self.browse(cr, uid, ids, context):
232             if product.seller_ids:
233                 result[product.id] = product.seller_ids[0].delay
234             else:
235                 result[product.id] = 1
236         return result
237
238     _columns = {
239         'name': fields.char('Name', size=128, required=True, translate=True, select=True),
240         'product_manager': fields.many2one('res.users','Product Manager'),
241         'description': fields.text('Description',translate=True),
242         'description_purchase': fields.text('Purchase Description',translate=True),
243         'description_sale': fields.text('Sale Description',translate=True),
244         'type': fields.selection([('product','Stockable Product'),('consu', 'Consumable'),('service','Service')], 'Product Type', required=True, help="Will change the way procurements are processed. Consumables are stockable products with infinite stock, or for use when you have no stock management in the system."),
245         'supply_method': fields.selection([('produce','Produce'),('buy','Buy')], 'Supply method', required=True, help="Produce will generate production order or tasks, according to the product type. Purchase will trigger purchase orders when requested."),
246         'sale_delay': fields.float('Customer Lead Time', help="This is the average time between the confirmation of the customer order and the delivery of the finished products. It's the time you promise to your customers."),
247         'produce_delay': fields.float('Manufacturing Lead Time', help="Average time to produce this product. This is only for the production order and, if it is a multi-level bill of material, it's only for the level of this product. Different delays will be summed for all levels and purchase orders."),
248         'procure_method': fields.selection([('make_to_stock','Make to Stock'),('make_to_order','Make to Order')], 'Procure Method', required=True, help="'Make to Stock': When needed, take from the stock or wait until re-supplying. 'Make to Order': When needed, purchase or produce for the procurement request."),
249         'rental': fields.boolean('Rentable Product'),
250         'categ_id': fields.many2one('product.category','Category', required=True, change_default=True),
251         'list_price': fields.float('Sale Price', digits=(16, int(config['price_accuracy'])), help="Base price for computing the customer price. Sometimes called the catalog price."),
252         'standard_price': fields.float('Cost Price', required=True, digits=(16, int(config['price_accuracy'])), help="The cost of the product for accounting stock valuation. It can serves as a base price for supplier price."),
253         'volume': fields.float('Volume', help="The volume in m3."),
254         'weight': fields.float('Gross weight', help="The gross weight in Kg."),
255         'weight_net': fields.float('Net weight', help="The net weight in Kg."),
256         'cost_method': fields.selection([('standard','Standard Price'), ('average','Average Price')], 'Costing Method', required=True,
257             help="Standard Price: the cost price is fixed and recomputed periodically (usually at the end of the year), Average Price: the cost price is recomputed at each reception of products."),
258         'warranty': fields.float('Warranty (months)'),
259         'sale_ok': fields.boolean('Can be sold', help="Determine if the product can be visible in the list of product within a selection from a sale order line."),
260         'purchase_ok': fields.boolean('Can be Purchased', help="Determine if the product is visible in the list of products within a selection from a purchase order line."),
261         'state': fields.selection([('',''),('draft', 'In Development'),('sellable','In Production'),('end','End of Lifecycle'),('obsolete','Obsolete')], 'Status', help="Tells the user if he can use the product or not."),
262         'uom_id': fields.many2one('product.uom', 'Default UoM', required=True, help="Default Unit of Measure used for all stock operation."),
263         'uom_po_id': fields.many2one('product.uom', 'Purchase UoM', required=True, help="Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure."),
264         'uos_id' : fields.many2one('product.uom', 'Unit of Sale',
265             help='Used by companies that manages two unit of measure: invoicing and stock management. For example, in food industries, you will manage a stock of ham but invoice in Kg. Keep empty to use the default UOM.'),
266         'uos_coeff': fields.float('UOM -> UOS Coeff', digits=(16,4),
267             help='Coefficient to convert UOM to UOS\n'
268             ' uom = uos * coeff'),
269         'mes_type': fields.selection((('fixed', 'Fixed'), ('variable', 'Variable')), 'Measure Type', required=True),
270         'seller_delay': fields.function(_calc_seller_delay, method=True, type='integer', string='Supplier Lead Time', help="This is the average delay in days between the purchase order confirmation and the reception of goods for this product and for the default supplier. It is used by the scheduler to order requests based on reordering delays."),
271         'seller_ids': fields.one2many('product.supplierinfo', 'product_id', 'Partners'),
272         'loc_rack': fields.char('Rack', size=16),
273         'loc_row': fields.char('Row', size=16),
274         'loc_case': fields.char('Case', size=16),
275         'company_id': fields.many2one('res.company', 'Company'),
276     }
277
278     def _get_uom_id(self, cr, uid, *args):
279         cr.execute('select id from product_uom order by id limit 1')
280         res = cr.fetchone()
281         return res and res[0] or False
282
283     def _default_category(self, cr, uid, context={}):
284         if 'categ_id' in context and context['categ_id']:
285             return context['categ_id']
286         return False
287
288     def onchange_uom(self, cursor, user, ids, uom_id,uom_po_id):
289         if uom_id and uom_po_id:
290             uom_obj=self.pool.get('product.uom')
291             uom=uom_obj.browse(cursor,user,[uom_id])[0]
292             uom_po=uom_obj.browse(cursor,user,[uom_po_id])[0]
293             if uom.category_id.id != uom_po.category_id.id:
294                 return {'value': {'uom_po_id': uom_id}}
295         return False
296
297     _defaults = {
298         'company_id': lambda self, cr, uid, context: \
299                 self.pool.get('res.users').browse(cr, uid, uid,
300                     context=context).company_id.id,
301         'type': lambda *a: 'product',
302         'list_price': lambda *a: 1,
303         'cost_method': lambda *a: 'standard',
304         'supply_method': lambda *a: 'buy',
305         'standard_price': lambda *a: 1,
306         'sale_ok': lambda *a: 1,
307         'sale_delay': lambda *a: 7,
308         'produce_delay': lambda *a: 1,
309         'purchase_ok': lambda *a: 1,
310         'procure_method': lambda *a: 'make_to_stock',
311         'uom_id': _get_uom_id,
312         'uom_po_id': _get_uom_id,
313         'uos_coeff' : lambda *a: 1.0,
314         'mes_type' : lambda *a: 'fixed',
315         'categ_id' : _default_category,
316     }
317
318     def _check_uom(self, cursor, user, ids):
319         for product in self.browse(cursor, user, ids):
320             if product.uom_id.category_id.id <> product.uom_po_id.category_id.id:
321                 return False
322         return True
323
324     def _check_uos(self, cursor, user, ids):
325         for product in self.browse(cursor, user, ids):
326             if product.uos_id \
327                     and product.uos_id.category_id.id \
328                     == product.uom_id.category_id.id:
329                 return False
330         return True
331
332     _constraints = [
333         (_check_uos, 'Error: UOS must be in a different category than the UOM', ['uos_id']),
334         (_check_uom, 'Error: The default UOM and the purchase UOM must be in the same category.', ['uom_id']),
335     ]
336
337     def name_get(self, cr, user, ids, context={}):
338         if 'partner_id' in context:
339             pass
340         return super(product_template, self).name_get(cr, user, ids, context)
341
342 product_template()
343
344 class product_product(osv.osv):
345     def view_header_get(self, cr, uid, view_id, view_type, context):
346         res = super(product_product, self).view_header_get(cr, uid, view_id, view_type, context)
347         if (context.get('categ_id', False)):
348             return _('Products: ')+self.pool.get('product.category').browse(cr, uid, context['categ_id'], context).name
349         return res
350
351     def _product_price(self, cr, uid, ids, name, arg, context={}):
352         res = {}
353         quantity = context.get('quantity', 1)
354         pricelist = context.get('pricelist', False)
355         if pricelist:
356             for id in ids:
357                 try:
358                     price = self.pool.get('product.pricelist').price_get(cr,uid,[pricelist], id, quantity, context=context)[pricelist]
359                 except:
360                     price = 0.0
361                 res[id] = price
362         for id in ids:
363             res.setdefault(id, 0.0)
364         return res
365
366     def _get_product_available_func(states, what):
367         def _product_available(self, cr, uid, ids, name, arg, context={}):
368             return {}.fromkeys(ids, 0.0)
369         return _product_available
370
371     _product_qty_available = _get_product_available_func(('done',), ('in', 'out'))
372     _product_virtual_available = _get_product_available_func(('confirmed','waiting','assigned','done'), ('in', 'out'))
373     _product_outgoing_qty = _get_product_available_func(('confirmed','waiting','assigned'), ('out',))
374     _product_incoming_qty = _get_product_available_func(('confirmed','waiting','assigned'), ('in',))
375
376     def _product_lst_price(self, cr, uid, ids, name, arg, context=None):
377         res = {}
378         product_uom_obj = self.pool.get('product.uom')
379         for id in ids:
380             res.setdefault(id, 0.0)
381         for product in self.browse(cr, uid, ids, context=context):
382             if 'uom' in context:
383                 uom = product.uos_id or product.uom_id
384                 res[product.id] = product_uom_obj._compute_price(cr, uid,
385                         uom.id, product.list_price, context['uom'])
386             else:
387                 res[product.id] = product.list_price
388         return res
389
390     def _get_partner_code_name(self, cr, uid, ids, product_id, partner_id, context={}):
391         product = self.browse(cr, uid, [product_id], context)[0]
392         for supinfo in product.seller_ids:
393             if supinfo.name.id == partner_id:
394                 return {'code': supinfo.product_code, 'name': supinfo.product_name}
395         return {'code' : product.default_code, 'name' : product.name}
396
397     def _product_code(self, cr, uid, ids, name, arg, context={}):
398         res = {}
399         for p in self.browse(cr, uid, ids, context):
400             res[p.id] = self._get_partner_code_name(cr, uid, [], p.id, context.get('partner_id', None), context)['code']
401         return res
402
403     def _product_partner_ref(self, cr, uid, ids, name, arg, context={}):
404         res = {}
405         for p in self.browse(cr, uid, ids, context):
406             data = self._get_partner_code_name(cr, uid, [], p.id, context.get('partner_id', None), context)
407             if not data['code']:
408                 data['name'] = p.code
409             if not data['name']:
410                 data['name'] = p.name
411             res[p.id] = (data['code'] and ('['+data['code']+'] ') or '') + \
412                     (data['name'] or '')
413         return res
414
415     _defaults = {
416         'active': lambda *a: 1,
417         'price_extra': lambda *a: 0.0,
418         'price_margin': lambda *a: 1.0,
419     }
420
421     _name = "product.product"
422     _description = "Product"
423     _table = "product_product"
424     _inherits = {'product.template': 'product_tmpl_id'}
425     _columns = {
426         'qty_available': fields.function(_product_qty_available, method=True, type='float', string='Real Stock'),
427         'virtual_available': fields.function(_product_virtual_available, method=True, type='float', string='Virtual Stock'),
428         'incoming_qty': fields.function(_product_incoming_qty, method=True, type='float', string='Incoming'),
429         'outgoing_qty': fields.function(_product_outgoing_qty, method=True, type='float', string='Outgoing'),
430         'price': fields.function(_product_price, method=True, type='float', string='Customer Price', digits=(16, int(config['price_accuracy']))),
431         'lst_price' : fields.function(_product_lst_price, method=True, type='float', string='List Price', digits=(16, int(config['price_accuracy']))),
432         'code': fields.function(_product_code, method=True, type='char', string='Code'),
433         'partner_ref' : fields.function(_product_partner_ref, method=True, type='char', string='Customer ref'),
434         'default_code' : fields.char('Code', size=64),
435         'active': fields.boolean('Active'),
436         'variants': fields.char('Variants', size=64),
437         'product_tmpl_id': fields.many2one('product.template', 'Product Template', required=True),
438         'ean13': fields.char('EAN13', size=13),
439         'packaging' : fields.one2many('product.packaging', 'product_id', 'Logistical Units', help="Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module."),
440         'price_extra': fields.float('Variant Price Extra', digits=(16, int(config['price_accuracy']))),
441         'price_margin': fields.float('Variant Price Margin', digits=(16, int(config['price_accuracy']))),
442     }
443
444     def onchange_uom(self, cursor, user, ids, uom_id,uom_po_id):
445         if uom_id and uom_po_id:
446             uom_obj=self.pool.get('product.uom')
447             uom=uom_obj.browse(cursor,user,[uom_id])[0]
448             uom_po=uom_obj.browse(cursor,user,[uom_po_id])[0]
449             if uom.category_id.id != uom_po.category_id.id:
450                 return {'value': {'uom_po_id': uom_id}}
451         return False
452
453     def _check_ean_key(self, cr, uid, ids):
454         for partner in self.browse(cr, uid, ids):
455             if not partner.ean13:
456                 continue
457             if len(partner.ean13) <> 13:
458                 return False
459             try:
460                 int(partner.ean13)
461             except:
462                 return False
463             sum=0
464             for i in range(12):
465                 if is_pair(i):
466                     sum += int(partner.ean13[i])
467                 else:
468                     sum += 3 * int(partner.ean13[i])
469             check = int(math.ceil(sum / 10.0) * 10 - sum)
470             if check != int(partner.ean13[12]):
471                 return False
472         return True
473
474     _constraints = [(_check_ean_key, 'Error: Invalid ean code', ['ean13'])]
475
476     def on_order(self, cr, uid, ids, orderline, quantity):
477         pass
478
479     def name_get(self, cr, user, ids, context={}):
480         if not len(ids):
481             return []
482         def _name_get(d):
483             #name = self._product_partner_ref(cr, user, [d['id']], '', '', context)[d['id']]
484             #code = self._product_code(cr, user, [d['id']], '', '', context)[d['id']]
485             name = d.get('name','')
486             code = d.get('default_code',False)
487             if code:
488                 name = '[%s] %s' % (code,name)
489             if d['variants']:
490                 name = name + ' - %s' % (d['variants'],)
491             return (d['id'], name)
492         result = map(_name_get, self.read(cr, user, ids, ['variants','name','default_code'], context))
493         return result
494
495     def name_search(self, cr, user, name='', args=None, operator='ilike', context=None, limit=80):
496         if not args:
497             args=[]
498         if not context:
499             context={}
500         ids = self.search(cr, user, [('default_code','=',name)]+ args, limit=limit, context=context)
501         if not len(ids):
502             ids = self.search(cr, user, [('ean13','=',name)]+ args, limit=limit, context=context)
503         if not len(ids):
504             ids = self.search(cr, user, [('default_code',operator,name)]+ args, limit=limit, context=context)
505             ids += self.search(cr, user, [('name',operator,name)]+ args, limit=limit, context=context)
506         result = self.name_get(cr, user, ids, context)
507         return result
508
509     #
510     # Could be overrided for variants matrices prices
511     #
512     def price_get(self, cr, uid, ids, ptype='list_price', context={}):
513         res = {}
514         product_uom_obj = self.pool.get('product.uom')
515
516         for product in self.browse(cr, uid, ids, context=context):
517             res[product.id] = product[ptype] or 0.0
518             if ptype == 'list_price':
519                 res[product.id] = (res[product.id] * product.price_margin) + \
520                         product.price_extra
521             if 'uom' in context:
522                 uom = product.uos_id or product.uom_id
523                 res[product.id] = product_uom_obj._compute_price(cr, uid,
524                         uom.id, res[product.id], context['uom'])
525         return res
526
527     def copy(self, cr, uid, id, default=None, context=None):
528         if not context:
529             context={}
530
531         if ('variant' in context) and context['variant']:
532             fields = ['product_tmpl_id', 'active', 'variants', 'default_code',
533                     'price_margin', 'price_extra']
534             data = self.read(cr, uid, id, fields=fields, context=context)
535             for f in fields:
536                 if f in default:
537                     data[f] = default[f]
538             data['product_tmpl_id'] = data.get('product_tmpl_id', False) \
539                     and data['product_tmpl_id'][0]
540             del data['id']
541             return self.create(cr, uid, data)
542         else:
543             return super(product_product, self).copy(cr, uid, id, default=default,
544                     context=context)
545 product_product()
546
547 class product_packaging(osv.osv):
548     _name = "product.packaging"
549     _description = "Packaging"
550     _rec_name = 'ean'
551     _columns = {
552         'sequence': fields.integer('Sequence'),
553         'name' : fields.char('Description', size=64),
554         'qty' : fields.float('Quantity by Package',
555             help="The total number of products you can put by palet or box."),
556         'ul' : fields.many2one('product.ul', 'Type of Package', required=True),
557         'ul_qty' : fields.integer('Package by layer'),
558         'rows' : fields.integer('Number of Layer', required=True,
559             help='The number of layer on a palet or box'),
560         'product_id' : fields.many2one('product.product', 'Product', select=1, ondelete='cascade', required=True),
561         'ean' : fields.char('EAN', size=14,
562             help="The EAN code of the package unit."),
563         'code' : fields.char('Code', size=14,
564             help="The code of the transport unit."),
565         'weight': fields.float('Total Package Weight',
566             help='The weight of a full of products palet or box.'),
567         'weight_ul': fields.float('Empty Package Weight',
568             help='The weight of the empty UL'),
569         'height': fields.float('Height', help='The height of the package'),
570         'width': fields.float('Width', help='The width of the package'),
571         'length': fields.float('Length', help='The length of the package'),
572     }
573
574     def _get_1st_ul(self, cr, uid, context={}):
575         cr.execute('select id from product_ul order by id asc limit 1')
576         res = cr.fetchone()
577         return (res and res[0]) or False
578
579     _defaults = {
580         'rows' : lambda *a : 3,
581         'sequence' : lambda *a : 1,
582         'ul' : _get_1st_ul,
583     }
584
585     def checksum(ean):
586         salt = '31' * 6 + '3'
587         sum = 0
588         for ean_part, salt_part in zip(ean, salt):
589             sum += int(ean_part) * int(salt_part)
590         return (10 - (sum % 10)) % 10
591     checksum = staticmethod(checksum)
592
593 product_packaging()
594
595
596 class product_supplierinfo(osv.osv):
597     _name = "product.supplierinfo"
598     _description = "Information about a product supplier"
599     _columns = {
600         'name' : fields.many2one('res.partner', 'Partner', required=True, ondelete='cascade', help="Supplier of this product"),
601         'product_name': fields.char('Partner Product Name', size=128, help="Name of the product for this partner, will be used when printing a request for quotation. Keep empty to use the internal one."),
602         'product_code': fields.char('Partner Product Code', size=64, help="Code of the product for this partner, will be used when printing a request for quotation. Keep empty to use the internal one."),
603         'sequence' : fields.integer('Priority'),
604         'qty' : fields.float('Minimal Quantity', required=True, help="The minimal quantity to purchase for this supplier, expressed in the default unit of measure."),
605         'product_id' : fields.many2one('product.template', 'Product', required=True, ondelete='cascade', select=True),
606         'delay' : fields.integer('Delivery Delay', required=True, help="Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning."),
607         'pricelist_ids': fields.one2many('pricelist.partnerinfo', 'suppinfo_id', 'Supplier Pricelist'),
608     }
609     _defaults = {
610         'qty': lambda *a: 0.0,
611         'sequence': lambda *a: 1,
612         'delay': lambda *a: 1,
613     }
614     _order = 'sequence'
615 product_supplierinfo()
616
617
618 class pricelist_partnerinfo(osv.osv):
619     _name = 'pricelist.partnerinfo'
620     _columns = {
621         'name': fields.char('Description', size=64),
622         'suppinfo_id': fields.many2one('product.supplierinfo', 'Partner Information', required=True, ondelete='cascade'),
623         'min_quantity': fields.float('Quantity', required=True),
624         'price': fields.float('Unit Price', required=True, digits=(16, int(config['price_accuracy']))),
625     }
626     _order = 'min_quantity asc'
627 pricelist_partnerinfo()
628
629
630
631 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
632