blob: 8a49504ff04c5808fcd4810431f1fec68e09a654 [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 Doshi11ada532014-06-27 21:02:55 +05309
Ankush Menat494bd9e2022-03-28 18:52:46 +053010def get_context(context):
11 partners = frappe.db.sql(
12 """select * from `tabSales Partner`
13 where show_in_website=1 order by name asc""",
14 as_dict=True,
15 )
16
17 return {"partners": partners, "title": page_title}