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.
13 lines
631 B
13 lines
631 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo noupdate="1">
|
|
<!-- Created a payment method for newly configured payment provider-->
|
|
<record id="payment_method_credit_pay" model="payment.method">
|
|
<field name="name">credit pay</field>
|
|
<field name="code">credit_pay</field>
|
|
<field name="active">True</field>
|
|
<field name="sequence">200</field>
|
|
<field name="image" type="base64" file="customer_credit_payment_website/static/description/credit.png"/>
|
|
<field name="support_tokenization">False</field>
|
|
<field name="support_express_checkout">False</field>
|
|
</record>
|
|
</odoo>
|
|
|