fixes in reconciliation patch
diff --git a/patches/january_2013/stock_reconciliation_patch.py b/patches/january_2013/stock_reconciliation_patch.py
index 1cde07c..26d8f4f 100644
--- a/patches/january_2013/stock_reconciliation_patch.py
+++ b/patches/january_2013/stock_reconciliation_patch.py
@@ -10,7 +10,9 @@
def rename_fields():
args = [["Stock Ledger Entry", "bin_aqat", "qty_after_transaction"],
- ["Stock Ledger Entry", "fcfs_stack", "stock_queue"]]
+ ["Stock Ledger Entry", "fcfs_stack", "stock_queue"],
+ ["Stock Reconciliation", "reconciliation_date", "posting_date"],
+ ["Stock Reconciliation", "reconciliation_time", "posting_time"]]
for doctype, old_fieldname, new_fieldname in args:
webnotes.conn.sql("""update `tab%s` set `%s`=`%s`""" %
(doctype, new_fieldname, old_fieldname))