summaryrefslogtreecommitdiff
path: root/config/config.default.php
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2016-03-22 14:40:52 +0100
committermsquare <msquare@notrademark.de>2016-03-22 14:40:52 +0100
commitc35cf85db5207133a53b316b2bde8ec46f53a274 (patch)
treea58f8ed4dc700d16d2165e474f51694d8bce4352 /config/config.default.php
parent1da3cba5a70328780a362af0ec06e9f6a689562a (diff)
parent661e5595c4f5844cec94f4fb304c16650fa3b211 (diff)
Merge pull request #243 from tike/calculate_vouchers
issue #242 - make app caluclate number of vouchers for angels
Diffstat (limited to 'config/config.default.php')
-rw-r--r--config/config.default.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/config/config.default.php b/config/config.default.php
index e9ec0427..a8f4f454 100644
--- a/config/config.default.php
+++ b/config/config.default.php
@@ -47,6 +47,12 @@ $shift_sum_formula = "SUM(
))*(`Shifts`.`end` - `Shifts`.`start`)*(1 - 3 * `ShiftEntry`.`freeloaded`)
)";
+// voucher calculation
+$voucher_settings = array(
+ "initial_vouchers" => 2,
+ "shifts_per_voucher" => 1
+);
+
// weigh every shift the same
// $shift_sum_formula = "SUM(`end` - `start`)";