blob: e7ff2ce3b4128bf8ea89043aeb691359d77a3826 [file] [log] [blame]
Kanchan Chauhane0818f82016-04-22 14:39:02 +05301# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
2# License: GNU General Public License v3. See license.txt
3
4from __future__ import unicode_literals
5import frappe
6from frappe.utils import cstr, nowdate
7from erpnext.setup.doctype.item_group.item_group import get_item_for_list_in_html
8
9no_cache = 1
10no_sitemap = 1
11
Anand Doshie3bd78e2016-04-22 18:53:21 +053012def get_context(context):
13 homepage = frappe.get_doc('Homepage')
Kanchan Chauhan239b3512016-05-02 11:43:44 +053014
15 for item in homepage.products:
16 item.route = '/' + '/'.join(frappe.db.get_value('Item', item.item_code, ['parent_website_route', 'page_name']))
17
18
Anand Doshie3bd78e2016-04-22 18:53:21 +053019 return {
20 'homepage': homepage
Kanchan Chauhan239b3512016-05-02 11:43:44 +053021 }