114 lines
4.0 KiB
Ruby
114 lines
4.0 KiB
Ruby
json.id menu.id
|
|
json.name menu.name
|
|
json.is_ordering menu.is_ordering
|
|
json.is_active menu.is_active
|
|
json.valid_time_from menu.valid_time_from.strftime("%H:%M")
|
|
json.valid_time_to menu.valid_time_to.strftime("%H:%M")
|
|
|
|
if (menu.menu_categories)
|
|
order_by = Lookup.find_by_lookup_type("order_by")
|
|
# if !order_by.nil? && order_by.value == "name"
|
|
# categories = MenuCategory.unscoped.where("menu_id ='#{menu.id}'").order("name asc")
|
|
# else
|
|
# categories = menu.menu_categories
|
|
# end
|
|
categories = menu.menu_categories
|
|
json.categories categories do |category|
|
|
if category.is_available
|
|
parent_category = category.parent
|
|
if !parent_category.nil?
|
|
json.sub_category "true"
|
|
else
|
|
json.sub_category "false"
|
|
end
|
|
valid_time = category.valid_time
|
|
json.valid_time valid_time
|
|
|
|
json.id category.id
|
|
json.code category.code
|
|
json.order_by category.order_by
|
|
json.name category.name
|
|
json.alt_name category.alt_name
|
|
json.order_by category.order_by
|
|
json.parent_id category.menu_category_id
|
|
json.is_available category.is_available
|
|
|
|
if !order_by.nil? && order_by.value == "name"
|
|
menu_items = category.menu_items.sort_by(&:name)
|
|
else
|
|
menu_items = category.menu_items
|
|
end
|
|
|
|
if category.menu_items
|
|
json.items menu_items do |item|
|
|
if item.is_available
|
|
# Format for attributes json
|
|
attr_format = []
|
|
# Format for attributes json
|
|
if item.item_attributes.count > 0
|
|
item_attributes = @item_attributes.select{ |x| item.item_attributes.include?(x.id.to_s) }
|
|
attr_format = item_attributes.group_by {|att| att.attribute_type }.map { |type, values| {type: type, values: values.map(&:name)} }
|
|
end
|
|
|
|
# Format for option json
|
|
opt_format = []
|
|
# Format for attributes json
|
|
if item.item_options.count > 0
|
|
item_options = @item_options.select{ |x| item.item_options.include?(x.id.to_s) }
|
|
opt_format = item_options.group_by {|opt| opt.option_type }.map { |type, values| {type: type, values: values.map(&:name)} }
|
|
end
|
|
|
|
#Menu Item Information
|
|
json.id item.id
|
|
json.code item.item_code
|
|
json.name item.name
|
|
json.alt_name item.alt_name
|
|
json.image item.image_path.url
|
|
json.description item.description
|
|
json.information item.information
|
|
json.type item.type
|
|
json.account_id item.account_id
|
|
json.min_qty item.min_qty
|
|
json.is_available item.is_available
|
|
json.is_sub_item item.is_sub_item
|
|
json.unit item.unit
|
|
|
|
# Item Sets of Menu Item
|
|
json.item_sets item.item_sets.map { |its|
|
|
{ id: its.id,
|
|
name: its.name,
|
|
alt_name: its.alt_name,
|
|
min_selectable_qty: its.min_selectable_qty,
|
|
max_selectable_qty: its.max_selectable_qty,
|
|
instances: its.menu_item_instances.pluck(:id).map { |id| {id: id}}
|
|
}
|
|
}
|
|
|
|
json.attributes attr_format
|
|
json.options opt_format
|
|
|
|
json.instances item.menu_item_instances do |is|
|
|
if is.is_available
|
|
# Convert id to name for attributes
|
|
instance_attr = @item_attributes.select{ |x| item.item_attributes.include?(x.id) }.pluck(:name)
|
|
|
|
json.id is.id
|
|
json.code is.item_instance_code
|
|
json.name is.item_instance_name
|
|
json.price is.price
|
|
json.is_available is.is_available
|
|
json.is_default is.is_default
|
|
json.is_on_promotion is.is_on_promotion
|
|
json.promotion_price is.promotion_price
|
|
json.out_of_stock is.is_out_of_stock
|
|
json.values instance_attr
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|