~openerp-commiter/openobject-addons/extra-6.0

« back to all changes in this revision

Viewing changes to mrp_bom_customization/sale.py

- renamed bom_customization into mrp_bom_customization: indeed it makes it more explicit it's a mrp module, better renaming before it's too late.
- added a few comments, especially about the product_variant_multi dependency which is questionnable

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
    
29
29
    _columns = {
30
30
        'mrp_production_id': fields.many2one('mrp.production', 'Related Production Order'),
31
 
        'sale_order_line_customizations': fields.one2many('bom_customization.sale_order_line_customizations', 'sale_order_line_id', "Sale order line customization"),
 
31
        'sale_order_line_customizations': fields.one2many('mrp_bom_customization.sale_order_line_customizations', 'sale_order_line_id', "Sale order line customization"),
32
32
    }
33
33
sale_order_line()
 
 
b'\\ No newline at end of file'