-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Validate for Duplicate Event Entries within Multiple Offering Modal #1327
Validate for Duplicate Event Entries within Multiple Offering Modal #1327
Conversation
…m save the modal and cleaned up code
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work altogether! The only issue is an edge case where we get an error when trying to create an event in the multiple event offerings modal when one already exists in the database. It should probably prevent you from creating it in the first place. @stevensonmichel speak more with Lawrence about this he understands how it works.
…k which offerings failed to save and report that info to the user
…:BCStudentSoftwareDevTeam/celts into 1306-Multiple-Offering-Duplicate-Entries
…ransactions when one multiple offering fails and how we use the restructured outputs from the attemptSaveMultipleOfferings function
…correctly and refactored.
…ering event without selecting a date
1 similar comment
We have made all the suggested changes and we're ready for a re-review of our PR |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great to me, nice work guys!
Issue Description
There is no form validation preventing a user from creating multiple of the same event using the multiple offerings modal. Currently, when they try, the form submits and returns a warning that the "event already exists" because it is a duplicate event. This is not intended behavior and the user should be warned beforehand.
Fixes issue #1306
Changes
Dev Note: After careful consideration, we determined that we should prevent a user from creating two offerings of an event if they had the same name, date, start time, even when they have different end times. We cannot think of a situation when two events wouldn't be the same even with different end times.
Testing
First, prepare your local development environment and run the application
Preparation:
source setup.sh
database/reset_database.sh test
flask run
Now, you should create an event under any program and click the slider to give the event multiple offerings.
In the modal, do your best to create duplicate events and save the event page. If you cannot create multiple offerings so that when you save the event, you get a warning message saying that the "event already exists", then our PR is working.
Try creating two events that have the same fields but differ once in each of the following areas per test:
All fields same except event name
All fields same except event date
All fields same except start time
e.x.