mirror of
https://github.com/bringout/oca-payment.git
synced 2026-04-18 04:02:06 +02:00
Flattened directory structure by moving payment packages from redundant packages/ subdirectory to the root level of oca-payment repository. Changes: - Moved odoo-bringout-oca-payment-* from packages/ to root - Updated CLAUDE.md to reflect new flat structure - Removed redundant packages/ directory 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
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>
|