~openerp-nea/openobject-addons/sigren-addons-community

« back to all changes in this revision

Viewing changes to sale_subscriptions_alerts/email_template.py

  • Committer: Gustavo Earnshaw
  • Date: 2011-04-01 18:44:06 UTC
  • mfrom: (292.1.27 addons-community)
  • Revision ID: gustavo@lanave-20110401184406-d8ctncjqx55o6ogd
[MERGE] ~openerp-community/openobject-addons/trunk-addons-community

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#    Copyright (C) 2011 Domsense s.r.l. (<http://www.domsense.com>).
 
6
#
 
7
#    This program is free software: you can redistribute it and/or modify
 
8
#    it under the terms of the GNU Affero General Public License as
 
9
#    published by the Free Software Foundation, either version 3 of the
 
10
#    License, or (at your option) any later version.
 
11
#
 
12
#    This program is distributed in the hope that it will be useful,
 
13
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
#    GNU Affero General Public License for more details.
 
16
#
 
17
#    You should have received a copy of the GNU Affero General Public License
 
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
#
 
20
##############################################################################
 
21
 
 
22
from osv import osv, fields
 
23
from tools.translate import _
 
24
 
 
25
class email_template(osv.osv):
 
26
    _inherit = 'email.template'
 
27
 
 
28
    def _get_order_line_model_id(self, cr, uid, fields, context=None):
 
29
        return self.pool.get('ir.model').search(cr, uid, [('model', '=', 'sale.order.line')])[0]
 
30
 
 
31
    _defaults = {
 
32
        'object_name': _get_order_line_model_id,
 
33
        'def_to': '${object.order_id.partner_id.email}',
 
34
        'def_cc': '${object.order_id.shop_id.company_id.partner_id.email}',
 
35
        }
 
36
 
 
37
email_template()