mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
Add print button (feature up-ported from v10) Add option to post moves (feature up-ported from v10) Sequence now takes into account the deposit date Customize the filename of the report Update README with v12 labels [UPD] README.rst [UPD] Update account_check_deposit.pot Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: account-financial-tools-12.0/account-financial-tools-12.0-account_check_deposit Translate-URL: https://translation.odoo-community.org/projects/account-financial-tools-12-0/account-financial-tools-12-0-account_check_deposit/ [UPD] README.rst
21 lines
633 B
XML
21 lines
633 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
Copyright (C) 2014-2019 Akretion (http://www.akretion.com/)
|
|
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
The licence is in the file __manifest__.py
|
|
-->
|
|
|
|
<odoo>
|
|
|
|
<report id="report_account_check_deposit"
|
|
model="account.check.deposit"
|
|
string="Check Deposit"
|
|
report_type="qweb-pdf"
|
|
name="account_check_deposit.report_checkdeposit"
|
|
file="account_check_deposit.report_checkdeposit"
|
|
print_report_name="'check_deposit-%s%s' % (object.name, object.state == 'draft' and '-draft' or '')"
|
|
/>
|
|
|
|
</odoo>
|