Changes between Initial Version and Version 1 of UseCase15


Ignore:
Timestamp:
05/17/26 20:01:40 (9 days ago)
Author:
181201
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UseCase15

    v1 v1  
     1== Use-case 0015 - Complete a Booking
     2
     3'''Initiating actor:''' Pet Sitter
     4
     5'''Other actors:''' Pet Owner
     6
     7'''Description:'''
     8After a booking has finished, the Sitter logs in and marks it as completed. This transitions the status to 'Completed' and allows the Owner to leave a review.
     9
     10'''Scenario:'''
     11 1. Pet Sitter navigates to their "Pending Requests" dashboard.
     12 2. Sitter finds a Confirmed booking that has finished and clicks "Mark as Completed".
     13 3. System updates the booking status in the database:
     14{{{
     15#!sql
     16UPDATE bookings
     17SET status = 'Completed'
     18WHERE booking_id = 'specific-booking-uuid-here';
     19}}}