From b4f45b69c9246a16efe76393b7645e4ffd1d4c32 Mon Sep 17 00:00:00 2001 From: phyusin Date: Fri, 22 Jun 2018 10:36:38 +0630 Subject: [PATCH] remove comment --- app/models/menu.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/models/menu.rb b/app/models/menu.rb index 98667b7e..1029ae7a 100755 --- a/app/models/menu.rb +++ b/app/models/menu.rb @@ -193,8 +193,6 @@ class Menu < ApplicationRecord end image_path = row["Image Path"] ? URI.parse('public/image/menu_images/'+row["Image Path"]) : "" - puts "image_path" - puts image_path menu_itm = MenuItem.create(item_code: row["Item Code"], name: row["Item Name"], account_id: account.id, alt_name: row["Item AltName"], image_path: image_path, description: '', information: '', unit: '', type: "SimpleMenuItem", menu_category_id: menu_cat.id, item_attributes: item_attrs, item_options: item_opts, is_sub_item: 0, is_available: 1, created_by: created_by) # else # status = status + "Item Code already exists for " + row["Item Name"] + "."