~openerp-commiter/openobject-addons/extra-6.0

« back to all changes in this revision

Viewing changes to product_catalog_report/wizard/wizard_product_catalog.py

  • Committer: Harshad Modi
  • Date: 2008-03-03 06:15:54 UTC
  • Revision ID: hmo@tinyerp.com-3b4316a56d0263e4a15ea4323cf77539512c9b87
summary:
* This module use to print report of product catalog with product image, list price

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################################
 
2
#
 
3
# Copyright (c) 2005-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 time
 
30
import pooler
 
31
 
 
32
_lang_form = '''<?xml version="1.0"?>
 
33
<form string="Choose catalog preferencies">
 
34
    <separator string="Select a printing language " colspan="4"/>
 
35
    <field name="report_lang"/>
 
36
   <separator string="Select a Product Categories " colspan="4"/>
 
37
    <field name="categories" colspan="4" nolabel="1" />
 
38
 
 
39
</form>'''
 
40
 
 
41
 
 
42
 
 
43
class wiz_productCatalog(wizard.interface):
 
44
    def _get_language(self, cr, uid, context):
 
45
        lang_obj=pooler.get_pool(cr.dbname).get('res.lang')
 
46
        ids=lang_obj.search(cr, uid, [('active', '=', True),])
 
47
        langs=lang_obj.browse(cr, uid, ids)
 
48
        return [(lang.code, lang.name ) for lang in langs]
 
49
 
 
50
    _lang_fields = {
 
51
    'report_lang': {'string':'Language', 'type':'selection', 'selection':_get_language,},
 
52
    'categories': {'string':'Select Category', 'type':'many2many', 'relation':'product.category', 'required':True},
 
53
    }
 
54
 
 
55
    def _load(self,cr,uid,data,context):
 
56
        partner_obj=pooler.get_pool(cr.dbname).get('res.partner')
 
57
        partners=partner_obj.browse(cr, uid, [data['id']])
 
58
        if len(partners)>0:
 
59
            data['form']['report_lang']=partners[0].lang
 
60
        return data['form']
 
61
    states = {
 
62
        'init': {
 
63
            'actions': [_load],
 
64
            'result': {'type': 'form', 'arch':_lang_form, 'fields':_lang_fields, 'state':[('end','Cancel'),('print','Print Product Catalog') ]}
 
65
        },
 
66
        'print': {
 
67
            'actions': [],
 
68
            'result': {'type': 'print', 'report': 'product_catalog', 'state':'end'}
 
69
        }
 
70
    }
 
71
wiz_productCatalog('res.partner.product_catalog')