[IMP]:survey:Corrected spelling in wizard.
[odoo/odoo.git] / addons / survey / wizard / survey_print_answer.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 from osv import osv
24 from osv import fields
25 from tools.translate import _
26
27 class survey_print_answer(osv.osv_memory):
28     _name = 'survey.print.answer'
29     _columns = {
30         'response_ids': fields.many2many('survey.response','survey_print_response',\
31                             'response_id','print_id', "Answer", required="1"),
32         'orientation': fields.selection([('vertical','Portrait(Vertical)'),\
33                             ('horizontal','Landscape(Horizontal)')], 'Orientation'),
34         'paper_size': fields.selection([('letter','Letter (8.5" x 11")'),\
35                             ('legal','Legal (8.5" x 14")'),\
36                             ('a4','A4 (210mm x 297mm)')], 'Paper Size'),
37         'page_number': fields.boolean('Include Page Number'),
38         'without_pagebreak': fields.boolean('Print Without Page Breaks')
39     }
40
41     _defaults = {
42             'orientation': lambda *a:'vertical',
43             'paper_size': lambda *a:'letter',
44             'page_number': lambda *a: 0,
45             'without_pagebreak': lambda *a: 0
46     }
47
48     def action_next(self, cr, uid, ids, context=None):
49         """
50         Print Survey Answer in pdf format.
51
52         @param self: The object pointer
53         @param cr: the current row, from the database cursor,
54         @param uid: the current user’s ID for security checks,
55         @param ids: List of print answer IDs
56         @param context: A standard dictionary for contextual values
57         @return : Dictionary value for created survey answer report
58         """
59         datas = {'ids': context.get('active_ids', [])}
60         res = self.read(cr, uid, ids, ['response_ids', 'orientation', 'paper_size',\
61                              'page_number', 'without_pagebreak'], context)
62         res = res and res[0] or {}
63         datas['form'] = res
64         datas['model'] = 'survey.print.answer'
65         return {
66             'type': 'ir.actions.report.xml',
67             'report_name': 'survey.browse.response',
68             'datas': datas,
69         }
70
71 survey_print_answer()
72
73 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: