Fix block hops display when dry-hop is done, and extract hop is done after packaging.

Mon, 23 Oct 2023 15:55:34 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 23 Oct 2023 15:55:34 +0200
changeset 516
9161465e0eac
parent 515
73501316e300
child 517
64525ab563fc

Fix block hops display when dry-hop is done, and extract hop is done after packaging.

src/EditProductTab4.cpp file | annotate | diff | comparison | revisions
--- a/src/EditProductTab4.cpp	Wed Oct 18 16:00:06 2023 +0200
+++ b/src/EditProductTab4.cpp	Mon Oct 23 15:55:34 2023 +0200
@@ -39,6 +39,10 @@
 {
     if (stage > PROD_STAGE_BREW && useat < HOP_USEAT_DRY_HOP)
 	return true;
+    if (stage > PROD_STAGE_TERTIARY && useat < HOP_USEAT_BOTTLING)
+	return true;
+    if (stage > PROD_STAGE_PACKAGE)
+	return true;
     return false;
 }
 

mercurial