2013-11-20 07:29:58 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
2013-08-05 09:29:54 +00:00
|
|
|
# License: GNU General Public License v3. See license.txt
|
2013-01-17 10:14:57 +00:00
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
2014-02-14 10:17:51 +00:00
|
|
|
import frappe
|
|
|
|
from frappe import _, msgprint, throw
|
2013-01-17 14:50:56 +00:00
|
|
|
import json
|
2013-01-17 10:14:57 +00:00
|
|
|
|
|
|
|
def get_company_currency(company):
|
2014-02-26 07:05:33 +00:00
|
|
|
currency = frappe.db.get_value("Company", company, "default_currency")
|
2013-01-17 10:14:57 +00:00
|
|
|
if not currency:
|
2014-02-26 07:05:33 +00:00
|
|
|
currency = frappe.db.get_default("currency")
|
2013-01-17 10:14:57 +00:00
|
|
|
if not currency:
|
2014-04-15 13:10:00 +00:00
|
|
|
throw(_('Please specify Default Currency in Company Master and Global Defaults'))
|
2014-04-14 13:50:45 +00:00
|
|
|
|
2013-01-17 14:50:56 +00:00
|
|
|
return currency
|
|
|
|
|
2013-06-21 12:25:31 +00:00
|
|
|
def get_root_of(doctype):
|
|
|
|
"""Get root element of a DocType with a tree structure"""
|
2014-04-14 13:50:45 +00:00
|
|
|
result = frappe.db.sql_list("""select name from `tab%s`
|
|
|
|
where lft=1 and rgt=(select max(rgt) from `tab%s` where docstatus < 2)""" %
|
2013-06-28 09:30:24 +00:00
|
|
|
(doctype, doctype))
|
2013-06-21 12:25:31 +00:00
|
|
|
return result[0] if result else None
|
2014-04-14 13:50:45 +00:00
|
|
|
|
2013-06-21 12:25:31 +00:00
|
|
|
def get_ancestors_of(doctype, name):
|
|
|
|
"""Get ancestor elements of a DocType with a tree structure"""
|
2014-02-26 07:05:33 +00:00
|
|
|
lft, rgt = frappe.db.get_value(doctype, name, ["lft", "rgt"])
|
2014-04-14 13:50:45 +00:00
|
|
|
result = frappe.db.sql_list("""select name from `tab%s`
|
2013-07-04 11:43:53 +00:00
|
|
|
where lft<%s and rgt>%s order by lft desc""" % (doctype, "%s", "%s"), (lft, rgt))
|
|
|
|
return result or []
|
2013-06-21 12:25:31 +00:00
|
|
|
|
2014-02-14 10:17:51 +00:00
|
|
|
@frappe.whitelist()
|
2013-08-09 12:41:35 +00:00
|
|
|
def get_price_list_currency(price_list):
|
2014-04-14 13:50:45 +00:00
|
|
|
price_list_currency = frappe.db.get_value("Price List", {"name": price_list,
|
2014-01-20 10:39:45 +00:00
|
|
|
"enabled": 1}, "currency")
|
|
|
|
|
|
|
|
if not price_list_currency:
|
2014-04-14 13:50:45 +00:00
|
|
|
throw(_("Price List {0} is disabled").format(price_list))
|
2014-01-20 10:39:45 +00:00
|
|
|
else:
|
2014-04-14 13:50:45 +00:00
|
|
|
return {"price_list_currency": price_list_currency}
|