Typo / added missing changelog

This commit is contained in:
Bernd Bestel 2021-07-14 18:15:02 +02:00
parent f6986fac18
commit 1bacd8e13d
No known key found for this signature in database
GPG Key ID: 71BD34C0D4891300
2 changed files with 3 additions and 2 deletions

View File

@ -70,6 +70,7 @@
- Fixed that the amount of self produced products with tare weight handling enabled was wrong ("Produces product" recipe option) - Fixed that the amount of self produced products with tare weight handling enabled was wrong ("Produces product" recipe option)
- Fixed that the ingredient amount calculation for included/nested recipes was (for most cases) wrong - Fixed that the ingredient amount calculation for included/nested recipes was (for most cases) wrong
- Fixed that the ingredient amount was wrong when using a to the product indirectly related quantity unit - Fixed that the ingredient amount was wrong when using a to the product indirectly related quantity unit
- Fixed that the calories amount calculation was wrong when quantity unit conversions were involved
### Meal plan improvements/fixes ### Meal plan improvements/fixes
- Improved the meal plan page loading time (drastically when having a big history of meal plan entries) - Improved the meal plan page loading time (drastically when having a big history of meal plan entries)

View File

@ -36,7 +36,7 @@ JOIN quantity_units qu_from
ON p.qu_id_purchase = qu_from.id ON p.qu_id_purchase = qu_from.id
JOIN quantity_units qu_to JOIN quantity_units qu_to
ON p.qu_id_stock = qu_to.id ON p.qu_id_stock = qu_to.id
WHERE p.qu_id_stock != p.qu_id_purchase -- => Only when QU stock ist not the same as QU purchase WHERE p.qu_id_stock != p.qu_id_purchase -- => Only when QU stock st not the same as QU purchase
UNION UNION