blob: cfe66b9862e732f3ef9f9c9b388a67754143c6e9 [file] [log] [blame]
Anand Doshi8e2ea5f2013-06-13 14:40:57 +05301# Copyright (c) 2012 Web Notes Technologies Pvt Ltd.
2# License: GNU General Public License (v3). For more information see license.txt
3
4from __future__ import unicode_literals
5import webnotes
6
7def get_partner_args():
8 return {
9 "partners": webnotes.conn.sql("""select * from `tabSales Partner`
10 where show_in_website=1 order by name asc""", as_dict=True),
11 }