blob: e4043ea8b96e006b39489b5054e666d43e4fb5ef [file] [log] [blame]
Anand Doshi885e0742015-03-03 14:55:30 +05301# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
Anand Doshi5d591eb2014-04-18 16:15:31 +05302# License: GNU General Public License v3. See license.txt
3
Chillar Anand915b3432021-09-02 16:44:59 +05304
Anand Doshi5d591eb2014-04-18 16:15:31 +05305import frappe
Anand Doshi5d591eb2014-04-18 16:15:31 +05306
Anand Doshi11ada532014-06-27 21:02:55 +05307page_title = "Partners"
8
Anand Doshi5d591eb2014-04-18 16:15:31 +05309def get_context(context):
Anand Doshi11ada532014-06-27 21:02:55 +053010 partners = frappe.db.sql("""select * from `tabSales Partner`
11 where show_in_website=1 order by name asc""", as_dict=True)
12
Anand Doshi5d591eb2014-04-18 16:15:31 +053013 return {
Anand Doshi11ada532014-06-27 21:02:55 +053014 "partners": partners,
15 "title": page_title
Anand Doshi5d591eb2014-04-18 16:15:31 +053016 }