From 2c892c7e7f993e1a1a6398f4025fce74288dcdc3 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 3 Apr 2017 12:05:35 +0530 Subject: [PATCH] Indentation fixed in gross profit report --- erpnext/accounts/report/gross_profit/gross_profit.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/erpnext/accounts/report/gross_profit/gross_profit.py b/erpnext/accounts/report/gross_profit/gross_profit.py index 7dffd0a83e..a79f98d895 100644 --- a/erpnext/accounts/report/gross_profit/gross_profit.py +++ b/erpnext/accounts/report/gross_profit/gross_profit.py @@ -225,10 +225,10 @@ class GrossProfitGenerator(object): average_buying_rate = get_incoming_rate(row) if not average_buying_rate: average_buying_rate = get_valuation_rate(item_code, row.warehouse, - row.parenttype, row.parent, allow_zero_rate=True, - currency=self.filters.currency) + row.parenttype, row.parent, allow_zero_rate=True, + currency=self.filters.currency) - self.average_buying_rate[item_code] = average_buying_rate + self.average_buying_rate[item_code] = average_buying_rate return self.average_buying_rate[item_code]