2013-08-05 14:59:54 +05:30
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2012-12-05 15:51:05 +05:30
|
|
|
def execute():
|
|
|
|
import webnotes
|
2013-10-11 18:31:33 +05:30
|
|
|
from utilities.repost_stock import get_ordered_qty, update_bin
|
2013-10-10 19:04:18 +05:30
|
|
|
|
2013-10-11 18:31:33 +05:30
|
|
|
for d in webnotes.conn.sql("select item_code, warehouse from tabBin"):
|
|
|
|
update_bin(d[0], d[1], {
|
|
|
|
"ordered_qty": get_ordered_qty(d[0], d[1])
|
|
|
|
})
|