Implemented tare weight handling (closes #132)

This commit is contained in:
Bernd Bestel
2019-03-05 17:51:50 +01:00
parent 90291fdbca
commit 8504429f5f
21 changed files with 221 additions and 84 deletions

5
migrations/0057.sql Normal file
View File

@@ -0,0 +1,5 @@
ALTER TABLE products
ADD enable_tare_weight_handling TINYINT NOT NULL DEFAULT 0;
ALTER TABLE products
ADD tare_weight REAL NOT NULL DEFAULT 0;