Merge pull request #561 from Oloodi/493-implement-rapid-order-creation-voice-text-in-client-mobile-app

Fix issues in the staff and client mobile apps
This commit is contained in:
Achintha Isuru
2026-03-02 01:00:22 -05:00
committed by GitHub
131 changed files with 4329 additions and 3547 deletions

View File

@@ -61,6 +61,29 @@ query listInvoices(
}
}
shift {
id
title
applications_on_shift {
id
status
checkInTime
checkOutTime
staff {
fullName
photoUrl
}
shiftRole {
role {
name
}
totalValue
hours
breakType
}
}
}
}
}
@@ -123,6 +146,29 @@ query getInvoiceById($id: UUID!) @auth(level: USER) {
}
}
shift {
id
title
applications_on_shift {
id
status
checkInTime
checkOutTime
staff {
fullName
photoUrl
}
shiftRole {
role {
name
}
totalValue
hours
breakType
}
}
}
}
}
@@ -194,6 +240,29 @@ query listInvoicesByVendorId(
}
}
shift {
id
title
applications_on_shift {
id
status
checkInTime
checkOutTime
staff {
fullName
photoUrl
}
shiftRole {
role {
name
}
totalValue
hours
breakType
}
}
}
}
}
@@ -265,6 +334,29 @@ query listInvoicesByBusinessId(
}
}
shift {
id
title
applications_on_shift {
id
status
checkInTime
checkOutTime
staff {
fullName
photoUrl
}
shiftRole {
role {
name
}
totalValue
hours
breakType
}
}
}
}
}
@@ -336,6 +428,29 @@ query listInvoicesByOrderId(
}
}
shift {
id
title
applications_on_shift {
id
status
checkInTime
checkOutTime
staff {
fullName
photoUrl
}
shiftRole {
role {
name
}
totalValue
hours
breakType
}
}
}
}
}
@@ -407,6 +522,29 @@ query listInvoicesByStatus(
}
}
shift {
id
title
applications_on_shift {
id
status
checkInTime
checkOutTime
staff {
fullName
photoUrl
}
shiftRole {
role {
name
}
totalValue
hours
breakType
}
}
}
}
}
@@ -501,6 +639,29 @@ query filterInvoices(
}
}
shift {
id
title
applications_on_shift {
id
status
checkInTime
checkOutTime
staff {
fullName
photoUrl
}
shiftRole {
role {
name
}
totalValue
hours
breakType
}
}
}
}
}
@@ -576,5 +737,28 @@ query listOverdueInvoices(
}
}
shift {
id
title
applications_on_shift {
id
status
checkInTime
checkOutTime
staff {
fullName
photoUrl
}
shiftRole {
role {
name
}
totalValue
hours
breakType
}
}
}
}
}