laura youssef
Programmer
System: Micros Simphony
version: 18.2.4.0
I need to get all of the guest check details, particularly the menu items added to the check and their prices.
I tried using the following code, but it just returns the names and quantities of menu items, not their prices.
thanks in advance.
version: 18.2.4.0
I need to get all of the guest check details, particularly the menu items added to the check and their prices.
I tried using the following code, but it just returns the names and quantities of menu items, not their prices.
Code:
List<ExtensibilityOpsDisplayDetail> displayDetail = OpsContext.DisplayDetail;
foreach (ExtensibilityOpsDisplayDetail display in displayDetail)
{
menuItem = new Item();
menuItem.benefitsName = display.MiName;
menuItem.total = 0; // Fixed price for now
items.Add(menuItem);
}
thanks in advance.