Merge branch 'develop'

This commit is contained in:
Pratik Vyas 2014-01-21 12:09:31 +05:30
commit b0433d96a3
2 changed files with 2 additions and 2 deletions

View File

@ -138,7 +138,7 @@ def get_accountwise_gle(filters, gl_entries, gle_map):
for gle in gl_entries:
amount = flt(gle.debit) - flt(gle.credit)
if filters.get("account") and (gle.posting_date < filters.from_date
or cstr(gle.is_advance) == "Yes"):
or cstr(gle.is_opening) == "Yes"):
gle_map[gle.account].opening += amount
opening += amount
elif gle.posting_date <= filters.to_date:

View File

@ -1,6 +1,6 @@
{
"app_name": "ERPNext",
"app_version": "3.6.4",
"app_version": "3.6.5",
"base_template": "app/portal/templates/base.html",
"modules": {
"Accounts": {