Add expected guest count on booking
Some checks failed
build-and-deploy / build-deploy (push) Failing after 27s

This commit is contained in:
androidlover5842
2026-01-29 09:34:32 +05:30
parent 5214584b3c
commit f342b229f4
4 changed files with 32 additions and 0 deletions

View File

@@ -110,6 +110,7 @@ class BookingFlow(
maleCount = request.maleCount,
femaleCount = request.femaleCount,
totalGuestCount = totalGuestCount,
expectedGuestCount = request.expectedGuestCount,
notes = request.notes,
createdBy = actor,
updatedAt = now

View File

@@ -22,6 +22,7 @@ data class BookingCreateRequest(
val childCount: Int? = null,
val maleCount: Int? = null,
val femaleCount: Int? = null,
val expectedGuestCount: Int? = null,
val notes: String? = null
)