Looking for help?
< All Topics
Print

Set product kitchen area

goto admin/product/edit product to set it

How to add Kitchen order area on Restaurant ?

As you know , since version 3.1.0 , we already support separate dish to Cook area and Bar area.
It mean when a dish add to table order, it auto separate and display on Cook or Bar area without print receipt and manual print receipt with paper.
But some use case in real life, may be your restaurant need more area , like as Cook area, Bar area, Fries area. Show , how to add Fries area to OpenPOS ? 
Yeah, since version 3.2.0. Openpos support this features. You can follow this code and enter it to end of  your_theme/functions.php 

if(!function_exists('custom_kitchen_area'))
{
    function custom_kitchen_area($result){

        $result['fries'] = array(
            'label' =>  'Fries area',
            'description' => 'Display on Fries area'
        );
        return $result;
    }
}
add_filter('op_list_restaurant_area','custom_kitchen_area',20,1);
Table of Contents