4 Commits
Author SHA1 Message Date
ndeet 1421168374 Bumping version. 2024-07-31 14:22:32 +02:00
ndeet 600a054314 Make sure email is passed, also if used in PoS context.
(cherry picked from commit 6042284704)
2024-07-31 14:20:25 +02:00
ndeet bc934a0745 Updating teaser image. 2024-07-17 16:53:38 +02:00
ndeet c5cd74e03f Minor clarification. 2024-07-09 11:13:11 +02:00
4 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -1,12 +1,12 @@
# payment_btcpay # BTCPay Server payment gateway for Odoo 16
# BTCPay Server payment gateway for Odoo 16.0
## This is the module to connect Odoo 16.0 and BTCPay ## This is the module to connect Odoo 16 and BTCPay Server
This module allows you to accept bitcoin (and other cryptocurrency) payments in your Odoo e-commerce store. This module allows you to accept bitcoin (and other cryptocurrency) payments in your Odoo e-commerce store.
![BTCPay Server Website](../payment_btcpay/static/description/BTCPayServer_org.png) ![BTCPay Server Banner](../payment_btcpay/static/description/BTCPay-Odoo-16-featured.png)
## Install the module ## Install the module
* Clone our [repository](https://github.com/btcpayserver/odoo) or download the .zip from the [releases page](https://github.com/btcpayserver/odoo/releases) * Clone our [repository](https://github.com/btcpayserver/odoo) or download the .zip from the [releases page](https://github.com/btcpayserver/odoo/releases)
* Make sure you are on branch `16.0` or downloaded a release tagged with version v16.x
* Place the `payment_btcpay` directory in your Odoo addons directory * Place the `payment_btcpay` directory in your Odoo addons directory
* Install dependencies by running `pip install -r requirements.txt` (from inside the `payment_btcpay` directory) * Install dependencies by running `pip install -r requirements.txt` (from inside the `payment_btcpay` directory)
* Restart Odoo * Restart Odoo
+1 -1
View File
@@ -25,7 +25,7 @@
'author': 'Vandekul', 'author': 'Vandekul',
'website': 'https://github.com/btcpayserver/odoo', 'website': 'https://github.com/btcpayserver/odoo',
'category': 'Accounting/Payment Providers', 'category': 'Accounting/Payment Providers',
'version': '16.0.1.0', 'version': '16.0.1.1',
'license': 'GPL-3', 'license': 'GPL-3',
'application': False, 'application': False,
'installable': True, 'installable': True,
+1 -1
View File
@@ -62,7 +62,7 @@ class BTCPayController(http.Controller):
"redirectURL": redirect_url, "redirectURL": redirect_url,
"notificationURL": notification_url, "notificationURL": notification_url,
"extendedNotifications": True, "extendedNotifications": True,
"buyer": {"email": data.get('email'), "buyer": {"email": data.get('email') or 'noemailavailable@example.com',
"name": data.get('name'), "name": data.get('name'),
"address1": data.get('street'), "address1": data.get('street'),
"locality": data.get('city'), "locality": data.get('city'),
Binary file not shown.

After

Width:  |  Height:  |  Size: 155 KiB