mirror of
https://github.com/bringout/oca-payment.git
synced 2026-04-25 03: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>
35 lines
1.2 KiB
XML
35 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo noupdate="1">
|
|
<record
|
|
id="default_supplier_payment_mode_id"
|
|
model="ir.property"
|
|
forcecreate="True"
|
|
>
|
|
<field name="name">Default Supplier Payment Mode</field>
|
|
<field
|
|
name="fields_id"
|
|
search="[('model','=','res.partner'),('name','=','supplier_payment_mode_id')]"
|
|
/>
|
|
<field
|
|
name="value"
|
|
eval="'account.payment.mode,'+str(ref('account_payment_mode.payment_mode_outbound_ct1'))"
|
|
/>
|
|
<field name="company_id" ref="base.main_company" />
|
|
</record>
|
|
<record
|
|
id="default_customer_payment_mode_id"
|
|
model="ir.property"
|
|
forcecreate="True"
|
|
>
|
|
<field name="name">Default Customer Payment Mode</field>
|
|
<field
|
|
name="fields_id"
|
|
search="[('model','=','res.partner'),('name','=','customer_payment_mode_id')]"
|
|
/>
|
|
<field
|
|
name="value"
|
|
eval="'account.payment.mode,'+str(ref('account_payment_mode.payment_mode_inbound_ct1'))"
|
|
/>
|
|
<field name="company_id" ref="base.main_company" />
|
|
</record>
|
|
</odoo>
|