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

plz can anyone told me how to modify the default "copy" duplicate function by inheretance???

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

Here is the syntax to override def copy function in your module:

def copy(self, cr, uid, id, default=None, context=None):
    """
    Duplicate record with given id updating it with default values
    :param default: dictionary of field values to override in the original values of the copied record, e.g: ``{'field_name': overriden_value, ...}``
    :type default: dictionary
    """
    if default is None:
        default = {}
    #Todo code (You can pass your value of any field in default)
    default.update({'your_field': value})
    return super(your_class_name, self).copy(cr, uid, id, default=default, context=context)

You can refer ORM Copy Method.

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

with new api:

@api.one

def copy(self, default=None):

default = dict(default or {})

default.update({

 '[field you want to change the default value of]': '[value you want]',

})

return super([class you are changing], self).copy(default)

الصورة الرمزية
إهمال

+1 for using new API

Still works in Odoo 13

Quick note that in Odoo V14 and up you should remove the @api.one because it has been deprecated. The rest still applies :)

أفضل إجابة

Write a new function that overrides the original one and calls the original with your changes:

def copy(self, cr, uid, id, default={}, context=None):
    if not default:
        default = {}
    default.update({
        '[field you want to change the default value of]': '[value you want]',
    })
    return super([class you are changing], self).copy(cr, uid, id, default, context=context)`
الصورة الرمزية
إهمال
أفضل إجابة

Hi,
I have done same in Odoo v10. May be its help to others.

    @api.one

    @api.returns('self', lambda value: value.id)

    def copy(self, default=None):

        default = dict(default or {})

        default.update({

            'invoice_date': ''})

        return super(AccountInvoice, self).copy(default)

الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
3
أغسطس 24
15000
3
يوليو 23
67708
2
يونيو 23
4121
0
أكتوبر 17
2460
1
يوليو 16
10590