forked from Mapan/odoo17e
98 lines
4.6 KiB
XML
98 lines
4.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
|
|
<!-- VIEWS -->
|
|
|
|
<record id="view_account_payment_search_inherit_account_batch_payment" model="ir.ui.view">
|
|
<field name="name">account.payment.search.inherit.account_batch_payment</field>
|
|
<field name="model">account.payment</field>
|
|
<field name="inherit_id" ref="account.view_account_payment_search" />
|
|
<field name="arch" type="xml">
|
|
|
|
<!-- Filter on batch payments -->
|
|
<filter name="transfers_filter" position="after">
|
|
<separator/>
|
|
<filter string="Batch Payments"
|
|
name="batch_payments_filter"
|
|
domain="[('batch_payment_id', '!=', False)]"/>
|
|
<filter string="Not Batch Payments"
|
|
name="batch_payments_filter"
|
|
domain="[('batch_payment_id', '=', False)]"/>
|
|
<separator/>
|
|
</filter>
|
|
<!-- Group by batch payments -->
|
|
<filter name="paymentmethodline" position="after">
|
|
<filter string="Batch Payments"
|
|
name="batch_payments"
|
|
context="{'group_by': 'batch_payment_id'}"/>
|
|
</filter>
|
|
|
|
<filter name="reconciled" position="after">
|
|
<filter string="Not reconciled" name="not_reconciled" domain="[('is_reconciled', '=', False)]"/>
|
|
</filter>
|
|
|
|
</field>
|
|
</record>
|
|
|
|
<record id="view_account_payment_tree_inherit_account_batch_payment" model="ir.ui.view">
|
|
<field name="name">account.payment.tree.inherit.account_batch_payment</field>
|
|
<field name="model">account.payment</field>
|
|
<field name="inherit_id" ref="account.view_account_payment_tree" />
|
|
<field name="arch" type="xml">
|
|
<header position="inside">
|
|
<button name="%(action_account_create_batch_payment)d" type="action" string="Create Batch" groups="account.group_account_user"/>
|
|
</header>
|
|
<field name="partner_id" position="after">
|
|
<field name="batch_payment_id"/>
|
|
</field>
|
|
<field name="partner_id" position="replace">
|
|
<field name="partner_id" string="Partner"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="view_account_payment_form_inherit_account_batch_payment" model="ir.ui.view">
|
|
<field name="name">account.payment.form.inherit.account_batch_payment</field>
|
|
<field name="model">account.payment</field>
|
|
<field name="inherit_id" ref="account.view_account_payment_form" />
|
|
<field name="arch" type="xml">
|
|
|
|
<div name="button_box" position="inside">
|
|
<!-- Batch payment stat button -->
|
|
<field name="batch_payment_id" invisible="1"/>
|
|
<button name="button_open_batch_payment" type="object"
|
|
class="oe_stat_button" icon="fa-bars"
|
|
invisible="not batch_payment_id">
|
|
<span>Batch Payment</span>
|
|
</button>
|
|
</div>
|
|
|
|
</field>
|
|
</record>
|
|
|
|
<record id="view_account_payment_tree_popup_inherit_account_batch_payment" model="ir.ui.view">
|
|
<field name="name">account.payment.tree.popup.inherit.account_batch_payment</field>
|
|
<field name="model">account.payment</field>
|
|
<field name="inherit_id" ref="account.view_account_payment_tree"/>
|
|
<field name="mode">primary</field>
|
|
<field name="priority">10</field>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//header/button[@name='%(action_account_create_batch_payment)d']" position="attributes">
|
|
<attribute name="invisible">1</attribute>
|
|
</xpath>
|
|
<xpath expr="//field[@name='journal_id']" position="attributes">
|
|
<attribute name="optional">hide</attribute>
|
|
</xpath>
|
|
<xpath expr="//field[@name='payment_method_line_id']" position="attributes">
|
|
<attribute name="optional">hide</attribute>
|
|
</xpath>
|
|
<xpath expr="//field[@name='batch_payment_id']" position="attributes">
|
|
<attribute name="optional">hide</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</odoo>
|