brotherton-erpnext/erpnext/accounts/report/general_ledger/general_ledger.py

168 lines
5.6 KiB
Python
Raw Normal View History

2013-12-26 05:37:58 +00:00
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# License: GNU General Public License v3. See license.txt
from __future__ import unicode_literals
2014-02-14 10:17:51 +00:00
import frappe
from frappe.utils import cstr, flt
from frappe import _
2013-12-26 05:37:58 +00:00
def execute(filters=None):
account_details = {}
2014-03-03 13:10:24 +00:00
for acc in frappe.db.sql("""select name, group_or_ledger from tabAccount""", as_dict=1):
account_details.setdefault(acc.name, acc)
2014-05-20 09:37:18 +00:00
2013-12-26 05:37:58 +00:00
validate_filters(filters, account_details)
2014-05-20 09:37:18 +00:00
2013-12-26 05:37:58 +00:00
columns = get_columns()
2014-05-20 09:37:18 +00:00
res = get_result(filters, account_details)
2013-12-26 05:37:58 +00:00
return columns, res
2014-05-20 09:37:18 +00:00
2013-12-26 05:37:58 +00:00
def validate_filters(filters, account_details):
2014-08-18 10:08:04 +00:00
if filters.get("account") and not account_details.get(filters.account):
frappe.throw(_("Account {0} does not exists").format(filters.account))
if filters.get("account") and filters.get("group_by_account") \
and account_details[filters.account].group_or_ledger == "Ledger":
2014-02-14 10:17:51 +00:00
frappe.throw(_("Can not filter based on Account, if grouped by Account"))
2014-05-20 09:37:18 +00:00
if filters.get("voucher_no") and filters.get("group_by_voucher"):
2014-02-14 10:17:51 +00:00
frappe.throw(_("Can not filter based on Voucher No, if grouped by Voucher"))
2014-05-20 09:37:18 +00:00
if filters.from_date > filters.to_date:
2014-02-14 10:17:51 +00:00
frappe.throw(_("From Date must be before To Date"))
2014-05-20 09:37:18 +00:00
2013-12-26 05:37:58 +00:00
def get_columns():
return ["Posting Date:Date:100", "Account:Link/Account:200", "Debit:Float:100",
"Credit:Float:100", "Voucher Type::120", "Voucher No:Dynamic Link/Voucher Type:160",
"Against Account::120", "Cost Center:Link/Cost Center:100", "Remarks::400"]
2014-05-20 09:37:18 +00:00
def get_result(filters, account_details):
gl_entries = get_gl_entries(filters)
data = get_data_with_opening_closing(filters, account_details, gl_entries)
2014-05-20 09:37:18 +00:00
result = get_result_as_list(data)
return result
2014-05-20 09:37:18 +00:00
2013-12-26 05:37:58 +00:00
def get_gl_entries(filters):
group_by_condition = "group by voucher_type, voucher_no, account" \
if filters.get("group_by_voucher") else "group by name"
2014-05-20 09:37:18 +00:00
gl_entries = frappe.db.sql("""select posting_date, account,
sum(ifnull(debit, 0)) as debit, sum(ifnull(credit, 0)) as credit,
voucher_type, voucher_no, cost_center, remarks, is_opening, against
2013-12-26 05:37:58 +00:00
from `tabGL Entry`
where company=%(company)s {conditions}
{group_by_condition}
2013-12-26 05:37:58 +00:00
order by posting_date, account"""\
2014-05-20 09:37:18 +00:00
.format(conditions=get_conditions(filters), group_by_condition=group_by_condition),
filters, as_dict=1)
2014-05-20 09:37:18 +00:00
2013-12-26 05:37:58 +00:00
return gl_entries
2014-05-20 09:37:18 +00:00
2013-12-26 05:37:58 +00:00
def get_conditions(filters):
conditions = []
if filters.get("account"):
if not frappe.db.exists("Account", filters["account"]):
frappe.throw(_("Account {0} is not valid").format(filters["account"]))
2014-02-26 07:05:33 +00:00
lft, rgt = frappe.db.get_value("Account", filters["account"], ["lft", "rgt"])
2014-05-20 09:37:18 +00:00
conditions.append("""account in (select name from tabAccount
2013-12-26 05:37:58 +00:00
where lft>=%s and rgt<=%s and docstatus<2)""" % (lft, rgt))
else:
conditions.append("posting_date between %(from_date)s and %(to_date)s")
2014-05-20 09:37:18 +00:00
2013-12-26 05:37:58 +00:00
if filters.get("voucher_no"):
conditions.append("voucher_no=%(voucher_no)s")
2014-05-20 09:37:18 +00:00
2014-09-09 10:45:35 +00:00
from frappe.desk.reportview import build_match_conditions
match_conditions = build_match_conditions("GL Entry")
if match_conditions: conditions.append(match_conditions)
2014-05-20 09:37:18 +00:00
2013-12-26 05:37:58 +00:00
return "and {}".format(" and ".join(conditions)) if conditions else ""
def get_data_with_opening_closing(filters, account_details, gl_entries):
2013-12-26 05:37:58 +00:00
data = []
gle_map = initialize_gle_map(gl_entries)
2014-05-20 09:37:18 +00:00
opening, total_debit, total_credit, gle_map = get_accountwise_gle(filters, gl_entries, gle_map)
2014-05-20 09:37:18 +00:00
# Opening for filtered account
if filters.get("account"):
2014-03-03 13:10:24 +00:00
data += [get_balance_row("Opening", opening), {}]
for acc, acc_dict in gle_map.items():
if acc_dict.entries:
# Opening for individual ledger, if grouped by account
if filters.get("group_by_account"):
2014-03-03 13:10:24 +00:00
data.append(get_balance_row("Opening", acc_dict.opening))
data += acc_dict.entries
2014-05-20 09:37:18 +00:00
# Totals and closing for individual ledger, if grouped by account
if filters.get("group_by_account"):
2014-05-20 09:37:18 +00:00
data += [{"account": "Totals", "debit": acc_dict.total_debit,
"credit": acc_dict.total_credit},
get_balance_row("Closing (Opening + Totals)",
2014-03-03 13:10:24 +00:00
(acc_dict.opening + acc_dict.total_debit - acc_dict.total_credit)), {}]
2014-05-20 09:37:18 +00:00
# Total debit and credit between from and to date
if total_debit or total_credit:
data.append({"account": "Totals", "debit": total_debit, "credit": total_credit})
2014-05-20 09:37:18 +00:00
# Closing for filtered account
if filters.get("account"):
2014-05-20 09:37:18 +00:00
data.append(get_balance_row("Closing (Opening + Totals)",
(opening + total_debit - total_credit)))
2014-05-20 09:37:18 +00:00
2013-12-26 05:37:58 +00:00
return data
def initialize_gle_map(gl_entries):
2014-02-14 10:17:51 +00:00
gle_map = frappe._dict()
for gle in gl_entries:
2014-02-14 10:17:51 +00:00
gle_map.setdefault(gle.account, frappe._dict({
"opening": 0,
"entries": [],
"total_debit": 0,
"total_credit": 0,
"closing": 0
}))
return gle_map
def get_accountwise_gle(filters, gl_entries, gle_map):
opening, total_debit, total_credit = 0, 0, 0
2014-05-20 09:37:18 +00:00
for gle in gl_entries:
amount = flt(gle.debit, 3) - flt(gle.credit, 3)
2014-05-20 09:37:18 +00:00
if filters.get("account") and (gle.posting_date<filters.from_date or cstr(gle.is_opening)=="Yes"):
gle_map[gle.account].opening += amount
opening += amount
2014-01-03 07:00:24 +00:00
elif gle.posting_date <= filters.to_date:
gle_map[gle.account].entries.append(gle)
gle_map[gle.account].total_debit += flt(gle.debit, 3)
gle_map[gle.account].total_credit += flt(gle.credit, 3)
2014-05-20 09:37:18 +00:00
total_debit += flt(gle.debit, 3)
total_credit += flt(gle.credit, 3)
2014-05-20 09:37:18 +00:00
return opening, total_debit, total_credit, gle_map
2014-03-03 13:10:24 +00:00
def get_balance_row(label, balance):
return {
"account": label,
2014-03-03 13:10:24 +00:00
"debit": balance if balance > 0 else 0,
"credit": -1*balance if balance < 0 else 0,
}
2014-05-20 09:37:18 +00:00
def get_result_as_list(data):
result = []
for d in data:
2014-05-20 09:37:18 +00:00
result.append([d.get("posting_date"), d.get("account"), d.get("debit"),
d.get("credit"), d.get("voucher_type"), d.get("voucher_no"),
d.get("against"), d.get("cost_center"), d.get("remarks")])
2014-05-20 09:37:18 +00:00
return result