From c7797fd49ea5c6c69bcc8547922b112d4cf488cc Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Fri, 27 Aug 2021 15:09:45 +0200 Subject: gnu: Add trytond-sale-stock-quantity. * gnu/packages/tryton.scm (trytond-sale-stock-quantity): New variable. --- gnu/packages/tryton.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index 67937a0457..e03f86f25a 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -3505,6 +3505,35 @@ line is over shipped more than the tolerance percentage, then a warning is raised.") (license license:gpl3+))) +(define-public trytond-sale-stock-quantity + (package + (name "trytond-sale-stock-quantity") + (version "6.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "trytond_sale_stock_quantity" version)) + (sha256 + (base32 "0xi79nmizly3hfc1ppcid622nvby50524jflisfvmjb651ixpfl8")))) + (build-system python-build-system) + (arguments (tryton-arguments "sale_stock_quantity")) + (native-inputs + `(,@%standard-trytond-native-inputs + ("trytond-stock-supply" ,trytond-stock-supply))) + (propagated-inputs + `(("trytond" ,trytond) + ("trytond-product" ,trytond-product) + ("trytond-sale" ,trytond-sale) + ("trytond-stock" ,trytond-stock))) + (home-page "https://docs.tryton.org/projects/modules-sale-stock-quantity") + (synopsis "Tryton module to add stock warning on sale") + (description "The @emph{Sale Stock Quantity} Tryton module checks the +stock quantity of the products when quoting a sale. The check will warn the +user if the forecast quantity at the sale date (and further dates until next +supply) is lower than the quantity sold by considering other sales and the +stock forecasts.") + (license license:gpl3+))) + (define-public trytond-stock (package (name "trytond-stock") -- cgit v1.2.3 nge
path: root/gnu/packages/bison.scm
AgeCommit message (Expand)Author
2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès
2021-05-09gnu: bison: Update to 3.7.6....* gnu/packages/bison.scm (bison): Update to 3.7.6. Marius Bakke
2021-01-26gnu: bison: Update to 3.7.5....* gnu/packages/bison.scm (bison): Update to 3.7.5. Efraim Flashner
2020-11-18gnu: bison: Update to 3.7.4....* gnu/packages/bison.scm (bison): Update to 3.7.4. Efraim Flashner
2020-08-26Merge remote-tracking branch 'origin/master' into core-updatesMathieu Othacehe
2020-07-30gnu: bison: Mention yacc in the description....This should help the user find the package if the goal is to satisfy a dependency on yacc. * gnu/packages/bison.scm (bison)[synopsis, description]: Explain compatibility with Yacc. Jakub Kądziołka
2020-06-22gnu: bison-3.6: Remove package....The `bison-3.6' variable is no longer necessary as `bison' itself already provides this version. * gnu/packages/bison.scm (bison-3.6): Remove variable. * gnu/packages/engineering.scm (poke)[native-inputs]: Replace bison-3.6 with bison. Jakub Kądziołka
2020-06-22Merge branch 'master' into core-updatesJakub Kądziołka
2020-06-22gnu: bison-3.6: Don't change the name of the package....This is a follow-up to commit 512d23c65d82bb874ca1fb3c12095b1cec8bbfca. * gnu/packages/bison (bison-3.6)[name]: Remove the overridden value. Jakub Kądziołka
2020-06-21gnu: Add poke....* gnu/packages/engineering.scm (poke): New variable. * gnu/packages/bison.scm (bison-3.6): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> B. Wilson
2020-06-21gnu: bison: Update to 3.6.3....* gnu/packages/bison.scm (bison): Update to 3.6.3. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> B. Wilson
2020-03-26gnu: bison: Update to 3.5.3....* gnu/packages/bison.scm (bison): Update to 3.5.3. Marius Bakke
2020-02-15gnu: bison: Update to 3.5.2.Marius Bakke
2020-01-24gnu: bison: Update to 3.5.1....* gnu/packages/bison.scm (bison): Update to 3.5.1. Marius Bakke
2019-12-16gnu: bison: Update to 3.5....* gnu/packages/bison.scm (bison): Update to 3.5. Efraim Flashner
2019-11-26gnu: bison: Update to 3.4.2....* gnu/packages/bison.scm (bison): Update to 3.4.2. Efraim Flashner
2019-09-30gnu: xyce: Use Bison 3.0....Xyce requires Bison 3.0 at the latest. * gnu/packages/bison.scm (bison-3.0): New variable. * gnu/packages/engineering.scm (xyce-serial)[native-inputs]: Use BISON-3.0 instead of BISON. Ludovic Courtès