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
18 lines
575 B
XML
18 lines
575 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 noupdate="1">
|
|
|
|
<record id="check_deposit_rule" model="ir.rule">
|
|
<field name="name">Check Deposit multi-company</field>
|
|
<field name="model_id" ref="model_account_check_deposit"/>
|
|
<field name="domain_force">['|', ('company_id', '=', False), ('company_id', 'child_of', [user.company_id.id])]</field>
|
|
</record>
|
|
|
|
</odoo>
|