Rushabh Mehta | e67d1fb | 2013-08-05 14:59:54 +0530 | [diff] [blame] | 1 | # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. |
2 | # License: GNU General Public License v3. See license.txt | ||||
Anand Doshi | 8e2ea5f | 2013-06-13 14:40:57 +0530 | [diff] [blame] | 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 | } |