-
-
Notifications
You must be signed in to change notification settings - Fork 481
Expand file tree
/
Copy pathtaler_payment_method_data.xml
More file actions
executable file
·24 lines (21 loc) · 963 Bytes
/
taler_payment_method_data.xml
File metadata and controls
executable file
·24 lines (21 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<!--
SPDX-FileCopyrightText: 2025 Mael Panouillot <panouillot.mael@gmail.com>
SPDX-License-Identifier: LGPL-3.0-or-later
-->
<odoo>
<record id="payment_method_taler" model="payment.method">
<field name="name">Taler</field>
<field name="code">taler</field>
<field name="sequence">1</field>
<field name="active">True</field>
<field name="image" type="base64" file="payment_taler/static/description/icon.png"/>
<!--Edit this support_refund field to accurately reflect current refund functionality. Possible values: none, partial, full_only-->
<field name="support_refund">full_only</field>
</record>
<record id="account_payment_method_taler_in" model="account.payment.method">
<field name="name">Taler</field>
<field name="code">taler</field>
<field name="payment_type">inbound</field>
</record>
</odoo>