Merge pull request #357 from WizKeeD/mrp_subproduct_unlink_fix
authorodony <odo@openerp.com>
Thu, 5 Jun 2014 22:01:39 +0000 (00:01 +0200)
committerodony <odo@openerp.com>
Thu, 5 Jun 2014 22:01:39 +0000 (00:01 +0200)
[FIX] Added cascade on subproduct so they get removed with parent bom

addons/mrp_byproduct/mrp_byproduct.py

index 91ea997..fc6069f 100644 (file)
@@ -35,7 +35,7 @@ class mrp_subproduct(osv.osv):
   'Fixed' depicts a situation where the quantity of created byproduct is always equal to the quantity set on the BoM, regardless of how many are created in the production order.\
   By opposition, 'Variable' means that the quantity will be computed as\
     '(quantity of byproduct set on the BoM / quantity of manufactured product set on the BoM * quantity of manufactured product in the production order.)'"),
-        'bom_id': fields.many2one('mrp.bom', 'BoM'),
+        'bom_id': fields.many2one('mrp.bom', 'BoM', ondelete='cascade'),
     }
     _defaults={
         'subproduct_type': 'variable',