fix: remove duplicate keys from dictionaries

This commit is contained in:
Ankush Menat
2021-04-17 14:57:57 +05:30
parent 75e13f7bb6
commit dedf2c1b61
7 changed files with 2 additions and 10 deletions

View File

@@ -117,7 +117,6 @@ class StockController(AccountsController):
"account": expense_account,
"against": warehouse_account[sle.warehouse]["account"],
"cost_center": item_row.cost_center,
"project": item_row.project or self.get('project'),
"remarks": self.get("remarks") or "Accounting Entry for Stock",
"credit": flt(sle.stock_value_difference, precision),
"project": item_row.get("project") or self.get("project"),