From 0bfd4849ca6b10b11a34a33f9e52542a8411022b Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 24 Jun 2016 16:04:12 +0530 Subject: [PATCH] minot fix --- .../v6_20x/repost_valuation_rate_for_negative_inventory.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/erpnext/patches/v6_20x/repost_valuation_rate_for_negative_inventory.py b/erpnext/patches/v6_20x/repost_valuation_rate_for_negative_inventory.py index f4c27cfecca..8369fea3179 100644 --- a/erpnext/patches/v6_20x/repost_valuation_rate_for_negative_inventory.py +++ b/erpnext/patches/v6_20x/repost_valuation_rate_for_negative_inventory.py @@ -3,8 +3,9 @@ from __future__ import unicode_literals import frappe +from frappe.utils import cint from erpnext.stock.stock_balance import repost def execute(): - if frappe.db.get_value("Stock Settings", None, "allow_negative_stock"): + if cint(frappe.db.get_value("Stock Settings", None, "allow_negative_stock")): repost(only_actual=True) \ No newline at end of file