set the current value for the state field
authorStephane Wirtel <stephane@tinyerp.com>
Mon, 20 Oct 2008 13:22:12 +0000 (15:22 +0200)
committerStephane Wirtel <stephane@tinyerp.com>
Mon, 20 Oct 2008 13:22:12 +0000 (15:22 +0200)
bzr revid: stephane@tinyerp.com-20081020132212-8te4p08xxmq0y5gl

addons/base_contact/base_contact.py

index 0547703..2a6dc55 100644 (file)
@@ -140,7 +140,7 @@ class res_partner_job(osv.osv):
 
     _defaults = {
         'sequence_contact' : lambda *a: 0,
-        'state' : lambda *a: 'past', 
+        'state' : lambda *a: 'current', 
     }
 res_partner_job()