From 0224656f3ec0d32e531c52dddcafa7e27af5d002 Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Wed, 14 Feb 2024 12:43:57 +0100 Subject: [PATCH] gnu: Add trytond-account-consolidation. * gnu/packages/tryton.scm (trytond-account-consolidation): New variable. --- gnu/packages/tryton.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index 36ec79be270a876ec570533da8695823671f3902..f611a028864c4d21cf9b5a257b2df94b7e17b503 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -374,6 +374,33 @@ budgeted amount.") amounts to be rounded using the cash rounding factor of the currency.") (license license:gpl3+))) +(define-public trytond-account-consolidation + (package + (name "trytond-account-consolidation") + (version "7.0.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "trytond_account_consolidation" version)) + (sha256 + (base32 "07qjw6h2cap1lg712w2yznnbp3swk1m9rspb48c13yyhm5xaf4ii")))) + (build-system pyproject-build-system) + (arguments (tryton-arguments "account_consolidation")) + (native-inputs + (cons* trytond-account-invoice + %standard-trytond-native-inputs)) + (propagated-inputs + (list + trytond + trytond-account + trytond-company + trytond-currency)) + (home-page "https://docs.tryton.org/projects/modules-account-consolidation") + (synopsis "Tryton module to consolidate accounting of many companies") + (description "The @emph{Account Consolidation} Tryton module allows +consolidate accounting report of multiple companies.") + (license license:gpl3+))) + (define-public trytond-account-credit-limit (package (name "trytond-account-credit-limit")