cashbook_report/templates.py

25 lines
836 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# This file is part of the cashbook-module from m-ds for Tryton.
# The COPYRIGHT file at the top level of this repository contains the
# full copyright notices and license terms.
2023-03-10 22:44:02 +00:00
cashbook_types = ['cashbooks', 'cashbooks_gldiff', 'cashbooks_glperc',
'cashbooks_glvalue', 'cashbooks_glyield']
category_types = ['categories', 'category_gldiff', 'category_glvalue',
'category_glperc', 'category_glyield']
booktype_types = ['types', 'types_gldiff', 'types_glvalue',
'types_glperc', 'types_glyield']
template_view_line = '<field name="balance" fill="%(fill)s" empty="0" string="%(string)s"/>'
2022-10-31 19:45:40 +00:00
template_view_graph = """<?xml version="1.0"?>
<graph type="%(type)s" legend="%(legend)s" %(colscheme)s %(bgcol)s>
<x>
2022-10-31 19:45:40 +00:00
<field name="name"/>
</x>
<y>
%(lines)s
</y>
</graph>
"""