~technofluid-team/openobject-addons/technofluid_multiple_installations

« back to all changes in this revision

Viewing changes to marketing/campaign/wizard/wizard_campaign_email.py

  • Committer: pinky
  • Date: 2006-12-07 13:41:40 UTC
  • Revision ID: pinky-dedd7f8a42bd4557112a0513082691b8590ad6cc
New trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################################
 
2
#
 
3
# Copyright (c) 2004-2006 TINY SPRL. (http://tiny.be) All Rights Reserved.
 
4
#
 
5
# WARNING: This program as such is intended to be used by professional
 
6
# programmers who take the whole responsability of assessing all potential
 
7
# consequences resulting from its eventual inadequacies and bugs
 
8
# End users who are looking for a ready-to-use solution with commercial
 
9
# garantees and support are strongly adviced to contract a Free Software
 
10
# Service Company
 
11
#
 
12
# This program is Free Software; you can redistribute it and/or
 
13
# modify it under the terms of the GNU General Public License
 
14
# as published by the Free Software Foundation; either version 2
 
15
# of the License, or (at your option) any later version.
 
16
#
 
17
# This program is distributed in the hope that it will be useful,
 
18
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
# GNU General Public License for more details.
 
21
#
 
22
# You should have received a copy of the GNU General Public License
 
23
# along with this program; if not, write to the Free Software
 
24
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
25
#
 
26
##############################################################################
 
27
 
 
28
import wizard
 
29
import netsvc
 
30
 
 
31
email_send_form = '''<?xml version="1.0"?>
 
32
<form string="Send an E-Mail">
 
33
        <separator string="Header" colspan="4"/>
 
34
        <field name="from"/>
 
35
        <field name="on_error"/>
 
36
        <newline/>
 
37
        <field name="subject" colspan="3"/>
 
38
        <newline/>
 
39
        <separator string="Email" colspan="4"/>
 
40
        <field name="body" colspan="3"/>
 
41
</form>'''
 
42
 
 
43
email_send_fields = {
 
44
        'from': {'string':'From', 'type':'char', 'required':True},
 
45
        'on_error': {'string':'Error Return To', 'type':'char', 'required':True},
 
46
        'subject': {'string':'Subject', 'type':'char', 'required':True},
 
47
        'body': {'string':'Email Message', 'type':'text', 'required':True}
 
48
}
 
49
 
 
50
def _email_send(self, cr, uid, data, context):
 
51
        service = netsvc.LocalService("object_proxy")
 
52
        res = service.execute(cr.dbname, uid, 'campaign.partner', 'read', data['ids'], ['partner_id'])
 
53
        partners_id = map(lambda r: r['partner_id'][0], res)
 
54
        form = data['form']
 
55
        nbr = service.execute(cr.dbname, uid, 'res.partner', 'email_send', partners_id, form['from'], form['subject'], form['body'], form['on_error'])
 
56
        return {'email_sent': nbr}
 
57
 
 
58
class part_email(wizard.interface):
 
59
        states = {
 
60
                'init': {
 
61
                        'actions': [],
 
62
                        'result': {'type':'form', 'arch':email_send_form, 'fields':email_send_fields, 'state':[('end','Cancel'),('send','Send Email')]}
 
63
                },
 
64
                'send': {
 
65
                        'actions': [_email_send],
 
66
                        'result': {'type':'state', 'state':'end'}
 
67
                }
 
68
        }
 
69
part_email('campaign.partner.email_send')
 
70
 
 
71