tryton-modules-account-payment-braintree 6.0.3-2 source package in Ubuntu

Changelog

tryton-modules-account-payment-braintree (6.0.3-2) sid; urgency=medium

  * Update the package URLS to https and the new mono repos location.
  * Bump the Standards-Version to 4.6.2, no changes needed.

 -- Mathias Behrle <email address hidden>  Mon, 13 Feb 2023 12:55:29 +0100

Upload details

Uploaded by:
Debian Tryton Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Tryton Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
tryton-modules-account-payment-braintree_6.0.3-2.dsc 2.7 KiB 6fbe8ad1d8fdf1ab0ceac30bfd2bdd80505e7d4a82b1dfb5bb482e8f4f9b5796
tryton-modules-account-payment-braintree_6.0.3.orig.tar.gz 43.8 KiB 17396ce7fb3d8a80a73aeb4084826f610c0331f9364f3a3095d7bc4c60947267
tryton-modules-account-payment-braintree_6.0.3.orig.tar.gz.asc 506 bytes ae14d53762d19fd2e9d7c3af542e6be2d3ef8ddbd3d7524cb0c72b9f507684a8
tryton-modules-account-payment-braintree_6.0.3-2.debian.tar.xz 12.4 KiB 20cd7d6609b2cde72adcaa62b33006fe07525a48a7afdb1da09ba0d4ae6a20e0

Available diffs

No changes file available.

Binary packages built by this source

tryton-modules-account-payment-braintree: Tryton application platform - account payment braintree module

 Tryton is a high-level general purpose application platform. It is the base
 of a complete business solution as well as a comprehensive health and hospital
 information system (GNUHealth).
 .
 The account_payment_braintree module allows receipt of payments using
 `Braintree`_.
 It uses the `Drop-in UI`_ in a checkout form to handle the `payment method
 nonce`_ for card and other supported payment methods.
 .
  .. _`Braintree`: https://www.braintreepayments.com/
  .. _`Drop-in UI`: https://developers.braintreepayments.com/guides/drop-in/overview/javascript/v3
  .. _`payment method nonce`: https://developers.braintreepayments.com/guides/payment-method-nonces
 .
 Account
 *******
 .
 The Account stores the information about the Braintree account like the
 merchant ID, the public and secret keys etc.
 .
 The account's webhook endpoint is the URL used by Braintree's webhooks_.
 If no webhook is setup, disputes will not update existing payments.
 .
  .. _webhooks: https://developers.braintreepayments.com/guides/webhooks/overview
 .
 Customer
 ********
 .
 The Customer allows parties to be registered as Braintree customers.
 The checkout/add card button opens the Braintree Drop-in UI form.
 .
 A scheduled task runs every hour to create new customers on Braintree and
 another to delete them if they have become inactive.
 .
 Journal
 *******
 .
 The journal has a new field to store the Braintree account if the process
 method is set to "Braintree".
 .
 Payment
 *******
 .
 The payment also has a checkout button which opens the Braintree Drop-in UI
 form.
 A payment can be processed using a nonce or a `payment method`_ from the
 customer.
 In case of an error, a new field displays the error message from Braintree.
 The settle field can be unchecked to only authorize on processing and settle
 the amount in a second step.
 .
 Two scheduled tasks run every 15 minutes to transact and settle each processing
 payment.
 Another scheduled task also runs every 15 minutes to pull updates for each
 processing payment until they have succeeded or failed.
 .
 The Braintree payments have a pull button which can be used to force an update
 with the braintree transaction.
 .
  .. _payment method: https://developers.braintreepayments.com/guides/payment-methods
 .
 Configuration
 *************
 .
 The account_payment_braintree module uses the section
 `account_payment_braintree` to retrieve some parameters:
 .
  - `payment_methods_cache`: defines the duration in seconds that payment methods
   are kept in the cache. The default value is `15 * 60`.