From f25fa9f02538acf559be569a34100b7a9047c39c Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Tue, 29 Mar 2022 22:04:04 +0000 Subject: [PATCH] Move locker rentals to "Purchase" category --- webclient/src/Paymaster.js | 2 +- webclient/src/Transactions.js | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/webclient/src/Paymaster.js b/webclient/src/Paymaster.js index 1a492ea..69b2094 100644 --- a/webclient/src/Paymaster.js +++ b/webclient/src/Paymaster.js @@ -184,7 +184,7 @@ export function Paymaster(props) { diff --git a/webclient/src/Transactions.js b/webclient/src/Transactions.js index 769ad3f..dde44f3 100644 --- a/webclient/src/Transactions.js +++ b/webclient/src/Transactions.js @@ -53,11 +53,11 @@ export function TransactionEditor(props) { const categoryOptions = [ { key: '0', text: 'Membership Dues', value: 'Membership' }, - { key: '1', text: 'Payment On Account (ie. Course Fee)', value: 'OnAcct' }, - { key: '2', text: 'Snack / Pop / Coffee', value: 'Snacks' }, - { key: '3', text: 'Donations', value: 'Donation' }, + { key: '1', text: 'Course Fee', value: 'OnAcct' }, + { key: '2', text: 'Snacks / Pop / Coffee', value: 'Snacks' }, + { key: '3', text: 'Donation', value: 'Donation' }, { key: '4', text: 'Consumables (Explain in memo)', value: 'Consumables' }, - { key: '5', text: 'Purchase of Locker / Goods / Merch / Stock', value: 'Purchases' }, + { key: '5', text: 'Purchase of Locker / Materials / Stock', value: 'Purchases' }, //{ key: '6', text: 'Auction, Garage Sale, Nearly Free Shelf', value: 'Garage Sale' }, { key: '7', text: 'Reimbursement (Enter a negative value)', value: 'Reimburse' }, { key: '8', text: 'Other (Explain in memo)', value: 'Other' },