New version 16.0

This commit is contained in:
vandekul
2023-09-15 14:42:14 +02:00
parent ac2194498a
commit 7810629596
36 changed files with 403 additions and 1681 deletions
@@ -1,36 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--******************************************************************************
# PAYMENT BTCPAY FOR ODOO
#
# Copyright (C) 2020 Susanna Fort <susannafm@gmail.com>
#
#******************************************************************************
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of
# the License, or any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# For a full copy of the GNU General Public License see the LICENSE.txt file.
#
#******************************************************************************-->
<openerp>
<data noupdate="1">
<record id="payment_acquirer_btcpay" model="payment.acquirer">
<field name="name">BTCPay</field>
<field name="image" type="base64" file="payment_btcpay/static/description/icon.png"/>
<field name="provider">BTCPay</field>
<field name="company_id" ref="base.main_company"/>
<field name="view_template_id" ref="btcpay_acquirer_form"/>
<field name="environment">test</field>
<field name="pre_msg"><![CDATA[
<p><br>You will be redirected to BTCPay website after clicking on the payment button.</p>]]></field>
</record>
</data>
</openerp>
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo noupdate="1">
<record id="payment_provider_btcpay" model="payment.provider">
<field name="name">BTCPay</field>
<field name="code">btcpay</field>
<field name="image_128" type="base64" file="payment_btcpay/static/description/icon.png"/>
<field name="module_id" ref="base.module_payment_btcpay"/>
<field name="redirect_form_view_id" ref="redirect_form"/>
</record>
</odoo>