~vauxoo/addons-vauxoo/7.0-project_issue_conf-dev_luis

« back to all changes in this revision

Viewing changes to product_customs_rate/product.py

 
[MERGE] Merge to add all changes in trunk series

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
    _name = 'product.template'
29
29
    _inherit = 'product.template'
30
30
    _columns = {
31
 
        'customs_rate_id': fields.many2one('product.customs.rate', 'Customs Rate', domain=[('type', '=', 'normal')]),
 
31
        'customs_rate_id': fields.many2one('product.customs.rate',
 
32
                                           'Customs Rate',
 
33
                                           domain=[('type', '=', 'normal')]),
32
34
    }
33