mirror of
https://github.com/bringout/oca-payment.git
synced 2026-04-24 11:22:02 +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>
20 lines
861 B
XML
20 lines
861 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!--
|
|
Copyright 2014-2016 Akretion (http://www.akretion.com/)
|
|
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
-->
|
|
<odoo>
|
|
<record id="view_partner_property_form" model="ir.ui.view">
|
|
<field name="name">account_partner_payment.partner_form</field>
|
|
<field name="model">res.partner</field>
|
|
<field name="inherit_id" ref="account.view_partner_property_form" />
|
|
<field name="arch" type="xml">
|
|
<field name="property_payment_term_id" position="after">
|
|
<field name="customer_payment_mode_id" widget="selection" />
|
|
</field>
|
|
<field name="property_supplier_payment_term_id" position="after">
|
|
<field name="supplier_payment_mode_id" widget="selection" />
|
|
</field>
|
|
</field>
|
|
</record>
|
|
</odoo>
|