You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
955 B
21 lines
955 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo noupdate="1">
|
|
<!-- Credit Payment Provider -->
|
|
<record id="payment_provider_credit" model="payment.provider">
|
|
<field name="name">Credit payment</field>
|
|
<field name="sequence">45</field>
|
|
<field name="image_128" type="base64"
|
|
file="customer_credit_payment_website/static/description/credit.png"/>
|
|
<field name="code">credit_pay</field>
|
|
<field name="inline_form_view_id" ref="inline_form"/>
|
|
<field name="token_inline_form_view_id" ref="token_inline_form"/>
|
|
<field name="allow_tokenization">True</field>
|
|
<field name="module_id"
|
|
ref="base.module_customer_credit_payment_website"/>
|
|
<field name="payment_method_ids"
|
|
eval="[Command.set([
|
|
ref('customer_credit_payment_website.payment_method_credit_pay'),
|
|
])]"
|
|
/>
|
|
</record>
|
|
</odoo>
|
|
|