Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1421168374 | ||
|
|
600a054314 | ||
|
|
bc934a0745 | ||
|
|
c5cd74e03f |
@@ -1,12 +1,12 @@
|
||||
# payment_btcpay
|
||||
# BTCPay Server payment gateway for Odoo 16.0
|
||||
# BTCPay Server payment gateway for Odoo 16
|
||||
|
||||
## 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.
|
||||

|
||||

|
||||
|
||||
## 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)
|
||||
* 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
|
||||
* Install dependencies by running `pip install -r requirements.txt` (from inside the `payment_btcpay` directory)
|
||||
* Restart Odoo
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
'author': 'Vandekul',
|
||||
'website': 'https://github.com/btcpayserver/odoo',
|
||||
'category': 'Accounting/Payment Providers',
|
||||
'version': '16.0.1.0',
|
||||
'version': '16.0.1.1',
|
||||
'license': 'GPL-3',
|
||||
'application': False,
|
||||
'installable': True,
|
||||
|
||||
@@ -62,7 +62,7 @@ class BTCPayController(http.Controller):
|
||||
"redirectURL": redirect_url,
|
||||
"notificationURL": notification_url,
|
||||
"extendedNotifications": True,
|
||||
"buyer": {"email": data.get('email'),
|
||||
"buyer": {"email": data.get('email') or 'noemailavailable@example.com',
|
||||
"name": data.get('name'),
|
||||
"address1": data.get('street'),
|
||||
"locality": data.get('city'),
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 155 KiB |
Reference in New Issue
Block a user