brotherton-erpnext/website/helpers/partner.py

11 lines
360 B
Python
Raw Normal View History

2013-06-13 09:10:57 +00:00
# Copyright (c) 2012 Web Notes Technologies Pvt Ltd.
# License: GNU General Public License (v3). For more information see license.txt
from __future__ import unicode_literals
import webnotes
def get_partner_args():
return {
"partners": webnotes.conn.sql("""select * from `tabSales Partner`
where show_in_website=1 order by name asc""", as_dict=True),
}