-
Notifications
You must be signed in to change notification settings - Fork 119
[Bookings] Update attendance status remotely #16280
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
Merged
RafaelKayumov
merged 12 commits into
trunk
from
WOOMOB-1553-update-attendance-status-remotely
Oct 28, 2025
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
31c03cc
Implement attendance status section insertion/removal
RafaelKayumov ee0d8bb
Deletes customer section if billing address is absent
RafaelKayumov 28880cb
Perform remote attendance status update for booking
RafaelKayumov 82f306f
Make creation and modification date optional for Booking
RafaelKayumov 9aa331f
Add booking update tests
RafaelKayumov 4631919
Fix completion closure calls in booking status update action
RafaelKayumov 54f5603
Add booking attendance status update tests in booking store
RafaelKayumov 908eb5b
Add tests for hiding attendance section for cancelled booking
RafaelKayumov b3991c7
Add clarifying code comment
RafaelKayumov 78de80e
Run booking update task on main actor
RafaelKayumov 8ed229e
Calculate section insertion indexes instead of hardcoding
RafaelKayumov 1d26152
Merge branch 'trunk' into WOOMOB-1553-update-attendance-status-remotely
RafaelKayumov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
22 changes: 22 additions & 0 deletions
22
Modules/Tests/NetworkingTests/Responses/booking-no-create-update-dates.json
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| { | ||
| "data": { | ||
| "id": 206, | ||
| "start": 1761238800, | ||
| "end": 1761242400, | ||
| "all_day": false, | ||
| "status": "cancelled", | ||
| "attendance_status": "no-show", | ||
| "cost": "35.00", | ||
| "currency": "USD", | ||
| "customer_id": 5, | ||
| "product_id": 23, | ||
| "resource_id": 19, | ||
| "google_calendar_event_id": "0", | ||
| "order_id": 205, | ||
| "order_item_id": 21, | ||
| "parent_id": 0, | ||
| "person_counts": [], | ||
| "local_timezone": "", | ||
| "note": "edited note" | ||
| } | ||
| } |
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
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
Oops, something went wrong.
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.
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.
❓ Are you sure we want to keep the old dates here? If so, please leave a comment in the code for why that's necessary.
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.
Added in b3991c7