Click or drag to resize

IOperationServiceSetKitchenOrderProcessingStatus Method

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(
	IKitchenOrder order,
	KitchenOrderProcessingStatus? newStatus = null
)

Parameters

order
Type: Resto.Front.Api.Data.KitchenIKitchenOrder
Order whose processing status needs to be changed.
newStatus (Optional)
Type: SystemNullableKitchenOrderProcessingStatus
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