Initial commit: Odoomates Odoo packages (12 packages)

This commit is contained in:
Ernad Husremovic 2025-08-29 15:49:21 +02:00
commit 3b38c49bf0
526 changed files with 34983 additions and 0 deletions

View file

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="view_account_payment_method_form" model="ir.ui.view">
<field name="name">account.payment.method</field>
<field name="model">account.payment.method</field>
<field name="arch" type="xml">
<form string="Payment Methods" create="0" edit="0" delete="0">
<sheet>
<group>
<group>
<field name="name"/>
<field name="payment_type"/>
</group>
<group>
<field name="code"/>
</group>
</group>
</sheet>
</form>
</field>
</record>
<record id="view_account_payment_method_tree" model="ir.ui.view">
<field name="name">account.payment.method</field>
<field name="model">account.payment.method</field>
<field name="arch" type="xml">
<tree string="Payment Methods" create="0" edit="0" delete="0">
<field name="name"/>
<field name="payment_type"/>
</tree>
</field>
</record>
<record id="view_account_payment_method_search" model="ir.ui.view">
<field name="name">account.payment.method</field>
<field name="model">account.payment.method</field>
<field name="arch" type="xml">
<search string="Payment Methods">
<field name="name" string="Payment Method"/>
<field name="payment_type"/>
<group expand="0" string="Group By">
<filter name="payment_type" string="Payment Type" context="{'group_by':'payment_type'}"/>
</group>
</search>
</field>
</record>
<record id="action_account_payment_method" model="ir.actions.act_window">
<field name="name">Payment Methods</field>
<field name="res_model">account.payment.method</field>
<field name="view_mode">tree,form</field>
</record>
<menuitem id="menu_account_payment_method"
action="action_account_payment_method"
parent="account.root_payment_menu"
sequence="30"
groups="base.group_no_one" />
</odoo>