do not remove invoiced fees

This commit is contained in:
Bilal Catic
2019-08-16 15:39:52 +02:00
parent 81bbb2f843
commit fa89256b0c
2 changed files with 7 additions and 3 deletions

View File

@@ -119,6 +119,8 @@ const discounts = {
};
const DISCOUNT_PLANS = process.env.DISCOUNT_PLANS.split(',').map(planName => planName.trim()) || [];
const UNPAID_FEE_STATUS = 'not_paid';
module.exports = {
VALID_CSV_HEADERS,
USER_ENTRY_EVENT,
@@ -141,4 +143,5 @@ module.exports = {
ALLOWED_BOOKING_CANCELLATION_TIME,
discounts,
DISCOUNT_PLANS,
UNPAID_FEE_STATUS,
};