blob: 404894e53cb4a2c4a6a896cf806f5808c3d819e8 [file] [log] [blame]
Rushabh Mehtae67d1fb2013-08-05 14:59:54 +05301# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
2# License: GNU General Public License v3. See license.txt
Anand Doshi8e2ea5f2013-06-13 14:40:57 +05303
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 }