2013-08-05 09:29:54 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
2012-09-24 10:10:56 +00:00
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
def execute():
|
|
|
|
import webnotes
|
2013-01-08 12:59:24 +00:00
|
|
|
from stock.stock_ledger import update_entries_after
|
|
|
|
res = webnotes.conn.sql("select distinct item_code, warehouse from `tabStock Ledger Entry`")
|
2012-09-24 10:10:56 +00:00
|
|
|
i=0
|
2013-01-08 12:59:24 +00:00
|
|
|
for d in res:
|
2012-09-24 10:10:56 +00:00
|
|
|
try:
|
2013-06-21 09:43:49 +00:00
|
|
|
update_entries_after({ "item_code": d[0], "warehouse": d[1]})
|
2012-09-24 10:10:56 +00:00
|
|
|
except:
|
|
|
|
pass
|
|
|
|
i += 1
|
|
|
|
if i%100 == 0:
|
|
|
|
webnotes.conn.sql("commit")
|
|
|
|
webnotes.conn.sql("start transaction")
|