-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename the module for publish on odoo marketplace. (#12)
* Rename the module for publish on odoo marketplace. * More renaming needed.
- Loading branch information
Showing
26 changed files
with
58 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#****************************************************************************** | ||
# PAYMENT BTCPAY FOR ODOO | ||
# PAYMENT BTCPAY SERVER FOR ODOO | ||
# | ||
# Copyright (C) 2024 Susanna Fort <[email protected]>, ndeet | ||
# | ||
|
@@ -20,20 +20,20 @@ | |
#****************************************************************************** | ||
|
||
{ | ||
'name': 'Payment Provider: BTCPay', | ||
'name': 'Payment Provider: BTCPay Server', | ||
'summary': 'This module integrates BTCPAY - pay with Bitcoin - with Odoo v17.0', | ||
'author': 'Vandekul, ndeet', | ||
'website': 'https://github.com/btcpayserver/odoo', | ||
'category': 'Accounting/Payment Providers', | ||
'version': '17.0.1.1', | ||
'version': '17.0.2.0', | ||
'license': 'GPL-3', | ||
'currency': 'USD', | ||
'application': False, | ||
'installable': True, | ||
'auto_install': False, | ||
'depends': ['base', 'account', 'payment'], | ||
'data': [ | ||
'views/payment_btcpay_templates.xml', | ||
'views/payment_btcpayserver_templates.xml', | ||
'views/payment_provider_views.xml', | ||
'views/payment_transaction_views.xml', | ||
'data/payment_provider_data.xml', | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<odoo noupdate="1"> | ||
|
||
<record id="payment_method_btcpayserver" model="payment.method"> | ||
<field name="name">Pay with Bitcoin / Lightning Network</field> | ||
<field name="code">btcpayserver</field> | ||
<field name="active">True</field> | ||
<field name="image" type="base64" file="payment_btcpayserver/static/description/icon.png"/> | ||
<field name="support_tokenization">False</field> | ||
<field name="support_express_checkout">False</field> | ||
</record> | ||
|
||
<record id="payment_provider_btcpayserver" model="payment.provider"> | ||
<field name="name">BTCPay Server payments</field> | ||
<field name="code">btcpayserver</field> | ||
<field name="image_128" type="base64" file="payment_btcpayserver/static/description/icon.png"/> | ||
<field name="redirect_form_view_id" ref="redirect_form"/> | ||
<field name="module_id" ref="base.module_payment_btcpayserver"/> | ||
<field name="payment_method_ids" | ||
eval="[Command.set([ | ||
ref('payment_btcpayserver.payment_method_btcpayserver'), | ||
])]" | ||
/> | ||
</record> | ||
|
||
</odoo> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.