Click or drag to resize

IOperationService.SetKitchenOrderProcessingStatus Method (Guid, Nullable<KitchenOrderProcessingStatus>)

Changes cooking status of the kitchen order.

Namespace:  Resto.Front.Api
Assembly:  Resto.Front.Api.V9 (in Resto.Front.Api.V9.dll)
Syntax
C#
void SetKitchenOrderProcessingStatus(
	Guid kitchenOrderId,
	KitchenOrderProcessingStatus? newStatus = null
)

Parameters

kitchenOrderId
Type: System.Guid
Id of kitchen order whose processing status needs to be changed.
newStatus (Optional)
Type: System.Nullable<KitchenOrderProcessingStatus>
New processing status to be set for the kitchen order. null if you want to return to calculating order status based on the statuses of its elements.
Remarks
By default, the status of a kitchen order is calculated from the statuses of its items. The status assigned by this operation overrides this logic.
See Also