Feature: Add portal for logging cash payments#2167
Merged
Conversation
weslayer
approved these changes
Jul 5, 2026
weslayer
left a comment
Collaborator
There was a problem hiding this comment.
ur code is CHOPPED lil vro delete ts
maernest04
approved these changes
Jul 6, 2026
maernest04
left a comment
Collaborator
There was a problem hiding this comment.
Who let this man in the kitchen 💔
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
New SCE members can pay membership fees either using Venmo or cash. While Venmo payment validation already has an automated pipeline set up, cash payments are messy. This PR adds a page on the SCE website's admin portal which allows officers to enter the details of cash payments, triggering the automated validation workflow the same way that Venmo payments do.
Implementation
When people pay with Venmo, they are instructed to leave a specific payment note which allows a Google Apps Script to parse the email receipt and send an email with a confirmation code to the payer. This portal makes use of the API which sends emails and generates confirmation codes by sending a POST request to that endpoint with the payer's name, email, and payment amount. The
/storePaymentendpoint does the rest.Testing
This PR has been tested and verified successfully on production. It is ready for a merge.
Issue
This PR resolves issue #2100.