From c4d377ce4e476a0e42eef9947794119b2a1b87f7 Mon Sep 17 00:00:00 2001 From: Bernd Bestel Date: Sat, 6 Apr 2019 16:00:17 +0200 Subject: [PATCH] Added new changelog --- changelog/46_2.3.0_2019-04-06.md | 12 ++++++++++++ migrations/0061.sql | 2 ++ 2 files changed, 14 insertions(+) create mode 100644 changelog/46_2.3.0_2019-04-06.md create mode 100644 migrations/0061.sql diff --git a/changelog/46_2.3.0_2019-04-06.md b/changelog/46_2.3.0_2019-04-06.md new file mode 100644 index 00000000..1da9370a --- /dev/null +++ b/changelog/46_2.3.0_2019-04-06.md @@ -0,0 +1,12 @@ +- Stock improvements + - A different location can now also be set during inventory (as for purchases) + - A partial minimum stock amount can now be set when "Allow partial units in stock" is enabled (product option) +- Recipe improvements + - There is now a default per product for "Disable stock fulfillment checking for this ingredient" (ingredient option, default can be defined as a product option) +- Some small UI fixes & improvements + - THe "Mark as open" button on the stock overview page was disabled when the current stock amount was exactly 1 + - The number in the "x products expiring within the next 5 days" badge was incorrect for products expiring exactly in 5 days + - On the product groups page there is now a new column which displays the product count per group (+ a link to the products page filtered by that product group) + - Added a message to clarify that in product dropdowns also something unknown can be entered to start a workflow + - Some other small CSS fixes (context menus were not fully displayed when the parent container was to small, improved padding for text inputs) +- As always: Updated translations (thanks all the translators) diff --git a/migrations/0061.sql b/migrations/0061.sql new file mode 100644 index 00000000..f1f3766e --- /dev/null +++ b/migrations/0061.sql @@ -0,0 +1,2 @@ +ALTER TABLE products +ADD not_check_stock_fulfillment_for_recipes TINYINT DEFAULT 0;