diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2021-08-27 15:09:06 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2021-09-21 21:00:26 +0200 |
commit | 082431f5069482e00b66e97a805c727750f18e05 (patch) | |
tree | 38b561195117821f5ad3e71ac84f8e5dc3c036ac /gnu/packages | |
parent | 610748769a286b2c9450640d98020b74fd775798 (diff) |
gnu: Add trytond-account-payment-clearing.
* gnu/packages/tryton.scm (trytond-account-payment-clearing): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tryton.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index 191ca0b9e3..7784a35f48 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -834,6 +834,34 @@ form to handle the payment method nonce for card and other supported payment methods.") (license license:gpl3+))) +(define-public trytond-account-payment-clearing + (package + (name "trytond-account-payment-clearing") + (version "6.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "trytond_account_payment_clearing" version)) + (sha256 + (base32 "0dvjfgp0lrqn838wchkmhbbg4990xx2jv337rivnis164nw84dn0")))) + (build-system python-build-system) + (arguments (tryton-arguments "account_payment_clearing")) + (native-inputs + `(,@%standard-trytond-native-inputs + ("trytond-account-statement" ,trytond-account-statement) + ("trytond-account-statement-rule" ,trytond-account-statement-rule))) + (propagated-inputs + `(("trytond" ,trytond) + ("trytond-account-payment" ,trytond-account-payment))) + (home-page + "https://docs.tryton.org/projects/modules-account-payment-clearing") + (synopsis "Tryton module for payment clearing") + (description "The @emph{Account Payment Clearing} Tryton module allows to +generate account move when a payment is succeeded between the +receivable/payable account to a clearing account defined on the payment +journal.") + (license license:gpl3+))) + (define-public trytond-account-product (package (name "trytond-account-product") |