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>
10 lines
418 B
XML
10 lines
418 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo noupdate="1">
|
|
<record id="account_payment_mode_company_rule" model="ir.rule">
|
|
<field name="name">Payment mode multi-company rule</field>
|
|
<field name="model_id" ref="model_account_payment_mode" />
|
|
<field name="domain_force">
|
|
['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]
|
|
</field>
|
|
</record>
|
|
</odoo>
|