mirror of
https://github.com/bringout/oca-payment.git
synced 2026-04-18 04:22:09 +02:00
- account_payment_mode: Payment methods configuration
- account_payment_partner: Link payment modes to partners
- account_payment_order: Create and manage payment orders
- account_payment_order_grouped_output: Consolidated accounting entries
Source: OCA/bank-payment branch 16.0
License: AGPL-3.0
🤖 assisted by claude
16 lines
725 B
XML
16 lines
725 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<record id="view_account_journal_form" model="ir.ui.view">
|
|
<field name="name">usability.account_journal.form</field>
|
|
<field name="model">account.journal</field>
|
|
<field name="inherit_id" ref="account.view_account_journal_form" />
|
|
<field name="arch" type="xml">
|
|
<!-- better when related fields are readonly, otherwise the user
|
|
doesn't understand that he is changing the bank_id
|
|
on the underlying res.partner.bank object -->
|
|
<field name="bank_id" position="attributes">
|
|
<attribute name="readonly">1</attribute>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
</odoo>
|