[FIX] mail_template : Fixes the duplication problem on email template
authorAmit (OpenERP) <amp@tinyerp.com>
Wed, 22 Aug 2012 06:25:55 +0000 (11:55 +0530)
committerAmit (OpenERP) <amp@tinyerp.com>
Wed, 22 Aug 2012 06:25:55 +0000 (11:55 +0530)
lp bug: https://launchpad.net/bugs/1039645 fixed

bzr revid: amp@tinyerp.com-20120822062555-d7thh474wn5lisnv

addons/email_template/email_template.py

index b43b7d1..6f48d37 100644 (file)
@@ -236,6 +236,10 @@ class email_template(osv.osv):
             default = {}
         default = default.copy()
         default['name'] = template.name + _('(copy)')
+        default.update({
+            'ref_ir_act_window': False,
+            'ref_ir_value': False,
+        })
         return super(email_template, self).copy(cr, uid, id, default, context)
 
     def build_expression(self, field_name, sub_field_name, null_value):