diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2021-08-27 15:09:18 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2021-09-21 21:00:28 +0200 |
commit | a0b153dcd12dbc0edc0300f38b10b567b4447eb9 (patch) | |
tree | 1bbea8a5713a62d0bd94e6576803a295874816c8 /gnu | |
parent | da7d72229ab22831cfc7e855cf1b27c6c56143e3 (diff) |
gnu: Add trytond-commission-waiting.
* gnu/packages/tryton.scm (trytond-commission-waiting): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tryton.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index 3320c3a30b..c6e5da81f9 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -1602,6 +1602,31 @@ commission for sale's agents. A commission move is created when posting the invoice, following the agent's commission plan.") (license license:gpl3+))) +(define-public trytond-commission-waiting + (package + (name "trytond-commission-waiting") + (version "6.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "trytond_commission_waiting" version)) + (sha256 + (base32 "113wzwjip8virdh9bnh14vl29wb3w7a32skk5yibja819s19ycdn")))) + (build-system python-build-system) + (arguments (tryton-arguments "commission_waiting")) + (native-inputs `(,@%standard-trytond-native-inputs)) + (propagated-inputs + `(("trytond" ,trytond) + ("trytond-account" ,trytond-account) + ("trytond-account-invoice" ,trytond-account-invoice) + ("trytond-commission" ,trytond-commission))) + (home-page "https://docs.tryton.org/projects/modules-commission-waiting") + (synopsis "Tryton module for commission waiting") + (description "The @emph{Commission Waiting} Tryton module allows to +generate account move for each commission between the expense/revenue account +to a waiting account defined on the agent.") + (license license:gpl3+))) + (define-public trytond-company (package (name "trytond-company") |