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