Anand Doshi | 8e2ea5f | 2013-06-13 14:40:57 +0530 | [diff] [blame] | 1 | # Copyright (c) 2012 Web Notes Technologies Pvt Ltd. |
2 | # License: GNU General Public License (v3). For more information see license.txt | ||||
3 | |||||
4 | from __future__ import unicode_literals | ||||
5 | import webnotes | ||||
6 | |||||
7 | def 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 | } |