cashbook/cbreport.xml

28 lines
1.1 KiB
XML
Raw Normal View History

2022-08-16 15:05:01 +00:00
<?xml version="1.0"?>
<!-- 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. -->
<tryton>
<data>
<record model="ir.action.report" id="report_cashbook">
<field name="name">Cashbook</field>
<field name="model">cashbook.line</field>
<field name="report_name">cashbook.repbook</field>
<field name="report">cashbook/report/cashbook.fods</field>
<field name="single" eval="True"/>
</record>
<record model="ir.action.keyword" id="report_line_keyword">
<field name="keyword">form_print</field>
<field name="model">cashbook.line,-1</field>
<field name="action" ref="report_cashbook"/>
</record>
<record model="ir.action.keyword" id="report_book_keyword">
<field name="keyword">form_print</field>
<field name="model">cashbook.book,-1</field>
<field name="action" ref="report_cashbook"/>
</record>
</data>
</tryton>