[IMP] event: change the name of tinycrm to object_id
[odoo/odoo.git] / addons / crm / wizard / wizard_crm_new_send_email.py
index 3b08189..42b2f24 100644 (file)
@@ -2,7 +2,7 @@
 ##############################################################################
 #
 #    OpenERP, Open Source Management Solution  
-#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
+#    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>). All Rights Reserved
 #    $Id$
 #
 #    This program is free software: you can redistribute it and/or modify
@@ -46,6 +46,9 @@ email_send_form = '''<?xml version="1.0"?>
     <field name="doc2" />
     <newline/>
     <field name="doc3" />
+    <separator colspan="4" string="Set case state to"/>
+    <newline/>
+    <field name="state" />
 </form>'''
 
 email_send_fields = {
@@ -57,6 +60,8 @@ email_send_fields = {
     'doc1' :  {'string':"Attachment1", 'type':'binary'},
     'doc2' :  {'string':"Attachment2", 'type':'binary'},
     'doc3' :  {'string':"Attachment3", 'type':'binary'},
+    'state' :  {'string':"Set State to", 'type':'selection', 'required' : True, 'default' :'done',\
+                    'selection': [('unchanged','Unchanged'),('done','Done'),('pending','Pending')]},
 }
 
 # this sends an email to ALL the addresses of the selected partners.
@@ -65,10 +70,9 @@ def _mass_mail_send(self, cr, uid, data, context):
     attach = map(lambda x: x and ('Attachment'+str(attach.index(x)+1), base64.decodestring(x)), attach)
 
     pool = pooler.get_pool(cr.dbname)
-    case_pool=pool.get('crm.case')
+    case_pool=pool.get(data.get('model'))
 
     case = case_pool.browse(cr,uid,data['ids'])[0]
-    case_pool._history(cr, uid, [case], _('Send'), history=True, email=False)
     case_pool.write(cr, uid, [case.id], {
                 'som': False,
                 'canal_id': False,
@@ -76,34 +80,48 @@ def _mass_mail_send(self, cr, uid, data, context):
     emails = [data['form']['to']] + (data['form']['cc'] or '').split(',')
     emails = filter(None, emails)
     body = data['form']['text']
+    if not case.user_id.address_id.email:
+        raise wizard.except_wizard(_('Warning!'),_("Please specify user's email address !"))
     if case.user_id.signature:
         body += '\n\n%s' % (case.user_id.signature)
+    case_pool._history(cr, uid, [case], _('Send'), history=True, email=False, details=body)
     flag = tools.email_send(
         case.user_id.address_id.email,
         emails,
         data['form']['subject'],
-        body,
         case_pool.format_body(body),
         attach=attach,
         reply_to=case.section_id.reply_to,
-        tinycrm=str(case.id)
+        
+        openobject_id=str(case.id)
     )
     if flag:
-        raise wizard.except_wizard(_('Message!'),("Email Successfully Sent..!!"))   
+        if data['form']['state'] == 'unchanged':
+            pass
+        elif data['form']['state'] == 'done':
+            case_pool.case_close(cr, uid, data['ids'])
+        elif data['form']['state'] == 'pending':
+            case_pool.case_pending(cr, uid, data['ids'])
+        cr.commit()
     else:
-        raise wizard.except_wizard(_('Warning!'),("Email is not sent Successfully"))
+        raise wizard.except_wizard(_('Warning!'),_("Email not sent !"))
     return {}
 
 def _get_info(self, cr, uid, data, context):
     if not data['id']:
         return {}
+        
     pool = pooler.get_pool(cr.dbname)
-    case = pool.get('crm.case').browse(cr,uid,data['ids'])[0]
-    if not case.email_from:
-        raise wizard.except_wizard(_('Error'),_('You must put a Partner eMail to use this action!'))
+    case = pool.get(data.get('model')).browse(cr, uid, data['id'])
+
     if not case.user_id:
         raise wizard.except_wizard(_('Error'),_('You must define a responsible user for this case in order to use this action!'))
-    return {'to': case.email_from,'subject': '['+str(case.id)+'] '+case.name,'cc': case.email_cc or ''}
+        
+    return {
+        'to': case.email_from, 
+        'subject': case.name, 
+        'cc': case.email_cc or ''
+    }
     
 class wizard_send_mail(wizard.interface):
     states = {