You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
121 lines
3.6 KiB
121 lines
3.6 KiB
# -*- encoding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# mis_builder module for Odoo, Management Information System Builder
|
|
# Copyright (C) 2014-2015 ACSONE SA/NV (<http://acsone.eu>)
|
|
#
|
|
# This file is a part of mis_builder
|
|
#
|
|
# mis_builder is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License v3 or later
|
|
# as published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# mis_builder 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 Affero General Public License v3 or later for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# v3 or later along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
##############################################################################
|
|
|
|
from openerp import api, fields, models, exceptions
|
|
|
|
|
|
class MisReportKpiStyle(models.Model):
|
|
|
|
_name = 'mis.report.kpi.style'
|
|
|
|
# TODO use WEB WIdget color picker
|
|
name = fields.Char(string='style name', required=True)
|
|
|
|
@api.depends('indent_level')
|
|
def check_positive_val(self):
|
|
return self.indent_level > 0
|
|
|
|
_font_style_selection = [
|
|
('normal', 'Normal'),
|
|
('italic', 'Italic'),
|
|
]
|
|
|
|
_font_weight_selection = [
|
|
('nornal', 'Normal'),
|
|
('bold', 'Bold'),
|
|
]
|
|
|
|
_font_size_selection = [
|
|
('medium', ''),
|
|
('xx-small', 'xx-small'),
|
|
('x-small', 'x-small'),
|
|
('small', 'small'),
|
|
('large', 'large'),
|
|
('x-large', 'x-large'),
|
|
('xx-large', 'xx-large'),
|
|
]
|
|
|
|
_font_size_to_size = {
|
|
'medium': 11,
|
|
'xx-small': 5,
|
|
'x-small': 7,
|
|
'small': 9,
|
|
'large': 13,
|
|
'x-large': 15,
|
|
'xx-large': 17
|
|
}
|
|
|
|
color = fields.Char(
|
|
required=True,
|
|
help='Line color in valid RGB code (from #000000 to #FFFFFF)',
|
|
)
|
|
background_color = fields.Char(
|
|
required=True,
|
|
help='Line color in valid RGB code (from #000000 to #FFFFFF)'
|
|
)
|
|
font_style = fields.Selection(
|
|
selection=_font_style_selection,
|
|
)
|
|
font_weight = fields.Selection(
|
|
selection=_font_weight_selection
|
|
)
|
|
font_size = fields.Selection(
|
|
selection=_font_size_selection
|
|
)
|
|
indent_level = fields.Integer()
|
|
|
|
@api.multi
|
|
def font_size_to_size(self):
|
|
self.ensure_one()
|
|
return self._font_size_to_size.get(self.font_size, 11)
|
|
|
|
@api.multi
|
|
def to_xlsx_format_properties(self):
|
|
self.ensure_one()
|
|
props = {
|
|
'italic': self.font_style == 'italic',
|
|
'bold': self.font_weight == 'bold',
|
|
'font_color': self.color,
|
|
'bg_color': self.background_color,
|
|
'indent': self.indent_level,
|
|
'size': self.font_size_to_size()
|
|
}
|
|
return props
|
|
|
|
@api.multi
|
|
def to_css_style(self):
|
|
self.ensure_one()
|
|
css_attributes = [
|
|
('font-style', self.font_style),
|
|
('font-weight', self.font_weight),
|
|
('font-size', self.font_size),
|
|
('color', self.color),
|
|
('background-color', self.background_color),
|
|
('indent-level', str(self.indent_level))
|
|
]
|
|
|
|
css_list = [
|
|
x[0] + ':' + x[1] for x in css_attributes if x[1]
|
|
]
|
|
return ';'.join(css_item for css_item in css_list)
|