src/database/db_product.cpp

changeset 433
40d4d2bb5f11
parent 432
f189af715073
child 458
ac216a75ca9b
--- a/src/database/db_product.cpp	Fri Nov 04 20:14:22 2022 +0100
+++ b/src/database/db_product.cpp	Mon Nov 07 15:02:16 2022 +0100
@@ -672,6 +672,11 @@
     query.bindValue(":eq_mash_volume", round(prod->eq_mash_volume * 10) / 10);
     query.bindValue(":eq_mash_max", round(prod->eq_mash_max * 10) / 10);
     query.bindValue(":eq_efficiency", round(prod->eq_efficiency * 10) / 10);
+    query.bindValue(":eq_chiller_type", prod->eq_chiller_type);
+    query.bindValue(":eq_chiller_to79", round(prod->eq_chiller_to79));
+    query.bindValue(":eq_chiller_volume", round(prod->eq_chiller_volume * 100) / 100);
+    query.bindValue(":eq_chiller_lpm", round(prod->eq_chiller_lpm * 100) / 100);
+    query.bindValue(":eq_chiller_loss", round(prod->eq_chiller_loss * 100) / 100);
     query.bindValue(":brew_date_start", prod->brew_date_start);
     query.bindValue(":brew_mash_ph", round(prod->brew_mash_ph * 100) / 100);
     query.bindValue(":brew_mash_sg", round(prod->brew_mash_sg * 1000) / 1000);

mercurial