تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
2 الردود
17144 أدوات العرض

There is a validation rule on BOM , such that the same product cannot be in a BOM more than once. I would like to allow this

(see question http://help.openerp.com/question/20560/bom-that-allows-for-repeating-the-same-product-or-show-the-assembly-of-the-product/ )

Is there an easy way to remove this validation / constraint? Will it screw up other things?

Thanks

الصورة الرمزية
إهمال
أفضل إجابة

Hi,

the only way to manage your case this is a comment line of Python code :

in file mrp/mrp.py line 264 :

  262.  _constraints = [
  263.   (_check_recursion, 'Error ! You cannot create recursive BoM.', ['parent_id']),
  264.  #(_check_product, 'BoM line product should not be same as BoM product.', ['product_id']),
         ]

but it is not professional, the best way is to create a new module to do that

الصورة الرمزية
إهمال
أفضل إجابة

To redefine a python constraint, you can override it by setting the same method function name:

In a module puts:

 

    class mrp_bom(orm.Model):

        _inherit = 'mrp.bom'

 

        def _check_product(self, cr, uid, ids, context=None):

            return True

 

        _constraints = [(_check_product, 'Override of _check_product constraint', ['product_id'])]

 

الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
0
مارس 15
3073
0
أغسطس 25
274
2
يوليو 24
41
1
فبراير 24
2706
3
ديسمبر 23
2074