# -*- coding: utf-8 -*- ############################################################################## # # Copyright (c) 2010 Camptocamp SA (http://www.camptocamp.com) # All Right Reserved # # Author : Nicolas Bessi (Camptocamp) # # WARNING: This program as such is intended to be used by professional # programmers who take the whole responsability of assessing all potential # consequences resulting from its eventual inadequacies and bugs # End users who are looking for a ready-to-use solution with commercial # garantees and support are strongly adviced to contract a Free Software # Service Company # # This program is Free Software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # ############################################################################## import openerp class WebKitHelper(object): """Set of usefull report helper""" def __init__(self, cursor, uid, report_id, context): "constructor" self.cursor = cursor self.uid = uid self.pool = openerp.registry(self.cursor.dbname) self.report_id = report_id self.context = context def embed_image(self, type, img, width=0, height=0) : "Transform a DB image into an embedded HTML image" if width : width = 'width="%spx"'%(width) else : width = ' ' if height : height = 'height="%spx"'%(height) else : height = ' ' toreturn = ''%( width, height, type, str(img)) return toreturn def get_logo_by_name(self, name): """Return logo by name""" header_obj = self.pool.get('ir.header_img') header_img_id = header_obj.search( self.cursor, self.uid, [('name','=',name)] ) if not header_img_id : return u'' if isinstance(header_img_id, list): header_img_id = header_img_id[0] head = header_obj.browse(self.cursor, self.uid, header_img_id) return (head.img, head.type) def embed_logo_by_name(self, name, width=0, height=0): """Return HTML embedded logo by name""" img, type = self.get_logo_by_name(name) return self.embed_image(type, img, width, height) def embed_company_logo(self, width=0, height=0): cr, uid, context = self.cursor, self.uid, self.context my_user = self.pool.get('res.users').browse(cr, uid, uid, context=context) logo = my_user.company_id.logo_web return self.embed_image("png", logo, width, height) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: