diff --git a/API/run.py b/API/run.py index 27caf22fe4b32836afcf53f4327528f1b7ebf032..b3f6840f84906930f7a2e143ae949a101bcc3007 100644 --- a/API/run.py +++ b/API/run.py @@ -46,10 +46,28 @@ import pmdarima as pm def start(): + # read incomming json data data=request.get_json() + # convert json data into pandas data structure + data_arr=json.dumps(data) + df=pd.read_json(data_arr) + df=df.transpose() + df.rename(columns = {'Product_Code': 'ProductCode', + 'Product_Category': 'ProductCategory', + 'Order_Demand': 'OrderDemand'}, inplace = True) + + #check is null + df.isnull().sum() + # remove nan values + df.dropna(inplace=True) - return data + print(df.isnull().sum()) + + + + + return data_arr def read_json(income_data): diff --git a/Data/data_process.py b/Data/data_process.py new file mode 100644 index 0000000000000000000000000000000000000000..6a51c71dc110448b00ed2b07afabf5f437c35ea7 --- /dev/null +++ b/Data/data_process.py @@ -0,0 +1,70 @@ +import csv +import json +import pandas as pd +from pymongo import MongoClient + + +# # get client instence +# client = MongoClient() + +# # Connect to database +# db=client.station + +# #create station collection +# station = db.station + +# # Read csv file to pandas data frame + +# df=pd.read_csv("product_demnd.csv",engine='python') +# # df = df.rename({'Unnamed: 0.1':'ID','Unnamed: 0': 'Read ID'}, axis=1) + + +# #Set Data Frame index to ID +# df=df.set_index('ID') +# #save to csv file +# df.to_csv('out.csv') + + + +#function convert to csv file to json file +def make_json(csvFilePath, jsonFilePath): + + # create a data dictionary + data = {} + + # Open a csv reader called DictReader + + with open(csvFilePath, encoding='utf-8') as csvf: + csvReader = csv.DictReader(csvf) + + # Convert each row into a dictionary + # and add it to data + for rows in csvReader: + # Assuming a column named 'ID' to + # be the primary key + key = rows['Product_Code'] + data[key] = rows + + + # Open a json writer, and use the json.dumps() + # function to dump data + + with open(jsonFilePath, 'w', encoding='utf-8') as jsonf: + jsonf.write(json.dumps(data, indent=4)) + + +#call function convert csv file to json file format + +make_json('product__demnd.csv','input_data.json') + +# file_data= [] + +# #open json file and read each line to json object +# with open('nosql.json') as f: +# file_data.append(json.load(f)) + +# #inset each object to station collection + + +# station.insert_many(file_data) + diff --git a/Data/input_data.json b/Data/input_data.json new file mode 100644 index 0000000000000000000000000000000000000000..771202a9892a1695950f22c161bdf6295dfaf534 --- /dev/null +++ b/Data/input_data.json @@ -0,0 +1,15122 @@ +{ + "Product_0993": { + "Product_Code": "Product_0993", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/4/7", + "Order_Demand": "100 " + }, + "Product_0979": { + "Product_Code": "Product_0979", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/12/13", + "Order_Demand": "100 " + }, + "Product_1159": { + "Product_Code": "Product_1159", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/6/27", + "Order_Demand": "10000 " + }, + "Product_1938": { + "Product_Code": "Product_1938", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/12", + "Order_Demand": "2 " + }, + "Product_1157": { + "Product_Code": "Product_1157", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/5/13", + "Order_Demand": "20000 " + }, + "Product_1234": { + "Product_Code": "Product_1234", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/6", + "Order_Demand": "4000 " + }, + "Product_1451": { + "Product_Code": "Product_1451", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/14", + "Order_Demand": "2000 " + }, + "Product_1274": { + "Product_Code": "Product_1274", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/11", + "Order_Demand": "5000 " + }, + "Product_1512": { + "Product_Code": "Product_1512", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/13", + "Order_Demand": "1000 " + }, + "Product_1970": { + "Product_Code": "Product_1970", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/14", + "Order_Demand": "1000 " + }, + "Product_1372": { + "Product_Code": "Product_1372", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/26", + "Order_Demand": "300 " + }, + "Product_1994": { + "Product_Code": "Product_1994", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/22", + "Order_Demand": "200 " + }, + "Product_0558": { + "Product_Code": "Product_0558", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/6/17", + "Order_Demand": "2000 " + }, + "Product_0560": { + "Product_Code": "Product_0560", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/1/28", + "Order_Demand": "100 " + }, + "Product_0561": { + "Product_Code": "Product_0561", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/10/7", + "Order_Demand": "600 " + }, + "Product_1183": { + "Product_Code": "Product_1183", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/29", + "Order_Demand": "500 " + }, + "Product_1184": { + "Product_Code": "Product_1184", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2015/4/20", + "Order_Demand": "20000 " + }, + "Product_1150": { + "Product_Code": "Product_1150", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/9/9", + "Order_Demand": "5000 " + }, + "Product_1173": { + "Product_Code": "Product_1173", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/7/27", + "Order_Demand": "10000 " + }, + "Product_1900": { + "Product_Code": "Product_1900", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/15", + "Order_Demand": "100 " + }, + "Product_1248": { + "Product_Code": "Product_1248", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/31", + "Order_Demand": "3000 " + }, + "Product_1278": { + "Product_Code": "Product_1278", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/14", + "Order_Demand": "3000 " + }, + "Product_1359": { + "Product_Code": "Product_1359", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/9", + "Order_Demand": "20000 " + }, + "Product_1270": { + "Product_Code": "Product_1270", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/20", + "Order_Demand": "10000 " + }, + "Product_1581": { + "Product_Code": "Product_1581", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/6/15", + "Order_Demand": "1000 " + }, + "Product_2015": { + "Product_Code": "Product_2015", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/5", + "Order_Demand": "2000 " + }, + "Product_2008": { + "Product_Code": "Product_2008", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/14", + "Order_Demand": "1000 " + }, + "Product_2004": { + "Product_Code": "Product_2004", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/18", + "Order_Demand": "1000 " + }, + "Product_0071": { + "Product_Code": "Product_0071", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/19", + "Order_Demand": "11000 " + }, + "Product_1570": { + "Product_Code": "Product_1570", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/28", + "Order_Demand": "500 " + }, + "Product_0083": { + "Product_Code": "Product_0083", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/19", + "Order_Demand": "41000 " + }, + "Product_1502": { + "Product_Code": "Product_1502", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/30", + "Order_Demand": "1000 " + }, + "Product_1904": { + "Product_Code": "Product_1904", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/16", + "Order_Demand": "0 " + }, + "Product_1241": { + "Product_Code": "Product_1241", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/27", + "Order_Demand": "1000 " + }, + "Product_1574": { + "Product_Code": "Product_1574", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/7/25", + "Order_Demand": "360000 " + }, + "Product_0639": { + "Product_Code": "Product_0639", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/17", + "Order_Demand": "1 " + }, + "Product_1510": { + "Product_Code": "Product_1510", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/4/25", + "Order_Demand": "13000 " + }, + "Product_1431": { + "Product_Code": "Product_1431", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/11/2", + "Order_Demand": "2000 " + }, + "Product_0556": { + "Product_Code": "Product_0556", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/8/31", + "Order_Demand": "2000 " + }, + "Product_1486": { + "Product_Code": "Product_1486", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/13", + "Order_Demand": "3000 " + }, + "Product_1246": { + "Product_Code": "Product_1246", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/21", + "Order_Demand": "1000 " + }, + "Product_1101": { + "Product_Code": "Product_1101", + "Warehouse": "Whse_S", + "Product_Category": "Category_032", + "Date": "2016/12/26", + "Order_Demand": "25000 " + }, + "Product_1245": { + "Product_Code": "Product_1245", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/8/22", + "Order_Demand": "500000 " + }, + "Product_1263": { + "Product_Code": "Product_1263", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/12/30", + "Order_Demand": "15000 " + }, + "Product_0965": { + "Product_Code": "Product_0965", + "Warehouse": "Whse_S", + "Product_Category": "Category_006", + "Date": "2016/11/24", + "Order_Demand": "1 " + }, + "Product_1264": { + "Product_Code": "Product_1264", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/1", + "Order_Demand": "10000 " + }, + "Product_1432": { + "Product_Code": "Product_1432", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/6", + "Order_Demand": "10000 " + }, + "Product_1480": { + "Product_Code": "Product_1480", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/15", + "Order_Demand": "0 " + }, + "Product_1521": { + "Product_Code": "Product_1521", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/30", + "Order_Demand": "0 " + }, + "Product_0980": { + "Product_Code": "Product_0980", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/7/14", + "Order_Demand": "1500 " + }, + "Product_0664": { + "Product_Code": "Product_0664", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/11/1", + "Order_Demand": "10 " + }, + "Product_0031": { + "Product_Code": "Product_0031", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/21", + "Order_Demand": "200 " + }, + "Product_1262": { + "Product_Code": "Product_1262", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/25", + "Order_Demand": "1000 " + }, + "Product_1430": { + "Product_Code": "Product_1430", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/18", + "Order_Demand": "10000 " + }, + "Product_1469": { + "Product_Code": "Product_1469", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/9", + "Order_Demand": "100 " + }, + "Product_1250": { + "Product_Code": "Product_1250", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/27", + "Order_Demand": "1000 " + }, + "Product_1316": { + "Product_Code": "Product_1316", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/26", + "Order_Demand": "500 " + }, + "Product_1410": { + "Product_Code": "Product_1410", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/31", + "Order_Demand": "300 " + }, + "Product_1315": { + "Product_Code": "Product_1315", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/13", + "Order_Demand": "500 " + }, + "Product_1371": { + "Product_Code": "Product_1371", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/22", + "Order_Demand": "1000 " + }, + "Product_1470": { + "Product_Code": "Product_1470", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/9", + "Order_Demand": "200 " + }, + "Product_1286": { + "Product_Code": "Product_1286", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/2", + "Order_Demand": "100 " + }, + "Product_1489": { + "Product_Code": "Product_1489", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/25", + "Order_Demand": "1000 " + }, + "Product_1400": { + "Product_Code": "Product_1400", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/13", + "Order_Demand": "1000 " + }, + "Product_1357": { + "Product_Code": "Product_1357", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/22", + "Order_Demand": "0 " + }, + "Product_0113": { + "Product_Code": "Product_0113", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/8/23", + "Order_Demand": "1000 " + }, + "Product_1294": { + "Product_Code": "Product_1294", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/2", + "Order_Demand": "400 " + }, + "Product_1377": { + "Product_Code": "Product_1377", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/2", + "Order_Demand": "300 " + }, + "Product_1452": { + "Product_Code": "Product_1452", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/22", + "Order_Demand": "200 " + }, + "Product_1381": { + "Product_Code": "Product_1381", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/2", + "Order_Demand": "100 " + }, + "Product_1361": { + "Product_Code": "Product_1361", + "Warehouse": "Whse_J", + "Product_Category": "Category_033", + "Date": "2016/6/7", + "Order_Demand": "0 " + }, + "Product_1158": { + "Product_Code": "Product_1158", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/9/1", + "Order_Demand": "1000 " + }, + "Product_1160": { + "Product_Code": "Product_1160", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/11/7", + "Order_Demand": "1000 " + }, + "Product_1149": { + "Product_Code": "Product_1149", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/11/14", + "Order_Demand": "5000 " + }, + "Product_1147": { + "Product_Code": "Product_1147", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/10/7", + "Order_Demand": "5000 " + }, + "Product_1152": { + "Product_Code": "Product_1152", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/4/28", + "Order_Demand": "10000 " + }, + "Product_0940": { + "Product_Code": "Product_0940", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/4/22", + "Order_Demand": "200 " + }, + "Product_1632": { + "Product_Code": "Product_1632", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/12", + "Order_Demand": "1000 " + }, + "Product_0931": { + "Product_Code": "Product_0931", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/6/3", + "Order_Demand": "5000 " + }, + "Product_1312": { + "Product_Code": "Product_1312", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/7", + "Order_Demand": "500 " + }, + "Product_0613": { + "Product_Code": "Product_0613", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/17", + "Order_Demand": "1 " + }, + "Product_2001": { + "Product_Code": "Product_2001", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/16", + "Order_Demand": "300 " + }, + "Product_2010": { + "Product_Code": "Product_2010", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/16", + "Order_Demand": "500 " + }, + "Product_1818": { + "Product_Code": "Product_1818", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/3/1", + "Order_Demand": "5000 " + }, + "Product_1841": { + "Product_Code": "Product_1841", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/9/28", + "Order_Demand": "1000 " + }, + "Product_1427": { + "Product_Code": "Product_1427", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/30", + "Order_Demand": "200 " + }, + "Product_1350": { + "Product_Code": "Product_1350", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/14", + "Order_Demand": "2000 " + }, + "Product_1513": { + "Product_Code": "Product_1513", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/2", + "Order_Demand": "200 " + }, + "Product_1763": { + "Product_Code": "Product_1763", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/9/28", + "Order_Demand": "2 " + }, + "Product_1996": { + "Product_Code": "Product_1996", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/1", + "Order_Demand": "300 " + }, + "Product_2006": { + "Product_Code": "Product_2006", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/28", + "Order_Demand": "200 " + }, + "Product_0981": { + "Product_Code": "Product_0981", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/2/2", + "Order_Demand": "350 " + }, + "Product_0984": { + "Product_Code": "Product_0984", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/4/13", + "Order_Demand": "100 " + }, + "Product_1360": { + "Product_Code": "Product_1360", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/23", + "Order_Demand": "3000 " + }, + "Product_0469": { + "Product_Code": "Product_0469", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/25", + "Order_Demand": "100 " + }, + "Product_0033": { + "Product_Code": "Product_0033", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/19", + "Order_Demand": "2500 " + }, + "Product_0011": { + "Product_Code": "Product_0011", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/4/20", + "Order_Demand": "100 " + }, + "Product_1973": { + "Product_Code": "Product_1973", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/19", + "Order_Demand": "100 " + }, + "Product_0187": { + "Product_Code": "Product_0187", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/2/8", + "Order_Demand": "50 " + }, + "Product_2039": { + "Product_Code": "Product_2039", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/2/24", + "Order_Demand": "1 " + }, + "Product_1023": { + "Product_Code": "Product_1023", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/9/6", + "Order_Demand": "100 " + }, + "Product_0315": { + "Product_Code": "Product_0315", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/26", + "Order_Demand": "4 " + }, + "Product_0317": { + "Product_Code": "Product_0317", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/14", + "Order_Demand": "60 " + }, + "Product_0670": { + "Product_Code": "Product_0670", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/1/25", + "Order_Demand": "3 " + }, + "Product_0314": { + "Product_Code": "Product_0314", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/11/21", + "Order_Demand": "16 " + }, + "Product_0102": { + "Product_Code": "Product_0102", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/4/18", + "Order_Demand": "4 " + }, + "Product_0223": { + "Product_Code": "Product_0223", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/3/22", + "Order_Demand": "3 " + }, + "Product_1886": { + "Product_Code": "Product_1886", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/4", + "Order_Demand": "100 " + }, + "Product_1017": { + "Product_Code": "Product_1017", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/7/4", + "Order_Demand": "100 " + }, + "Product_0179": { + "Product_Code": "Product_0179", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/8/17", + "Order_Demand": "30 " + }, + "Product_0215": { + "Product_Code": "Product_0215", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/11", + "Order_Demand": "29 " + }, + "Product_0183": { + "Product_Code": "Product_0183", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/9/2", + "Order_Demand": "100 " + }, + "Product_0178": { + "Product_Code": "Product_0178", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/8/5", + "Order_Demand": "3 " + }, + "Product_1025": { + "Product_Code": "Product_1025", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/3/29", + "Order_Demand": "58 " + }, + "Product_0216": { + "Product_Code": "Product_0216", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/2/24", + "Order_Demand": "15 " + }, + "Product_1016": { + "Product_Code": "Product_1016", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/12/6", + "Order_Demand": "400 " + }, + "Product_1018": { + "Product_Code": "Product_1018", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/11", + "Order_Demand": "1000 " + }, + "Product_0219": { + "Product_Code": "Product_0219", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/7/7", + "Order_Demand": "24 " + }, + "Product_0214": { + "Product_Code": "Product_0214", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/3/11", + "Order_Demand": "6 " + }, + "Product_0185": { + "Product_Code": "Product_0185", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/8/17", + "Order_Demand": "30 " + }, + "Product_0344": { + "Product_Code": "Product_0344", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/10/5", + "Order_Demand": "1 " + }, + "Product_0345": { + "Product_Code": "Product_0345", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/2/15", + "Order_Demand": "1 " + }, + "Product_0308": { + "Product_Code": "Product_0308", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/11/2", + "Order_Demand": "8 " + }, + "Product_0616": { + "Product_Code": "Product_0616", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/27", + "Order_Demand": "2 " + }, + "Product_0623": { + "Product_Code": "Product_0623", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/8/18", + "Order_Demand": "2 " + }, + "Product_1991": { + "Product_Code": "Product_1991", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/1/20", + "Order_Demand": "600 " + }, + "Product_0012": { + "Product_Code": "Product_0012", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/6/23", + "Order_Demand": "1000 " + }, + "Product_2027": { + "Product_Code": "Product_2027", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/5/2", + "Order_Demand": "100 " + }, + "Product_0358": { + "Product_Code": "Product_0358", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/6", + "Order_Demand": "1000 " + }, + "Product_0027": { + "Product_Code": "Product_0027", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/8/9", + "Order_Demand": "100 " + }, + "Product_2024": { + "Product_Code": "Product_2024", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/8/30", + "Order_Demand": "25 " + }, + "Product_0018": { + "Product_Code": "Product_0018", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/3/17", + "Order_Demand": "100 " + }, + "Product_2043": { + "Product_Code": "Product_2043", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/14", + "Order_Demand": "30000 " + }, + "Product_2047": { + "Product_Code": "Product_2047", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/12", + "Order_Demand": "10000 " + }, + "Product_2048": { + "Product_Code": "Product_2048", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/7", + "Order_Demand": "10000 " + }, + "Product_2045": { + "Product_Code": "Product_2045", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/27", + "Order_Demand": "10000 " + }, + "Product_2042": { + "Product_Code": "Product_2042", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/2", + "Order_Demand": "50000 " + }, + "Product_2044": { + "Product_Code": "Product_2044", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/13", + "Order_Demand": "20000 " + }, + "Product_1995": { + "Product_Code": "Product_1995", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/28", + "Order_Demand": "200 " + }, + "Product_1643": { + "Product_Code": "Product_1643", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/28", + "Order_Demand": "100 " + }, + "Product_2046": { + "Product_Code": "Product_2046", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/12", + "Order_Demand": "10000 " + }, + "Product_1226": { + "Product_Code": "Product_1226", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/7", + "Order_Demand": "100 " + }, + "Product_0943": { + "Product_Code": "Product_0943", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/27", + "Order_Demand": "1000 " + }, + "Product_1969": { + "Product_Code": "Product_1969", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/2", + "Order_Demand": "200 " + }, + "Product_1648": { + "Product_Code": "Product_1648", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/23", + "Order_Demand": "500 " + }, + "Product_1651": { + "Product_Code": "Product_1651", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/21", + "Order_Demand": "1000 " + }, + "Product_1905": { + "Product_Code": "Product_1905", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/8", + "Order_Demand": "100 " + }, + "Product_1901": { + "Product_Code": "Product_1901", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/20", + "Order_Demand": "100 " + }, + "Product_1903": { + "Product_Code": "Product_1903", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/10", + "Order_Demand": "100 " + }, + "Product_1186": { + "Product_Code": "Product_1186", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/7", + "Order_Demand": "50 " + }, + "Product_0620": { + "Product_Code": "Product_0620", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/17", + "Order_Demand": "2 " + }, + "Product_1757": { + "Product_Code": "Product_1757", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/8/29", + "Order_Demand": "2 " + }, + "Product_0608": { + "Product_Code": "Product_0608", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/7/19", + "Order_Demand": "3 " + }, + "Product_1752": { + "Product_Code": "Product_1752", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/15", + "Order_Demand": "2 " + }, + "Product_1755": { + "Product_Code": "Product_1755", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/15", + "Order_Demand": "1 " + }, + "Product_0601": { + "Product_Code": "Product_0601", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/8/23", + "Order_Demand": "50 " + }, + "Product_1986": { + "Product_Code": "Product_1986", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/7/29", + "Order_Demand": "100 " + }, + "Product_0957": { + "Product_Code": "Product_0957", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/7", + "Order_Demand": "200 " + }, + "Product_1999": { + "Product_Code": "Product_1999", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/8/8", + "Order_Demand": "1000 " + }, + "Product_0020": { + "Product_Code": "Product_0020", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/10", + "Order_Demand": "100 " + }, + "Product_0929": { + "Product_Code": "Product_0929", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/4/5", + "Order_Demand": "1000 " + }, + "Product_1349": { + "Product_Code": "Product_1349", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/21", + "Order_Demand": "25000 " + }, + "Product_1279": { + "Product_Code": "Product_1279", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/5", + "Order_Demand": "3000 " + }, + "Product_1394": { + "Product_Code": "Product_1394", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/28", + "Order_Demand": "3000 " + }, + "Product_1511": { + "Product_Code": "Product_1511", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/20", + "Order_Demand": "5000 " + }, + "Product_1280": { + "Product_Code": "Product_1280", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/28", + "Order_Demand": "1000 " + }, + "Product_1406": { + "Product_Code": "Product_1406", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/14", + "Order_Demand": "1000 " + }, + "Product_2014": { + "Product_Code": "Product_2014", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/9", + "Order_Demand": "100 " + }, + "Product_1391": { + "Product_Code": "Product_1391", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/16", + "Order_Demand": "100 " + }, + "Product_1275": { + "Product_Code": "Product_1275", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/13", + "Order_Demand": "1000 " + }, + "Product_2003": { + "Product_Code": "Product_2003", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/22", + "Order_Demand": "200 " + }, + "Product_1387": { + "Product_Code": "Product_1387", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/13", + "Order_Demand": "300 " + }, + "Product_1364": { + "Product_Code": "Product_1364", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/20", + "Order_Demand": "(300)" + }, + "Product_1518": { + "Product_Code": "Product_1518", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/4", + "Order_Demand": "100 " + }, + "Product_1477": { + "Product_Code": "Product_1477", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/30", + "Order_Demand": "100 " + }, + "Product_0832": { + "Product_Code": "Product_0832", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/8", + "Order_Demand": "1000 " + }, + "Product_1463": { + "Product_Code": "Product_1463", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/25", + "Order_Demand": "500 " + }, + "Product_1702": { + "Product_Code": "Product_1702", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/7/28", + "Order_Demand": "1 " + }, + "Product_1705": { + "Product_Code": "Product_1705", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/6/17", + "Order_Demand": "1 " + }, + "Product_1658": { + "Product_Code": "Product_1658", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/10/3", + "Order_Demand": "12 " + }, + "Product_1657": { + "Product_Code": "Product_1657", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/6/10", + "Order_Demand": "1 " + }, + "Product_0930": { + "Product_Code": "Product_0930", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/6/3", + "Order_Demand": "1000 " + }, + "Product_1194": { + "Product_Code": "Product_1194", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/15", + "Order_Demand": "1000 " + }, + "Product_1935": { + "Product_Code": "Product_1935", + "Warehouse": "Whse_S", + "Product_Category": "Category_001", + "Date": "2016/8/30", + "Order_Demand": "1 " + }, + "Product_1281": { + "Product_Code": "Product_1281", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/2", + "Order_Demand": "9000 " + }, + "Product_1355": { + "Product_Code": "Product_1355", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/7", + "Order_Demand": "1000 " + }, + "Product_0084": { + "Product_Code": "Product_0084", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/12/13", + "Order_Demand": "10000 " + }, + "Product_0894": { + "Product_Code": "Product_0894", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/8/5", + "Order_Demand": "350 " + }, + "Product_0643": { + "Product_Code": "Product_0643", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/11/14", + "Order_Demand": "1 " + }, + "Product_1238": { + "Product_Code": "Product_1238", + "Warehouse": "Whse_C", + "Product_Category": "Category_019", + "Date": "2016/3/14", + "Order_Demand": "500 " + }, + "Product_1439": { + "Product_Code": "Product_1439", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/31", + "Order_Demand": "1000 " + }, + "Product_0642": { + "Product_Code": "Product_0642", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/15", + "Order_Demand": "3 " + }, + "Product_1835": { + "Product_Code": "Product_1835", + "Warehouse": "Whse_C", + "Product_Category": "Category_006", + "Date": "2016/12/19", + "Order_Demand": "10000 " + }, + "Product_1823": { + "Product_Code": "Product_1823", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/6/23", + "Order_Demand": "10000 " + }, + "Product_0444": { + "Product_Code": "Product_0444", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/8/4", + "Order_Demand": "1 " + }, + "Product_0535": { + "Product_Code": "Product_0535", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2016/11/28", + "Order_Demand": "11 " + }, + "Product_0533": { + "Product_Code": "Product_0533", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/9/6", + "Order_Demand": "12 " + }, + "Product_0542": { + "Product_Code": "Product_0542", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2015/12/30", + "Order_Demand": "127 " + }, + "Product_0224": { + "Product_Code": "Product_0224", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/10/6", + "Order_Demand": "116 " + }, + "Product_2128": { + "Product_Code": "Product_2128", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/10/14", + "Order_Demand": "1 " + }, + "Product_2118": { + "Product_Code": "Product_2118", + "Warehouse": "Whse_S", + "Product_Category": "Category_009", + "Date": "2016/2/29", + "Order_Demand": "16 " + }, + "Product_2133": { + "Product_Code": "Product_2133", + "Warehouse": "Whse_S", + "Product_Category": "Category_009", + "Date": "2016/6/6", + "Order_Demand": "(1000)" + }, + "Product_0288": { + "Product_Code": "Product_0288", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/4/5", + "Order_Demand": "50 " + }, + "Product_0171": { + "Product_Code": "Product_0171", + "Warehouse": "Whse_S", + "Product_Category": "Category_021", + "Date": "2015/3/4", + "Order_Demand": "1143 " + }, + "Product_1997": { + "Product_Code": "Product_1997", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/4/26", + "Order_Demand": "1000 " + }, + "Product_1341": { + "Product_Code": "Product_1341", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/1/29", + "Order_Demand": "5000 " + }, + "Product_1567": { + "Product_Code": "Product_1567", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/12/29", + "Order_Demand": "43500 " + }, + "Product_1393": { + "Product_Code": "Product_1393", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/19", + "Order_Demand": "3000 " + }, + "Product_1573": { + "Product_Code": "Product_1573", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/8/9", + "Order_Demand": "5000 " + }, + "Product_1523": { + "Product_Code": "Product_1523", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/12", + "Order_Demand": "1000 " + }, + "Product_1505": { + "Product_Code": "Product_1505", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/19", + "Order_Demand": "250 " + }, + "Product_0617": { + "Product_Code": "Product_0617", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/25", + "Order_Demand": "1 " + }, + "Product_2137": { + "Product_Code": "Product_2137", + "Warehouse": "Whse_S", + "Product_Category": "Category_009", + "Date": "2016/6/6", + "Order_Demand": "(1500)" + }, + "Product_2131": { + "Product_Code": "Product_2131", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/10/14", + "Order_Demand": "1 " + }, + "Product_2144": { + "Product_Code": "Product_2144", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/10/18", + "Order_Demand": "5 " + }, + "Product_0333": { + "Product_Code": "Product_0333", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/10/12", + "Order_Demand": "1 " + }, + "Product_1617": { + "Product_Code": "Product_1617", + "Warehouse": "Whse_S", + "Product_Category": "Category_024", + "Date": "2016/6/6", + "Order_Demand": "(8)" + }, + "Product_1645": { + "Product_Code": "Product_1645", + "Warehouse": "Whse_S", + "Product_Category": "Category_024", + "Date": "2016/6/6", + "Order_Demand": "(4)" + }, + "Product_2167": { + "Product_Code": "Product_2167", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/3/14", + "Order_Demand": "15 " + }, + "Product_0202": { + "Product_Code": "Product_0202", + "Warehouse": "Whse_S", + "Product_Category": "Category_007", + "Date": "2016/6/6", + "Order_Demand": "(7000)" + }, + "Product_0204": { + "Product_Code": "Product_0204", + "Warehouse": "Whse_S", + "Product_Category": "Category_007", + "Date": "2016/6/6", + "Order_Demand": "(3000)" + }, + "Product_0209": { + "Product_Code": "Product_0209", + "Warehouse": "Whse_S", + "Product_Category": "Category_007", + "Date": "2016/8/22", + "Order_Demand": "500 " + }, + "Product_0213": { + "Product_Code": "Product_0213", + "Warehouse": "Whse_S", + "Product_Category": "Category_007", + "Date": "2016/6/6", + "Order_Demand": "(4000)" + }, + "Product_0159": { + "Product_Code": "Product_0159", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/11/8", + "Order_Demand": "30 " + }, + "Product_0200": { + "Product_Code": "Product_0200", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/2/10", + "Order_Demand": "48 " + }, + "Product_0208": { + "Product_Code": "Product_0208", + "Warehouse": "Whse_C", + "Product_Category": "Category_007", + "Date": "2016/3/25", + "Order_Demand": "(35)" + }, + "Product_0211": { + "Product_Code": "Product_0211", + "Warehouse": "Whse_A", + "Product_Category": "Category_007", + "Date": "2016/4/6", + "Order_Demand": "30 " + }, + "Product_0221": { + "Product_Code": "Product_0221", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/10/6", + "Order_Demand": "98 " + }, + "Product_0206": { + "Product_Code": "Product_0206", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/1/25", + "Order_Demand": "10 " + }, + "Product_2139": { + "Product_Code": "Product_2139", + "Warehouse": "Whse_S", + "Product_Category": "Category_009", + "Date": "2016/6/13", + "Order_Demand": "56 " + }, + "Product_2145": { + "Product_Code": "Product_2145", + "Warehouse": "Whse_S", + "Product_Category": "Category_009", + "Date": "2016/6/20", + "Order_Demand": "28 " + }, + "Product_2132": { + "Product_Code": "Product_2132", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/9/7", + "Order_Demand": "7 " + }, + "Product_2138": { + "Product_Code": "Product_2138", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/12/7", + "Order_Demand": "29 " + }, + "Product_0158": { + "Product_Code": "Product_0158", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/3/1", + "Order_Demand": "15 " + }, + "Product_0353": { + "Product_Code": "Product_0353", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/2/29", + "Order_Demand": "1 " + }, + "Product_0287": { + "Product_Code": "Product_0287", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/11/11", + "Order_Demand": "30 " + }, + "Product_0349": { + "Product_Code": "Product_0349", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/3/28", + "Order_Demand": "6 " + }, + "Product_1616": { + "Product_Code": "Product_1616", + "Warehouse": "Whse_S", + "Product_Category": "Category_024", + "Date": "2016/12/19", + "Order_Demand": "10 " + }, + "Product_1618": { + "Product_Code": "Product_1618", + "Warehouse": "Whse_S", + "Product_Category": "Category_024", + "Date": "2016/12/5", + "Order_Demand": "30 " + }, + "Product_1644": { + "Product_Code": "Product_1644", + "Warehouse": "Whse_S", + "Product_Category": "Category_024", + "Date": "2016/12/19", + "Order_Demand": "5 " + }, + "Product_1646": { + "Product_Code": "Product_1646", + "Warehouse": "Whse_S", + "Product_Category": "Category_024", + "Date": "2016/12/5", + "Order_Demand": "15 " + }, + "Product_2143": { + "Product_Code": "Product_2143", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/6/20", + "Order_Demand": "5 " + }, + "Product_2141": { + "Product_Code": "Product_2141", + "Warehouse": "Whse_S", + "Product_Category": "Category_009", + "Date": "2016/8/8", + "Order_Demand": "216 " + }, + "Product_2142": { + "Product_Code": "Product_2142", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/3/31", + "Order_Demand": "15 " + }, + "Product_2146": { + "Product_Code": "Product_2146", + "Warehouse": "Whse_S", + "Product_Category": "Category_009", + "Date": "2016/9/19", + "Order_Demand": "7 " + }, + "Product_2129": { + "Product_Code": "Product_2129", + "Warehouse": "Whse_S", + "Product_Category": "Category_009", + "Date": "2016/7/25", + "Order_Demand": "2 " + }, + "Product_2136": { + "Product_Code": "Product_2136", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/6/22", + "Order_Demand": "2 " + }, + "Product_0352": { + "Product_Code": "Product_0352", + "Warehouse": "Whse_S", + "Product_Category": "Category_021", + "Date": "2016/12/5", + "Order_Demand": "21 " + }, + "Product_0154": { + "Product_Code": "Product_0154", + "Warehouse": "Whse_S", + "Product_Category": "Category_021", + "Date": "2016/11/21", + "Order_Demand": "350 " + }, + "Product_2169": { + "Product_Code": "Product_2169", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/3/1", + "Order_Demand": "3 " + }, + "Product_2166": { + "Product_Code": "Product_2166", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/1/6", + "Order_Demand": "15 " + }, + "Product_2135": { + "Product_Code": "Product_2135", + "Warehouse": "Whse_S", + "Product_Category": "Category_009", + "Date": "2016/6/6", + "Order_Demand": "(1000)" + }, + "Product_0155": { + "Product_Code": "Product_0155", + "Warehouse": "Whse_S", + "Product_Category": "Category_021", + "Date": "2016/8/15", + "Order_Demand": "300 " + }, + "Product_2165": { + "Product_Code": "Product_2165", + "Warehouse": "Whse_S", + "Product_Category": "Category_024", + "Date": "2016/11/28", + "Order_Demand": "3 " + }, + "Product_0354": { + "Product_Code": "Product_0354", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/6/28", + "Order_Demand": "2 " + }, + "Product_0002": { + "Product_Code": "Product_0002", + "Warehouse": "Whse_S", + "Product_Category": "Category_005", + "Date": "2016/1/17", + "Order_Demand": "9000 " + }, + "Product_1859": { + "Product_Code": "Product_1859", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/23", + "Order_Demand": "3 " + }, + "Product_1967": { + "Product_Code": "Product_1967", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/8/30", + "Order_Demand": "1000 " + }, + "Product_1564": { + "Product_Code": "Product_1564", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/5", + "Order_Demand": "100 " + }, + "Product_0063": { + "Product_Code": "Product_0063", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2015/11/18", + "Order_Demand": "(1000)" + }, + "Product_1342": { + "Product_Code": "Product_1342", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/4/29", + "Order_Demand": "50000 " + }, + "Product_0094": { + "Product_Code": "Product_0094", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/11/29", + "Order_Demand": "5000 " + }, + "Product_0891": { + "Product_Code": "Product_0891", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/2/14", + "Order_Demand": "40 " + }, + "Product_0892": { + "Product_Code": "Product_0892", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/11/21", + "Order_Demand": "170 " + }, + "Product_0893": { + "Product_Code": "Product_0893", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/10/26", + "Order_Demand": "30 " + }, + "Product_0889": { + "Product_Code": "Product_0889", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/12/8", + "Order_Demand": "300 " + }, + "Product_0884": { + "Product_Code": "Product_0884", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/12/1", + "Order_Demand": "6 " + }, + "Product_0872": { + "Product_Code": "Product_0872", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/1/28", + "Order_Demand": "200 " + }, + "Product_0883": { + "Product_Code": "Product_0883", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/1/28", + "Order_Demand": "100 " + }, + "Product_0877": { + "Product_Code": "Product_0877", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/12/15", + "Order_Demand": "230 " + }, + "Product_0890": { + "Product_Code": "Product_0890", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/1/18", + "Order_Demand": "20 " + }, + "Product_0368": { + "Product_Code": "Product_0368", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/9/19", + "Order_Demand": "10000 " + }, + "Product_0453": { + "Product_Code": "Product_0453", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/12/15", + "Order_Demand": "16 " + }, + "Product_0463": { + "Product_Code": "Product_0463", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/2/15", + "Order_Demand": "7 " + }, + "Product_0445": { + "Product_Code": "Product_0445", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/2/29", + "Order_Demand": "3 " + }, + "Product_0304": { + "Product_Code": "Product_0304", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/3/30", + "Order_Demand": "17 " + }, + "Product_0150": { + "Product_Code": "Product_0150", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/2/12", + "Order_Demand": "1 " + }, + "Product_0458": { + "Product_Code": "Product_0458", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/11/17", + "Order_Demand": "20 " + }, + "Product_0538": { + "Product_Code": "Product_0538", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/8/22", + "Order_Demand": "4 " + }, + "Product_0541": { + "Product_Code": "Product_0541", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2016/11/28", + "Order_Demand": "2 " + }, + "Product_2124": { + "Product_Code": "Product_2124", + "Warehouse": "Whse_S", + "Product_Category": "Category_009", + "Date": "2016/11/18", + "Order_Demand": "5 " + }, + "Product_0343": { + "Product_Code": "Product_0343", + "Warehouse": "Whse_S", + "Product_Category": "Category_021", + "Date": "2016/4/20", + "Order_Demand": "83 " + }, + "Product_0131": { + "Product_Code": "Product_0131", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/5/12", + "Order_Demand": "10 " + }, + "Product_0162": { + "Product_Code": "Product_0162", + "Warehouse": "Whse_S", + "Product_Category": "Category_021", + "Date": "2016/2/29", + "Order_Demand": "16 " + }, + "Product_1092": { + "Product_Code": "Product_1092", + "Warehouse": "Whse_S", + "Product_Category": "Category_024", + "Date": "2016/12/12", + "Order_Demand": "3 " + }, + "Product_0936": { + "Product_Code": "Product_0936", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/4/12", + "Order_Demand": "2500 " + }, + "Product_0374": { + "Product_Code": "Product_0374", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/11/10", + "Order_Demand": "10000 " + }, + "Product_0385": { + "Product_Code": "Product_0385", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/11/13", + "Order_Demand": "5000 " + }, + "Product_0387": { + "Product_Code": "Product_0387", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/3/18", + "Order_Demand": "5000 " + }, + "Product_1485": { + "Product_Code": "Product_1485", + "Warehouse": "Whse_C", + "Product_Category": "Category_019", + "Date": "2016/1/8", + "Order_Demand": "1000 " + }, + "Product_1520": { + "Product_Code": "Product_1520", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/15", + "Order_Demand": "3000 " + }, + "Product_1571": { + "Product_Code": "Product_1571", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/12/22", + "Order_Demand": "13000 " + }, + "Product_0544": { + "Product_Code": "Product_0544", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/9/27", + "Order_Demand": "4 " + }, + "Product_0034": { + "Product_Code": "Product_0034", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/6/3", + "Order_Demand": "100 " + }, + "Product_1466": { + "Product_Code": "Product_1466", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/20", + "Order_Demand": "5000 " + }, + "Product_0390": { + "Product_Code": "Product_0390", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/8/31", + "Order_Demand": "1000 " + }, + "Product_0111": { + "Product_Code": "Product_0111", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/8/19", + "Order_Demand": "246 " + }, + "Product_0115": { + "Product_Code": "Product_0115", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/8/24", + "Order_Demand": "48 " + }, + "Product_0588": { + "Product_Code": "Product_0588", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/1/5", + "Order_Demand": "18 " + }, + "Product_1719": { + "Product_Code": "Product_1719", + "Warehouse": "Whse_J", + "Product_Category": "Category_003", + "Date": "2016/12/14", + "Order_Demand": "1 " + }, + "Product_1435": { + "Product_Code": "Product_1435", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/15", + "Order_Demand": "2000 " + }, + "Product_0146": { + "Product_Code": "Product_0146", + "Warehouse": "Whse_S", + "Product_Category": "Category_005", + "Date": "2016/9/18", + "Order_Demand": "1000 " + }, + "Product_0145": { + "Product_Code": "Product_0145", + "Warehouse": "Whse_S", + "Product_Category": "Category_005", + "Date": "2016/6/20", + "Order_Demand": "1000 " + }, + "Product_1404": { + "Product_Code": "Product_1404", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/15", + "Order_Demand": "1000 " + }, + "Product_0553": { + "Product_Code": "Product_0553", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/11/10", + "Order_Demand": "500 " + }, + "Product_1450": { + "Product_Code": "Product_1450", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/31", + "Order_Demand": "1000 " + }, + "Product_1356": { + "Product_Code": "Product_1356", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/5", + "Order_Demand": "1000 " + }, + "Product_1219": { + "Product_Code": "Product_1219", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/6", + "Order_Demand": "1000 " + }, + "Product_1447": { + "Product_Code": "Product_1447", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/2", + "Order_Demand": "1000 " + }, + "Product_1273": { + "Product_Code": "Product_1273", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/18", + "Order_Demand": "1000 " + }, + "Product_1527": { + "Product_Code": "Product_1527", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/12", + "Order_Demand": "1000 " + }, + "Product_1153": { + "Product_Code": "Product_1153", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/2/22", + "Order_Demand": "5000 " + }, + "Product_0676": { + "Product_Code": "Product_0676", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/26", + "Order_Demand": "60 " + }, + "Product_0689": { + "Product_Code": "Product_0689", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/4/12", + "Order_Demand": "80 " + }, + "Product_2013": { + "Product_Code": "Product_2013", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/12", + "Order_Demand": "300 " + }, + "Product_1992": { + "Product_Code": "Product_1992", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/11", + "Order_Demand": "100 " + }, + "Product_0942": { + "Product_Code": "Product_0942", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/3/1", + "Order_Demand": "100 " + }, + "Product_1972": { + "Product_Code": "Product_1972", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/8", + "Order_Demand": "1000 " + }, + "Product_1981": { + "Product_Code": "Product_1981", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/3/8", + "Order_Demand": "500 " + }, + "Product_1135": { + "Product_Code": "Product_1135", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/3", + "Order_Demand": "2000 " + }, + "Product_1218": { + "Product_Code": "Product_1218", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/10", + "Order_Demand": "1000 " + }, + "Product_0013": { + "Product_Code": "Product_0013", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/2/5", + "Order_Demand": "100 " + }, + "Product_0014": { + "Product_Code": "Product_0014", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/3/1", + "Order_Demand": "1000 " + }, + "Product_1515": { + "Product_Code": "Product_1515", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/25", + "Order_Demand": "400 " + }, + "Product_0831": { + "Product_Code": "Product_0831", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/15", + "Order_Demand": "10000 " + }, + "Product_2019": { + "Product_Code": "Product_2019", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/9/8", + "Order_Demand": "100 " + }, + "Product_0036": { + "Product_Code": "Product_0036", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/9/16", + "Order_Demand": "500 " + }, + "Product_1501": { + "Product_Code": "Product_1501", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/27", + "Order_Demand": "500 " + }, + "Product_1039": { + "Product_Code": "Product_1039", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/5", + "Order_Demand": "100 " + }, + "Product_1399": { + "Product_Code": "Product_1399", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/4", + "Order_Demand": "2000 " + }, + "Product_1817": { + "Product_Code": "Product_1817", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/12/9", + "Order_Demand": "5000 " + }, + "Product_1552": { + "Product_Code": "Product_1552", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/6", + "Order_Demand": "100 " + }, + "Product_1290": { + "Product_Code": "Product_1290", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/24", + "Order_Demand": "3000 " + }, + "Product_1287": { + "Product_Code": "Product_1287", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/23", + "Order_Demand": "200 " + }, + "Product_1652": { + "Product_Code": "Product_1652", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/25", + "Order_Demand": "500 " + }, + "Product_1288": { + "Product_Code": "Product_1288", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/13", + "Order_Demand": "5000 " + }, + "Product_1102": { + "Product_Code": "Product_1102", + "Warehouse": "Whse_S", + "Product_Category": "Category_004", + "Date": "2015/12/9", + "Order_Demand": "400 " + }, + "Product_1538": { + "Product_Code": "Product_1538", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/1", + "Order_Demand": "200 " + }, + "Product_0127": { + "Product_Code": "Product_0127", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/13", + "Order_Demand": "1000 " + }, + "Product_1723": { + "Product_Code": "Product_1723", + "Warehouse": "Whse_J", + "Product_Category": "Category_003", + "Date": "2016/11/14", + "Order_Demand": "1 " + }, + "Product_1722": { + "Product_Code": "Product_1722", + "Warehouse": "Whse_J", + "Product_Category": "Category_003", + "Date": "2016/6/15", + "Order_Demand": "1 " + }, + "Product_0495": { + "Product_Code": "Product_0495", + "Warehouse": "Whse_S", + "Product_Category": "Category_015", + "Date": "2016/12/29", + "Order_Demand": "5 " + }, + "Product_2154": { + "Product_Code": "Product_2154", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/8/31", + "Order_Demand": "480 " + }, + "Product_2156": { + "Product_Code": "Product_2156", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2016/3/14", + "Order_Demand": "2 " + }, + "Product_2157": { + "Product_Code": "Product_2157", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/4/1", + "Order_Demand": "40 " + }, + "Product_2158": { + "Product_Code": "Product_2158", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/12/12", + "Order_Demand": "(20)" + }, + "Product_2125": { + "Product_Code": "Product_2125", + "Warehouse": "Whse_S", + "Product_Category": "Category_009", + "Date": "2016/4/4", + "Order_Demand": "11 " + }, + "Product_2126": { + "Product_Code": "Product_2126", + "Warehouse": "Whse_S", + "Product_Category": "Category_009", + "Date": "2016/10/31", + "Order_Demand": "25 " + }, + "Product_0516": { + "Product_Code": "Product_0516", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/12/7", + "Order_Demand": "9 " + }, + "Product_0524": { + "Product_Code": "Product_0524", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/12/7", + "Order_Demand": "9 " + }, + "Product_0534": { + "Product_Code": "Product_0534", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/5/19", + "Order_Demand": "2 " + }, + "Product_0226": { + "Product_Code": "Product_0226", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/2/2", + "Order_Demand": "52 " + }, + "Product_0227": { + "Product_Code": "Product_0227", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/10/3", + "Order_Demand": "6 " + }, + "Product_0229": { + "Product_Code": "Product_0229", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/1/18", + "Order_Demand": "36 " + }, + "Product_0231": { + "Product_Code": "Product_0231", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/10/26", + "Order_Demand": "32 " + }, + "Product_0261": { + "Product_Code": "Product_0261", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/9/6", + "Order_Demand": "6 " + }, + "Product_0432": { + "Product_Code": "Product_0432", + "Warehouse": "Whse_J", + "Product_Category": "Category_018", + "Date": "2016/2/26", + "Order_Demand": "1 " + }, + "Product_1797": { + "Product_Code": "Product_1797", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/15", + "Order_Demand": "20 " + }, + "Product_1798": { + "Product_Code": "Product_1798", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/6/23", + "Order_Demand": "10 " + }, + "Product_0562": { + "Product_Code": "Product_0562", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/7/11", + "Order_Demand": "2000 " + }, + "Product_0557": { + "Product_Code": "Product_0557", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/6/30", + "Order_Demand": "1000 " + }, + "Product_1593": { + "Product_Code": "Product_1593", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/8/3", + "Order_Demand": "3000 " + }, + "Product_1247": { + "Product_Code": "Product_1247", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/28", + "Order_Demand": "1000 " + }, + "Product_1295": { + "Product_Code": "Product_1295", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/13", + "Order_Demand": "5000 " + }, + "Product_1378": { + "Product_Code": "Product_1378", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/18", + "Order_Demand": "1000 " + }, + "Product_1382": { + "Product_Code": "Product_1382", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/1", + "Order_Demand": "3000 " + }, + "Product_1453": { + "Product_Code": "Product_1453", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/18", + "Order_Demand": "1000 " + }, + "Product_1456": { + "Product_Code": "Product_1456", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/20", + "Order_Demand": "(5000)" + }, + "Product_1455": { + "Product_Code": "Product_1455", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/21", + "Order_Demand": "150 " + }, + "Product_0503": { + "Product_Code": "Product_0503", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/7/15", + "Order_Demand": "1 " + }, + "Product_0512": { + "Product_Code": "Product_0512", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/9/6", + "Order_Demand": "66 " + }, + "Product_0519": { + "Product_Code": "Product_0519", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2016/11/28", + "Order_Demand": "1 " + }, + "Product_0522": { + "Product_Code": "Product_0522", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2016/11/28", + "Order_Demand": "264 " + }, + "Product_0528": { + "Product_Code": "Product_0528", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2016/11/28", + "Order_Demand": "15 " + }, + "Product_0530": { + "Product_Code": "Product_0530", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2016/11/28", + "Order_Demand": "7 " + }, + "Product_0537": { + "Product_Code": "Product_0537", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/9/6", + "Order_Demand": "2 " + }, + "Product_2153": { + "Product_Code": "Product_2153", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/11/25", + "Order_Demand": "130 " + }, + "Product_2155": { + "Product_Code": "Product_2155", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/4/25", + "Order_Demand": "1 " + }, + "Product_1118": { + "Product_Code": "Product_1118", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/4/14", + "Order_Demand": "4 " + }, + "Product_0217": { + "Product_Code": "Product_0217", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/10/6", + "Order_Demand": "180 " + }, + "Product_0153": { + "Product_Code": "Product_0153", + "Warehouse": "Whse_S", + "Product_Category": "Category_021", + "Date": "2016/11/2", + "Order_Demand": "186 " + }, + "Product_1847": { + "Product_Code": "Product_1847", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/3/11", + "Order_Demand": "200 " + }, + "Product_1479": { + "Product_Code": "Product_1479", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/2", + "Order_Demand": "1000 " + }, + "Product_0021": { + "Product_Code": "Product_0021", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/4/20", + "Order_Demand": "10000 " + }, + "Product_1343": { + "Product_Code": "Product_1343", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/7/18", + "Order_Demand": "5000 " + }, + "Product_1216": { + "Product_Code": "Product_1216", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/5", + "Order_Demand": "1000 " + }, + "Product_1224": { + "Product_Code": "Product_1224", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/3", + "Order_Demand": "1000 " + }, + "Product_1108": { + "Product_Code": "Product_1108", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/5", + "Order_Demand": "500 " + }, + "Product_1109": { + "Product_Code": "Product_1109", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/6/22", + "Order_Demand": "0 " + }, + "Product_0379": { + "Product_Code": "Product_0379", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/9/29", + "Order_Demand": "3000 " + }, + "Product_1064": { + "Product_Code": "Product_1064", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2015/11/30", + "Order_Demand": "50 " + }, + "Product_1065": { + "Product_Code": "Product_1065", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2015/10/29", + "Order_Demand": "260 " + }, + "Product_1068": { + "Product_Code": "Product_1068", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2015/4/29", + "Order_Demand": "200 " + }, + "Product_1073": { + "Product_Code": "Product_1073", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2015/12/28", + "Order_Demand": "500 " + }, + "Product_1076": { + "Product_Code": "Product_1076", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2016/6/29", + "Order_Demand": "100 " + }, + "Product_1078": { + "Product_Code": "Product_1078", + "Warehouse": "Whse_C", + "Product_Category": "Category_020", + "Date": "2016/9/22", + "Order_Demand": "(684)" + }, + "Product_1079": { + "Product_Code": "Product_1079", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2016/11/22", + "Order_Demand": "200 " + }, + "Product_1088": { + "Product_Code": "Product_1088", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2015/12/15", + "Order_Demand": "100 " + }, + "Product_1089": { + "Product_Code": "Product_1089", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2016/10/4", + "Order_Demand": "9 " + }, + "Product_1066": { + "Product_Code": "Product_1066", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2015/9/29", + "Order_Demand": "300 " + }, + "Product_1069": { + "Product_Code": "Product_1069", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2016/10/4", + "Order_Demand": "800 " + }, + "Product_1072": { + "Product_Code": "Product_1072", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2016/10/25", + "Order_Demand": "150 " + }, + "Product_1082": { + "Product_Code": "Product_1082", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2015/12/28", + "Order_Demand": "160 " + }, + "Product_1070": { + "Product_Code": "Product_1070", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2016/10/11", + "Order_Demand": "50 " + }, + "Product_1071": { + "Product_Code": "Product_1071", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2016/10/4", + "Order_Demand": "14 " + }, + "Product_1074": { + "Product_Code": "Product_1074", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2015/11/3", + "Order_Demand": "140 " + }, + "Product_1080": { + "Product_Code": "Product_1080", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2015/4/6", + "Order_Demand": "1600 " + }, + "Product_1077": { + "Product_Code": "Product_1077", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2017/1/3", + "Order_Demand": "200 " + }, + "Product_1081": { + "Product_Code": "Product_1081", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2015/4/29", + "Order_Demand": "200 " + }, + "Product_1075": { + "Product_Code": "Product_1075", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2015/4/29", + "Order_Demand": "200 " + }, + "Product_0685": { + "Product_Code": "Product_0685", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/10/6", + "Order_Demand": "20 " + }, + "Product_0443": { + "Product_Code": "Product_0443", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/12/1", + "Order_Demand": "5 " + }, + "Product_1891": { + "Product_Code": "Product_1891", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/10/21", + "Order_Demand": "100 " + }, + "Product_2168": { + "Product_Code": "Product_2168", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/11/18", + "Order_Demand": "3 " + }, + "Product_1213": { + "Product_Code": "Product_1213", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/21", + "Order_Demand": "800 " + }, + "Product_0455": { + "Product_Code": "Product_0455", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/3/17", + "Order_Demand": "3 " + }, + "Product_0460": { + "Product_Code": "Product_0460", + "Warehouse": "Whse_S", + "Product_Category": "Category_015", + "Date": "2016/8/8", + "Order_Demand": "116 " + }, + "Product_0172": { + "Product_Code": "Product_0172", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/2/8", + "Order_Demand": "1 " + }, + "Product_0966": { + "Product_Code": "Product_0966", + "Warehouse": "Whse_S", + "Product_Category": "Category_006", + "Date": "2016/5/19", + "Order_Demand": "20 " + }, + "Product_1005": { + "Product_Code": "Product_1005", + "Warehouse": "Whse_S", + "Product_Category": "Category_006", + "Date": "2016/12/22", + "Order_Demand": "1000 " + }, + "Product_1008": { + "Product_Code": "Product_1008", + "Warehouse": "Whse_S", + "Product_Category": "Category_006", + "Date": "2016/12/2", + "Order_Demand": "2000 " + }, + "Product_1488": { + "Product_Code": "Product_1488", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/2/19", + "Order_Demand": "2000 " + }, + "Product_1182": { + "Product_Code": "Product_1182", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/11/7", + "Order_Demand": "100 " + }, + "Product_1185": { + "Product_Code": "Product_1185", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/8/8", + "Order_Demand": "300 " + }, + "Product_1222": { + "Product_Code": "Product_1222", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/25", + "Order_Demand": "1300 " + }, + "Product_0050": { + "Product_Code": "Product_0050", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/18", + "Order_Demand": "100 " + }, + "Product_0392": { + "Product_Code": "Product_0392", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/3/21", + "Order_Demand": "7000 " + }, + "Product_0411": { + "Product_Code": "Product_0411", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/2/1", + "Order_Demand": "20000 " + }, + "Product_1742": { + "Product_Code": "Product_1742", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/8/19", + "Order_Demand": "1000 " + }, + "Product_1744": { + "Product_Code": "Product_1744", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/11/30", + "Order_Demand": "6000 " + }, + "Product_1846": { + "Product_Code": "Product_1846", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/9/14", + "Order_Demand": "1000 " + }, + "Product_1812": { + "Product_Code": "Product_1812", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/10/3", + "Order_Demand": "5000 " + }, + "Product_0958": { + "Product_Code": "Product_0958", + "Warehouse": "Whse_S", + "Product_Category": "Category_005", + "Date": "2016/7/27", + "Order_Demand": "1000 " + }, + "Product_1631": { + "Product_Code": "Product_1631", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/10/30", + "Order_Demand": "1000 " + }, + "Product_1129": { + "Product_Code": "Product_1129", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/11/15", + "Order_Demand": "2000 " + }, + "Product_1822": { + "Product_Code": "Product_1822", + "Warehouse": "Whse_J", + "Product_Category": "Category_018", + "Date": "2016/2/16", + "Order_Demand": "3 " + }, + "Product_1346": { + "Product_Code": "Product_1346", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/3", + "Order_Demand": "1000 " + }, + "Product_1766": { + "Product_Code": "Product_1766", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/22", + "Order_Demand": "1000 " + }, + "Product_1190": { + "Product_Code": "Product_1190", + "Warehouse": "Whse_C", + "Product_Category": "Category_019", + "Date": "2016/2/3", + "Order_Demand": "1000 " + }, + "Product_1507": { + "Product_Code": "Product_1507", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/4", + "Order_Demand": "0 " + }, + "Product_1528": { + "Product_Code": "Product_1528", + "Warehouse": "Whse_C", + "Product_Category": "Category_019", + "Date": "2016/9/21", + "Order_Demand": "3000 " + }, + "Product_1548": { + "Product_Code": "Product_1548", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "NA", + "Order_Demand": "(50)" + }, + "Product_1465": { + "Product_Code": "Product_1465", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/21", + "Order_Demand": "2000 " + }, + "Product_0885": { + "Product_Code": "Product_0885", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/11/29", + "Order_Demand": "50 " + }, + "Product_0871": { + "Product_Code": "Product_0871", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/11/24", + "Order_Demand": "400 " + }, + "Product_0870": { + "Product_Code": "Product_0870", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/11/8", + "Order_Demand": "100 " + }, + "Product_0887": { + "Product_Code": "Product_0887", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/12/15", + "Order_Demand": "250 " + }, + "Product_0888": { + "Product_Code": "Product_0888", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/12/6", + "Order_Demand": "100 " + }, + "Product_0881": { + "Product_Code": "Product_0881", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/5/24", + "Order_Demand": "50 " + }, + "Product_0880": { + "Product_Code": "Product_0880", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/12/15", + "Order_Demand": "760 " + }, + "Product_0876": { + "Product_Code": "Product_0876", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/12/5", + "Order_Demand": "25 " + }, + "Product_0886": { + "Product_Code": "Product_0886", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/2/19", + "Order_Demand": "50 " + }, + "Product_0882": { + "Product_Code": "Product_0882", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/12/6", + "Order_Demand": "10 " + }, + "Product_0874": { + "Product_Code": "Product_0874", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/12/6", + "Order_Demand": "25 " + }, + "Product_0552": { + "Product_Code": "Product_0552", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/11/10", + "Order_Demand": "1500 " + }, + "Product_1738": { + "Product_Code": "Product_1738", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/11/30", + "Order_Demand": "1000 " + }, + "Product_1733": { + "Product_Code": "Product_1733", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/30", + "Order_Demand": "1000 " + }, + "Product_0098": { + "Product_Code": "Product_0098", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/19", + "Order_Demand": "7000 " + }, + "Product_0070": { + "Product_Code": "Product_0070", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/30", + "Order_Demand": "1000 " + }, + "Product_0082": { + "Product_Code": "Product_0082", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/30", + "Order_Demand": "2000 " + }, + "Product_0093": { + "Product_Code": "Product_0093", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/30", + "Order_Demand": "1000 " + }, + "Product_0932": { + "Product_Code": "Product_0932", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/6/6", + "Order_Demand": "1000 " + }, + "Product_1198": { + "Product_Code": "Product_1198", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/13", + "Order_Demand": "1000 " + }, + "Product_1193": { + "Product_Code": "Product_1193", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/11", + "Order_Demand": "200 " + }, + "Product_0357": { + "Product_Code": "Product_0357", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/13", + "Order_Demand": "1000 " + }, + "Product_1403": { + "Product_Code": "Product_1403", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/15", + "Order_Demand": "1000 " + }, + "Product_1794": { + "Product_Code": "Product_1794", + "Warehouse": "Whse_S", + "Product_Category": "Category_024", + "Date": "2016/7/11", + "Order_Demand": "5 " + }, + "Product_1151": { + "Product_Code": "Product_1151", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/12/27", + "Order_Demand": "10000 " + }, + "Product_1980": { + "Product_Code": "Product_1980", + "Warehouse": "Whse_C", + "Product_Category": "Category_005", + "Date": "2016/3/18", + "Order_Demand": "12000 " + }, + "Product_0879": { + "Product_Code": "Product_0879", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/7/6", + "Order_Demand": "100 " + }, + "Product_1010": { + "Product_Code": "Product_1010", + "Warehouse": "Whse_C", + "Product_Category": "Category_005", + "Date": "2016/12/12", + "Order_Demand": "1000 " + }, + "Product_1612": { + "Product_Code": "Product_1612", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/6/2", + "Order_Demand": "100 " + }, + "Product_0614": { + "Product_Code": "Product_0614", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/4/18", + "Order_Demand": "3 " + }, + "Product_1166": { + "Product_Code": "Product_1166", + "Warehouse": "Whse_C", + "Product_Category": "Category_006", + "Date": "2016/10/8", + "Order_Demand": "20000 " + }, + "Product_0998": { + "Product_Code": "Product_0998", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/10/25", + "Order_Demand": "1000 " + }, + "Product_1001": { + "Product_Code": "Product_1001", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/10/25", + "Order_Demand": "1000 " + }, + "Product_1000": { + "Product_Code": "Product_1000", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/9/15", + "Order_Demand": "250 " + }, + "Product_0975": { + "Product_Code": "Product_0975", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/3/1", + "Order_Demand": "200 " + }, + "Product_0514": { + "Product_Code": "Product_0514", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/4/18", + "Order_Demand": "36 " + }, + "Product_0517": { + "Product_Code": "Product_0517", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/4/18", + "Order_Demand": "7 " + }, + "Product_0521": { + "Product_Code": "Product_0521", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2016/9/14", + "Order_Demand": "15 " + }, + "Product_0529": { + "Product_Code": "Product_0529", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/5/16", + "Order_Demand": "4 " + }, + "Product_0511": { + "Product_Code": "Product_0511", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2016/4/18", + "Order_Demand": "30 " + }, + "Product_0520": { + "Product_Code": "Product_0520", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/5/19", + "Order_Demand": "1 " + }, + "Product_0536": { + "Product_Code": "Product_0536", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2016/1/4", + "Order_Demand": "4 " + }, + "Product_1545": { + "Product_Code": "Product_1545", + "Warehouse": "Whse_C", + "Product_Category": "Category_019", + "Date": "2016/12/7", + "Order_Demand": "3000 " + }, + "Product_0622": { + "Product_Code": "Product_0622", + "Warehouse": "Whse_C", + "Product_Category": "Category_001", + "Date": "2016/12/29", + "Order_Demand": "(50)" + }, + "Product_0649": { + "Product_Code": "Product_0649", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/1/20", + "Order_Demand": "200 " + }, + "Product_1870": { + "Product_Code": "Product_1870", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/9/21", + "Order_Demand": "1 " + }, + "Product_1987": { + "Product_Code": "Product_1987", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/9/21", + "Order_Demand": "500 " + }, + "Product_1977": { + "Product_Code": "Product_1977", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/8", + "Order_Demand": "5000 " + }, + "Product_0007": { + "Product_Code": "Product_0007", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/16", + "Order_Demand": "100 " + }, + "Product_0250": { + "Product_Code": "Product_0250", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/9/6", + "Order_Demand": "4 " + }, + "Product_0168": { + "Product_Code": "Product_0168", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/7/5", + "Order_Demand": "12 " + }, + "Product_0170": { + "Product_Code": "Product_0170", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/11/8", + "Order_Demand": "2 " + }, + "Product_0329": { + "Product_Code": "Product_0329", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/11/21", + "Order_Demand": "10 " + }, + "Product_0548": { + "Product_Code": "Product_0548", + "Warehouse": "Whse_J", + "Product_Category": "Category_013", + "Date": "2016/9/29", + "Order_Demand": "10 " + }, + "Product_0631": { + "Product_Code": "Product_0631", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/23", + "Order_Demand": "1 " + }, + "Product_0632": { + "Product_Code": "Product_0632", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/9/9", + "Order_Demand": "1 " + }, + "Product_1636": { + "Product_Code": "Product_1636", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/1", + "Order_Demand": "100 " + }, + "Product_0431": { + "Product_Code": "Product_0431", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/10/3", + "Order_Demand": "100 " + }, + "Product_0273": { + "Product_Code": "Product_0273", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/9/20", + "Order_Demand": "20 " + }, + "Product_0079": { + "Product_Code": "Product_0079", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/14", + "Order_Demand": "8000 " + }, + "Product_1344": { + "Product_Code": "Product_1344", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/11", + "Order_Demand": "1000 " + }, + "Product_1407": { + "Product_Code": "Product_1407", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/2", + "Order_Demand": "2000 " + }, + "Product_1762": { + "Product_Code": "Product_1762", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/7", + "Order_Demand": "4 " + }, + "Product_1754": { + "Product_Code": "Product_1754", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/9", + "Order_Demand": "1 " + }, + "Product_1760": { + "Product_Code": "Product_1760", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/9", + "Order_Demand": "1 " + }, + "Product_0376": { + "Product_Code": "Product_0376", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/28", + "Order_Demand": "5000 " + }, + "Product_0587": { + "Product_Code": "Product_0587", + "Warehouse": "Whse_S", + "Product_Category": "Category_032", + "Date": "2016/12/23", + "Order_Demand": "30 " + }, + "Product_0589": { + "Product_Code": "Product_0589", + "Warehouse": "Whse_S", + "Product_Category": "Category_032", + "Date": "2016/11/30", + "Order_Demand": "1860 " + }, + "Product_0549": { + "Product_Code": "Product_0549", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/12", + "Order_Demand": "500 " + }, + "Product_0312": { + "Product_Code": "Product_0312", + "Warehouse": "Whse_C", + "Product_Category": "Category_024", + "Date": "2016/11/14", + "Order_Demand": "1 " + }, + "Product_2170": { + "Product_Code": "Product_2170", + "Warehouse": "Whse_C", + "Product_Category": "Category_024", + "Date": "2016/11/21", + "Order_Demand": "5 " + }, + "Product_0384": { + "Product_Code": "Product_0384", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/7/15", + "Order_Demand": "1000 " + }, + "Product_1743": { + "Product_Code": "Product_1743", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/11/29", + "Order_Demand": "1000 " + }, + "Product_1549": { + "Product_Code": "Product_1549", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/11/10", + "Order_Demand": "1200 " + }, + "Product_0912": { + "Product_Code": "Product_0912", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/12/22", + "Order_Demand": "50 " + }, + "Product_0917": { + "Product_Code": "Product_0917", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/11/17", + "Order_Demand": "270 " + }, + "Product_0910": { + "Product_Code": "Product_0910", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/12/22", + "Order_Demand": "100 " + }, + "Product_0921": { + "Product_Code": "Product_0921", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/3/10", + "Order_Demand": "0 " + }, + "Product_0922": { + "Product_Code": "Product_0922", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/4/7", + "Order_Demand": "500 " + }, + "Product_0925": { + "Product_Code": "Product_0925", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/3/10", + "Order_Demand": "0 " + }, + "Product_0911": { + "Product_Code": "Product_0911", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/8/10", + "Order_Demand": "50 " + }, + "Product_0914": { + "Product_Code": "Product_0914", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/6/23", + "Order_Demand": "100 " + }, + "Product_0909": { + "Product_Code": "Product_0909", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/11/22", + "Order_Demand": "1000 " + }, + "Product_0915": { + "Product_Code": "Product_0915", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/7/13", + "Order_Demand": "0 " + }, + "Product_0916": { + "Product_Code": "Product_0916", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/4/7", + "Order_Demand": "1200 " + }, + "Product_0920": { + "Product_Code": "Product_0920", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/4/7", + "Order_Demand": "300 " + }, + "Product_0924": { + "Product_Code": "Product_0924", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/8/2", + "Order_Demand": "50 " + }, + "Product_0926": { + "Product_Code": "Product_0926", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/12/22", + "Order_Demand": "50 " + }, + "Product_0927": { + "Product_Code": "Product_0927", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/8/10", + "Order_Demand": "50 " + }, + "Product_0923": { + "Product_Code": "Product_0923", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/7/11", + "Order_Demand": "1200 " + }, + "Product_0913": { + "Product_Code": "Product_0913", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/8/10", + "Order_Demand": "30 " + }, + "Product_0919": { + "Product_Code": "Product_0919", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/10/25", + "Order_Demand": "100 " + }, + "Product_0918": { + "Product_Code": "Product_0918", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/11/15", + "Order_Demand": "30 " + }, + "Product_0996": { + "Product_Code": "Product_0996", + "Warehouse": "Whse_S", + "Product_Category": "Category_028", + "Date": "2016/10/13", + "Order_Demand": "600 " + }, + "Product_0064": { + "Product_Code": "Product_0064", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/17", + "Order_Demand": "5000 " + }, + "Product_1133": { + "Product_Code": "Product_1133", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/19", + "Order_Demand": "400 " + }, + "Product_1671": { + "Product_Code": "Product_1671", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/8/22", + "Order_Demand": "3 " + }, + "Product_1672": { + "Product_Code": "Product_1672", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/10/25", + "Order_Demand": "60 " + }, + "Product_0151": { + "Product_Code": "Product_0151", + "Warehouse": "Whse_A", + "Product_Category": "Category_015", + "Date": "2016/3/1", + "Order_Demand": "1 " + }, + "Product_0496": { + "Product_Code": "Product_0496", + "Warehouse": "Whse_A", + "Product_Category": "Category_015", + "Date": "2016/3/1", + "Order_Demand": "1 " + }, + "Product_0412": { + "Product_Code": "Product_0412", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/6/1", + "Order_Demand": "1 " + }, + "Product_1374": { + "Product_Code": "Product_1374", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/23", + "Order_Demand": "1000 " + }, + "Product_0525": { + "Product_Code": "Product_0525", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/4/21", + "Order_Demand": "4 " + }, + "Product_0526": { + "Product_Code": "Product_0526", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/7/21", + "Order_Demand": "2 " + }, + "Product_0539": { + "Product_Code": "Product_0539", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/4/25", + "Order_Demand": "10 " + }, + "Product_1728": { + "Product_Code": "Product_1728", + "Warehouse": "Whse_S", + "Product_Category": "Category_003", + "Date": "2015/11/26", + "Order_Demand": "400 " + }, + "Product_1839": { + "Product_Code": "Product_1839", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/9/23", + "Order_Demand": "1000 " + }, + "Product_0077": { + "Product_Code": "Product_0077", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/12/12", + "Order_Demand": "3000 " + }, + "Product_1741": { + "Product_Code": "Product_1741", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2015/9/9", + "Order_Demand": "400 " + }, + "Product_1596": { + "Product_Code": "Product_1596", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/9/26", + "Order_Demand": "1000 " + }, + "Product_1600": { + "Product_Code": "Product_1600", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/7/15", + "Order_Demand": "3000 " + }, + "Product_1734": { + "Product_Code": "Product_1734", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/9/26", + "Order_Demand": "500 " + }, + "Product_1736": { + "Product_Code": "Product_1736", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/11/13", + "Order_Demand": "500 " + }, + "Product_1737": { + "Product_Code": "Product_1737", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/11/30", + "Order_Demand": "1000 " + }, + "Product_1740": { + "Product_Code": "Product_1740", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/27", + "Order_Demand": "2000 " + }, + "Product_0609": { + "Product_Code": "Product_0609", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/15", + "Order_Demand": "1 " + }, + "Product_0118": { + "Product_Code": "Product_0118", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/12/20", + "Order_Demand": "24 " + }, + "Product_1824": { + "Product_Code": "Product_1824", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/2/26", + "Order_Demand": "5000 " + }, + "Product_1845": { + "Product_Code": "Product_1845", + "Warehouse": "Whse_S", + "Product_Category": "Category_006", + "Date": "2016/8/8", + "Order_Demand": "2500 " + }, + "Product_0140": { + "Product_Code": "Product_0140", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/7/8", + "Order_Demand": "126 " + }, + "Product_2127": { + "Product_Code": "Product_2127", + "Warehouse": "Whse_S", + "Product_Category": "Category_009", + "Date": "2016/10/3", + "Order_Demand": "3 " + }, + "Product_0325": { + "Product_Code": "Product_0325", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/1/13", + "Order_Demand": "4 " + }, + "Product_1675": { + "Product_Code": "Product_1675", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/10/3", + "Order_Demand": "5 " + }, + "Product_0531": { + "Product_Code": "Product_0531", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2016/9/20", + "Order_Demand": "9 " + }, + "Product_0225": { + "Product_Code": "Product_0225", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/4/21", + "Order_Demand": "2 " + }, + "Product_0405": { + "Product_Code": "Product_0405", + "Warehouse": "Whse_S", + "Product_Category": "Category_001", + "Date": "2016/11/17", + "Order_Demand": "5 " + }, + "Product_0677": { + "Product_Code": "Product_0677", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/10/19", + "Order_Demand": "30 " + }, + "Product_1825": { + "Product_Code": "Product_1825", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/8/2", + "Order_Demand": "25000 " + }, + "Product_0095": { + "Product_Code": "Product_0095", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/19", + "Order_Demand": "19000 " + }, + "Product_1869": { + "Product_Code": "Product_1869", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/18", + "Order_Demand": "1 " + }, + "Product_1875": { + "Product_Code": "Product_1875", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/12", + "Order_Demand": "1 " + }, + "Product_1861": { + "Product_Code": "Product_1861", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/23", + "Order_Demand": "(1)" + }, + "Product_1162": { + "Product_Code": "Product_1162", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/1/20", + "Order_Demand": "5000 " + }, + "Product_1398": { + "Product_Code": "Product_1398", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/12", + "Order_Demand": "1000 " + }, + "Product_1988": { + "Product_Code": "Product_1988", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/3/7", + "Order_Demand": "1000 " + }, + "Product_0627": { + "Product_Code": "Product_0627", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/27", + "Order_Demand": "5 " + }, + "Product_0625": { + "Product_Code": "Product_0625", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/20", + "Order_Demand": "1 " + }, + "Product_1622": { + "Product_Code": "Product_1622", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/7", + "Order_Demand": "200 " + }, + "Product_1217": { + "Product_Code": "Product_1217", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/24", + "Order_Demand": "3000 " + }, + "Product_1195": { + "Product_Code": "Product_1195", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/29", + "Order_Demand": "3000 " + }, + "Product_0629": { + "Product_Code": "Product_0629", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/4/26", + "Order_Demand": "1 " + }, + "Product_0791": { + "Product_Code": "Product_0791", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/17", + "Order_Demand": "10 " + }, + "Product_0792": { + "Product_Code": "Product_0792", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/4/22", + "Order_Demand": "5 " + }, + "Product_0795": { + "Product_Code": "Product_0795", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/17", + "Order_Demand": "10 " + }, + "Product_0714": { + "Product_Code": "Product_0714", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/19", + "Order_Demand": "5 " + }, + "Product_0715": { + "Product_Code": "Product_0715", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/20", + "Order_Demand": "5 " + }, + "Product_0719": { + "Product_Code": "Product_0719", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/17", + "Order_Demand": "25 " + }, + "Product_1306": { + "Product_Code": "Product_1306", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/29", + "Order_Demand": "200 " + }, + "Product_0406": { + "Product_Code": "Product_0406", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/1", + "Order_Demand": "100 " + }, + "Product_0973": { + "Product_Code": "Product_0973", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/4/1", + "Order_Demand": "500 " + }, + "Product_0989": { + "Product_Code": "Product_0989", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/12/13", + "Order_Demand": "500 " + }, + "Product_1004": { + "Product_Code": "Product_1004", + "Warehouse": "Whse_S", + "Product_Category": "Category_006", + "Date": "2016/6/23", + "Order_Demand": "100 " + }, + "Product_1007": { + "Product_Code": "Product_1007", + "Warehouse": "Whse_S", + "Product_Category": "Category_006", + "Date": "2016/11/17", + "Order_Demand": "500 " + }, + "Product_1298": { + "Product_Code": "Product_1298", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/4/29", + "Order_Demand": "100 " + }, + "Product_0652": { + "Product_Code": "Product_0652", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/10/20", + "Order_Demand": "30 " + }, + "Product_1937": { + "Product_Code": "Product_1937", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/16", + "Order_Demand": "1 " + }, + "Product_1964": { + "Product_Code": "Product_1964", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/23", + "Order_Demand": "14 " + }, + "Product_1541": { + "Product_Code": "Product_1541", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/10", + "Order_Demand": "500 " + }, + "Product_1418": { + "Product_Code": "Product_1418", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/22", + "Order_Demand": "100 " + }, + "Product_0008": { + "Product_Code": "Product_0008", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/8/18", + "Order_Demand": "500 " + }, + "Product_1831": { + "Product_Code": "Product_1831", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/12/12", + "Order_Demand": "4000 " + }, + "Product_1458": { + "Product_Code": "Product_1458", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/5", + "Order_Demand": "2000 " + }, + "Product_1454": { + "Product_Code": "Product_1454", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/5", + "Order_Demand": "200 " + }, + "Product_1289": { + "Product_Code": "Product_1289", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/22", + "Order_Demand": "1000 " + }, + "Product_1457": { + "Product_Code": "Product_1457", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/8", + "Order_Demand": "500 " + }, + "Product_1383": { + "Product_Code": "Product_1383", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/7", + "Order_Demand": "100 " + }, + "Product_1297": { + "Product_Code": "Product_1297", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/7", + "Order_Demand": "100 " + }, + "Product_1380": { + "Product_Code": "Product_1380", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/26", + "Order_Demand": "200 " + }, + "Product_0407": { + "Product_Code": "Product_0407", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/19", + "Order_Demand": "300 " + }, + "Product_1853": { + "Product_Code": "Product_1853", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/11", + "Order_Demand": "1 " + }, + "Product_1858": { + "Product_Code": "Product_1858", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/16", + "Order_Demand": "1 " + }, + "Product_1637": { + "Product_Code": "Product_1637", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/14", + "Order_Demand": "1000 " + }, + "Product_1641": { + "Product_Code": "Product_1641", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/29", + "Order_Demand": "1000 " + }, + "Product_0017": { + "Product_Code": "Product_0017", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/5/24", + "Order_Demand": "100 " + }, + "Product_0019": { + "Product_Code": "Product_0019", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/1/6", + "Order_Demand": "100 " + }, + "Product_1680": { + "Product_Code": "Product_1680", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/4/20", + "Order_Demand": "2 " + }, + "Product_0491": { + "Product_Code": "Product_0491", + "Warehouse": "Whse_C", + "Product_Category": "Category_015", + "Date": "2016/3/25", + "Order_Demand": "(1)" + }, + "Product_0192": { + "Product_Code": "Product_0192", + "Warehouse": "Whse_C", + "Product_Category": "Category_007", + "Date": "2016/8/11", + "Order_Demand": "24 " + }, + "Product_0194": { + "Product_Code": "Product_0194", + "Warehouse": "Whse_C", + "Product_Category": "Category_007", + "Date": "2016/9/23", + "Order_Demand": "500 " + }, + "Product_0191": { + "Product_Code": "Product_0191", + "Warehouse": "Whse_C", + "Product_Category": "Category_007", + "Date": "2016/12/29", + "Order_Demand": "(3000)" + }, + "Product_0195": { + "Product_Code": "Product_0195", + "Warehouse": "Whse_C", + "Product_Category": "Category_007", + "Date": "2016/12/29", + "Order_Demand": "(3000)" + }, + "Product_0249": { + "Product_Code": "Product_0249", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/7/28", + "Order_Demand": "48 " + }, + "Product_0193": { + "Product_Code": "Product_0193", + "Warehouse": "Whse_C", + "Product_Category": "Category_007", + "Date": "2016/8/24", + "Order_Demand": "150 " + }, + "Product_0401": { + "Product_Code": "Product_0401", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/27", + "Order_Demand": "6000 " + }, + "Product_1052": { + "Product_Code": "Product_1052", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/12/16", + "Order_Demand": "18 " + }, + "Product_0100": { + "Product_Code": "Product_0100", + "Warehouse": "Whse_C", + "Product_Category": "Category_019", + "Date": "2016/7/25", + "Order_Demand": "5000 " + }, + "Product_1237": { + "Product_Code": "Product_1237", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/10/14", + "Order_Demand": "8000 " + }, + "Product_0471": { + "Product_Code": "Product_0471", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/11/1", + "Order_Demand": "2 " + }, + "Product_0961": { + "Product_Code": "Product_0961", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/8/25", + "Order_Demand": "100 " + }, + "Product_0110": { + "Product_Code": "Product_0110", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/5/19", + "Order_Demand": "6 " + }, + "Product_1416": { + "Product_Code": "Product_1416", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/24", + "Order_Demand": "(2700)" + }, + "Product_1419": { + "Product_Code": "Product_1419", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/21", + "Order_Demand": "100 " + }, + "Product_1420": { + "Product_Code": "Product_1420", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/28", + "Order_Demand": "300 " + }, + "Product_1424": { + "Product_Code": "Product_1424", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/26", + "Order_Demand": "500 " + }, + "Product_0337": { + "Product_Code": "Product_0337", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/10/3", + "Order_Demand": "1 " + }, + "Product_0486": { + "Product_Code": "Product_0486", + "Warehouse": "Whse_J", + "Product_Category": "Category_013", + "Date": "2016/12/7", + "Order_Demand": "10 " + }, + "Product_0487": { + "Product_Code": "Product_0487", + "Warehouse": "Whse_J", + "Product_Category": "Category_013", + "Date": "2016/3/30", + "Order_Demand": "10 " + }, + "Product_0464": { + "Product_Code": "Product_0464", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/9/6", + "Order_Demand": "12 " + }, + "Product_0523": { + "Product_Code": "Product_0523", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2016/11/28", + "Order_Demand": "36 " + }, + "Product_0515": { + "Product_Code": "Product_0515", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2016/4/18", + "Order_Demand": "20 " + }, + "Product_1348": { + "Product_Code": "Product_1348", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/11", + "Order_Demand": "1000 " + }, + "Product_1601": { + "Product_Code": "Product_1601", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/7/15", + "Order_Demand": "3000 " + }, + "Product_1587": { + "Product_Code": "Product_1587", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/9/7", + "Order_Demand": "2000 " + }, + "Product_0559": { + "Product_Code": "Product_0559", + "Warehouse": "Whse_C", + "Product_Category": "Category_030", + "Date": "2016/6/2", + "Order_Demand": "500 " + }, + "Product_0505": { + "Product_Code": "Product_0505", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/11/1", + "Order_Demand": "2 " + }, + "Product_1379": { + "Product_Code": "Product_1379", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/9", + "Order_Demand": "2500 " + }, + "Product_0371": { + "Product_Code": "Product_0371", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/1/25", + "Order_Demand": "1000 " + }, + "Product_1588": { + "Product_Code": "Product_1588", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/9/30", + "Order_Demand": "3500 " + }, + "Product_1735": { + "Product_Code": "Product_1735", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/19", + "Order_Demand": "500 " + }, + "Product_1164": { + "Product_Code": "Product_1164", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/6/2", + "Order_Demand": "5000 " + }, + "Product_1833": { + "Product_Code": "Product_1833", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/10/7", + "Order_Demand": "0 " + }, + "Product_1843": { + "Product_Code": "Product_1843", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/9/13", + "Order_Demand": "1000 " + }, + "Product_1577": { + "Product_Code": "Product_1577", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/10/14", + "Order_Demand": "15000 " + }, + "Product_0112": { + "Product_Code": "Product_0112", + "Warehouse": "Whse_S", + "Product_Category": "Category_032", + "Date": "2016/11/28", + "Order_Demand": "18 " + }, + "Product_0477": { + "Product_Code": "Product_0477", + "Warehouse": "Whse_C", + "Product_Category": "Category_005", + "Date": "2016/12/27", + "Order_Demand": "2000 " + }, + "Product_0356": { + "Product_Code": "Product_0356", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/25", + "Order_Demand": "2000 " + }, + "Product_1026": { + "Product_Code": "Product_1026", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/8/26", + "Order_Demand": "300 " + }, + "Product_0089": { + "Product_Code": "Product_0089", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/19", + "Order_Demand": "30000 " + }, + "Product_0986": { + "Product_Code": "Product_0986", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/10/26", + "Order_Demand": "100 " + }, + "Product_0991": { + "Product_Code": "Product_0991", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/7/19", + "Order_Demand": "100 " + }, + "Product_0968": { + "Product_Code": "Product_0968", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/7/19", + "Order_Demand": "100 " + }, + "Product_0342": { + "Product_Code": "Product_0342", + "Warehouse": "Whse_C", + "Product_Category": "Category_021", + "Date": "2016/4/6", + "Order_Demand": "1 " + }, + "Product_0016": { + "Product_Code": "Product_0016", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/12", + "Order_Demand": "100 " + }, + "Product_0030": { + "Product_Code": "Product_0030", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/16", + "Order_Demand": "50 " + }, + "Product_1554": { + "Product_Code": "Product_1554", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/14", + "Order_Demand": "100 " + }, + "Product_0518": { + "Product_Code": "Product_0518", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2016/4/18", + "Order_Demand": "2 " + }, + "Product_0845": { + "Product_Code": "Product_0845", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/2/23", + "Order_Demand": "40 " + }, + "Product_0841": { + "Product_Code": "Product_0841", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/4/25", + "Order_Demand": "30 " + }, + "Product_0138": { + "Product_Code": "Product_0138", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/30", + "Order_Demand": "48 " + }, + "Product_2000": { + "Product_Code": "Product_2000", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/6/22", + "Order_Demand": "100 " + }, + "Product_1174": { + "Product_Code": "Product_1174", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/11/9", + "Order_Demand": "10 " + }, + "Product_0220": { + "Product_Code": "Product_0220", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/10/6", + "Order_Demand": "26 " + }, + "Product_0184": { + "Product_Code": "Product_0184", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/10/3", + "Order_Demand": "10 " + }, + "Product_0188": { + "Product_Code": "Product_0188", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/8/17", + "Order_Demand": "30 " + }, + "Product_0181": { + "Product_Code": "Product_0181", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/11", + "Order_Demand": "35 " + }, + "Product_0679": { + "Product_Code": "Product_0679", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/2", + "Order_Demand": "100 " + }, + "Product_0681": { + "Product_Code": "Product_0681", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/3/15", + "Order_Demand": "10 " + }, + "Product_0682": { + "Product_Code": "Product_0682", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/4/27", + "Order_Demand": "50 " + }, + "Product_0038": { + "Product_Code": "Product_0038", + "Warehouse": "Whse_C", + "Product_Category": "Category_005", + "Date": "2016/3/22", + "Order_Demand": "2000 " + }, + "Product_0550": { + "Product_Code": "Product_0550", + "Warehouse": "Whse_C", + "Product_Category": "Category_030", + "Date": "2016/11/9", + "Order_Demand": "1000 " + }, + "Product_1235": { + "Product_Code": "Product_1235", + "Warehouse": "Whse_C", + "Product_Category": "Category_019", + "Date": "2016/12/23", + "Order_Demand": "3000 " + }, + "Product_1011": { + "Product_Code": "Product_1011", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/1/26", + "Order_Demand": "100 " + }, + "Product_1580": { + "Product_Code": "Product_1580", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/16", + "Order_Demand": "500 " + }, + "Product_1508": { + "Product_Code": "Product_1508", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/19", + "Order_Demand": "1000 " + }, + "Product_1401": { + "Product_Code": "Product_1401", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/26", + "Order_Demand": "500 " + }, + "Product_0976": { + "Product_Code": "Product_0976", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/2/29", + "Order_Demand": "50 " + }, + "Product_0478": { + "Product_Code": "Product_0478", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/22", + "Order_Demand": "2000 " + }, + "Product_1269": { + "Product_Code": "Product_1269", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/11", + "Order_Demand": "1000 " + }, + "Product_1492": { + "Product_Code": "Product_1492", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/18", + "Order_Demand": "0 " + }, + "Product_1941": { + "Product_Code": "Product_1941", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/21", + "Order_Demand": "1 " + }, + "Product_2028": { + "Product_Code": "Product_2028", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/8", + "Order_Demand": "100 " + }, + "Product_1921": { + "Product_Code": "Product_1921", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/24", + "Order_Demand": "2 " + }, + "Product_1948": { + "Product_Code": "Product_1948", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/19", + "Order_Demand": "1 " + }, + "Product_1922": { + "Product_Code": "Product_1922", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/4/11", + "Order_Demand": "1 " + }, + "Product_1932": { + "Product_Code": "Product_1932", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/8/1", + "Order_Demand": "1 " + }, + "Product_0025": { + "Product_Code": "Product_0025", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/4/5", + "Order_Demand": "100 " + }, + "Product_1530": { + "Product_Code": "Product_1530", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/16", + "Order_Demand": "25 " + }, + "Product_1493": { + "Product_Code": "Product_1493", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/30", + "Order_Demand": "100 " + }, + "Product_1555": { + "Product_Code": "Product_1555", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/20", + "Order_Demand": "5000 " + }, + "Product_1459": { + "Product_Code": "Product_1459", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/29", + "Order_Demand": "200 " + }, + "Product_1529": { + "Product_Code": "Product_1529", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/4", + "Order_Demand": "25 " + }, + "Product_1532": { + "Product_Code": "Product_1532", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/8", + "Order_Demand": "25 " + }, + "Product_1531": { + "Product_Code": "Product_1531", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/18", + "Order_Demand": "50 " + }, + "Product_0408": { + "Product_Code": "Product_0408", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/27", + "Order_Demand": "500 " + }, + "Product_0409": { + "Product_Code": "Product_0409", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/16", + "Order_Demand": "8 " + }, + "Product_0410": { + "Product_Code": "Product_0410", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/27", + "Order_Demand": "20 " + }, + "Product_0724": { + "Product_Code": "Product_0724", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/2", + "Order_Demand": "25 " + }, + "Product_0001": { + "Product_Code": "Product_0001", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/3/2", + "Order_Demand": "500 " + }, + "Product_0960": { + "Product_Code": "Product_0960", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/3/30", + "Order_Demand": "1 " + }, + "Product_0086": { + "Product_Code": "Product_0086", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/19", + "Order_Demand": "8000 " + }, + "Product_0099": { + "Product_Code": "Product_0099", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/8", + "Order_Demand": "1000 " + }, + "Product_0074": { + "Product_Code": "Product_0074", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/19", + "Order_Demand": "2000 " + }, + "Product_0055": { + "Product_Code": "Product_0055", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/8", + "Order_Demand": "0 " + }, + "Product_2023": { + "Product_Code": "Product_2023", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/7/1", + "Order_Demand": "100 " + }, + "Product_2021": { + "Product_Code": "Product_2021", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/4/25", + "Order_Demand": "200 " + }, + "Product_1282": { + "Product_Code": "Product_1282", + "Warehouse": "Whse_J", + "Product_Category": "Category_033", + "Date": "2016/9/28", + "Order_Demand": "0 " + }, + "Product_1110": { + "Product_Code": "Product_1110", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/6/13", + "Order_Demand": "2 " + }, + "Product_0291": { + "Product_Code": "Product_0291", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/4/25", + "Order_Demand": "2 " + }, + "Product_2134": { + "Product_Code": "Product_2134", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/11/30", + "Order_Demand": "4 " + }, + "Product_2140": { + "Product_Code": "Product_2140", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/11/24", + "Order_Demand": "10 " + }, + "Product_0501": { + "Product_Code": "Product_0501", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/9/1", + "Order_Demand": "2 " + }, + "Product_1718": { + "Product_Code": "Product_1718", + "Warehouse": "Whse_J", + "Product_Category": "Category_003", + "Date": "2016/12/9", + "Order_Demand": "1 " + }, + "Product_0654": { + "Product_Code": "Product_0654", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/8", + "Order_Demand": "1 " + }, + "Product_0545": { + "Product_Code": "Product_0545", + "Warehouse": "Whse_J", + "Product_Category": "Category_013", + "Date": "2016/3/30", + "Order_Demand": "10 " + }, + "Product_1031": { + "Product_Code": "Product_1031", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/4/22", + "Order_Demand": "100 " + }, + "Product_1087": { + "Product_Code": "Product_1087", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2015/12/7", + "Order_Demand": "10 " + }, + "Product_1266": { + "Product_Code": "Product_1266", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/8", + "Order_Demand": "1000 " + }, + "Product_1259": { + "Product_Code": "Product_1259", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/20", + "Order_Demand": "800 " + }, + "Product_1300": { + "Product_Code": "Product_1300", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/24", + "Order_Demand": "100 " + }, + "Product_1301": { + "Product_Code": "Product_1301", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/24", + "Order_Demand": "100 " + }, + "Product_1305": { + "Product_Code": "Product_1305", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/23", + "Order_Demand": "100 " + }, + "Product_1307": { + "Product_Code": "Product_1307", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/31", + "Order_Demand": "200 " + }, + "Product_1309": { + "Product_Code": "Product_1309", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/31", + "Order_Demand": "200 " + }, + "Product_1310": { + "Product_Code": "Product_1310", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/4", + "Order_Demand": "100 " + }, + "Product_1368": { + "Product_Code": "Product_1368", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/2", + "Order_Demand": "100 " + }, + "Product_1367": { + "Product_Code": "Product_1367", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/13", + "Order_Demand": "500 " + }, + "Product_1244": { + "Product_Code": "Product_1244", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/1", + "Order_Demand": "100 " + }, + "Product_1304": { + "Product_Code": "Product_1304", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/31", + "Order_Demand": "200 " + }, + "Product_1308": { + "Product_Code": "Product_1308", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/31", + "Order_Demand": "200 " + }, + "Product_0828": { + "Product_Code": "Product_0828", + "Warehouse": "Whse_J", + "Product_Category": "Category_008", + "Date": "2016/12/2", + "Order_Demand": "1 " + }, + "Product_0610": { + "Product_Code": "Product_0610", + "Warehouse": "Whse_C", + "Product_Category": "Category_001", + "Date": "2016/12/29", + "Order_Demand": "(20)" + }, + "Product_0066": { + "Product_Code": "Product_0066", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/19", + "Order_Demand": "5000 " + }, + "Product_1556": { + "Product_Code": "Product_1556", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/18", + "Order_Demand": "2000 " + }, + "Product_1299": { + "Product_Code": "Product_1299", + "Warehouse": "Whse_C", + "Product_Category": "Category_019", + "Date": "2016/11/18", + "Order_Demand": "15000 " + }, + "Product_0672": { + "Product_Code": "Product_0672", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/6/8", + "Order_Demand": "1 " + }, + "Product_0605": { + "Product_Code": "Product_0605", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/17", + "Order_Demand": "100 " + }, + "Product_0621": { + "Product_Code": "Product_0621", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/22", + "Order_Demand": "1 " + }, + "Product_0024": { + "Product_Code": "Product_0024", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/5/23", + "Order_Demand": "500 " + }, + "Product_1626": { + "Product_Code": "Product_1626", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/21", + "Order_Demand": "500 " + }, + "Product_1540": { + "Product_Code": "Product_1540", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/26", + "Order_Demand": "200 " + }, + "Product_1610": { + "Product_Code": "Product_1610", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/9/5", + "Order_Demand": "1000 " + }, + "Product_1606": { + "Product_Code": "Product_1606", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/29", + "Order_Demand": "1000 " + }, + "Product_1609": { + "Product_Code": "Product_1609", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/29", + "Order_Demand": "1000 " + }, + "Product_1126": { + "Product_Code": "Product_1126", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/8", + "Order_Demand": "10 " + }, + "Product_0232": { + "Product_Code": "Product_0232", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/1", + "Order_Demand": "1 " + }, + "Product_2002": { + "Product_Code": "Product_2002", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/11", + "Order_Demand": "100 " + }, + "Product_1215": { + "Product_Code": "Product_1215", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/8", + "Order_Demand": "2000 " + }, + "Product_1225": { + "Product_Code": "Product_1225", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/24", + "Order_Demand": "1000 " + }, + "Product_1196": { + "Product_Code": "Product_1196", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/14", + "Order_Demand": "500 " + }, + "Product_1242": { + "Product_Code": "Product_1242", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/8", + "Order_Demand": "3000 " + }, + "Product_1202": { + "Product_Code": "Product_1202", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/29", + "Order_Demand": "300 " + }, + "Product_2016": { + "Product_Code": "Product_2016", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/7", + "Order_Demand": "1000 " + }, + "Product_2007": { + "Product_Code": "Product_2007", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/1/25", + "Order_Demand": "100 " + }, + "Product_1227": { + "Product_Code": "Product_1227", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/21", + "Order_Demand": "3000 " + }, + "Product_2148": { + "Product_Code": "Product_2148", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/1/22", + "Order_Demand": "100 " + }, + "Product_1134": { + "Product_Code": "Product_1134", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/7/29", + "Order_Demand": "2000 " + }, + "Product_0829": { + "Product_Code": "Product_0829", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/6/23", + "Order_Demand": "20000 " + }, + "Product_1285": { + "Product_Code": "Product_1285", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/2", + "Order_Demand": "1000 " + }, + "Product_1239": { + "Product_Code": "Product_1239", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/5", + "Order_Demand": "100 " + }, + "Product_1468": { + "Product_Code": "Product_1468", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/16", + "Order_Demand": "2000 " + }, + "Product_1557": { + "Product_Code": "Product_1557", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/6", + "Order_Demand": "3000 " + }, + "Product_0941": { + "Product_Code": "Product_0941", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/27", + "Order_Demand": "3000 " + }, + "Product_1475": { + "Product_Code": "Product_1475", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/26", + "Order_Demand": "100 " + }, + "Product_0615": { + "Product_Code": "Product_0615", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/5", + "Order_Demand": "3 " + }, + "Product_1739": { + "Product_Code": "Product_1739", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/8/19", + "Order_Demand": "1000 " + }, + "Product_0657": { + "Product_Code": "Product_0657", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/8", + "Order_Demand": "1 " + }, + "Product_1123": { + "Product_Code": "Product_1123", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/24", + "Order_Demand": "5 " + }, + "Product_0667": { + "Product_Code": "Product_0667", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/13", + "Order_Demand": "0 " + }, + "Product_1121": { + "Product_Code": "Product_1121", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/6/29", + "Order_Demand": "100 " + }, + "Product_0492": { + "Product_Code": "Product_0492", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/8/8", + "Order_Demand": "1 " + }, + "Product_0348": { + "Product_Code": "Product_0348", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/5/27", + "Order_Demand": "1 " + }, + "Product_1787": { + "Product_Code": "Product_1787", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/4/28", + "Order_Demand": "2500 " + }, + "Product_0228": { + "Product_Code": "Product_0228", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/12/16", + "Order_Demand": "200 " + }, + "Product_0933": { + "Product_Code": "Product_0933", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/6/6", + "Order_Demand": "5000 " + }, + "Product_1474": { + "Product_Code": "Product_1474", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/24", + "Order_Demand": "(2700)" + }, + "Product_1268": { + "Product_Code": "Product_1268", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/11", + "Order_Demand": "1000 " + }, + "Product_0397": { + "Product_Code": "Product_0397", + "Warehouse": "Whse_J", + "Product_Category": "Category_030", + "Date": "2016/9/27", + "Order_Demand": "200 " + }, + "Product_0400": { + "Product_Code": "Product_0400", + "Warehouse": "Whse_J", + "Product_Category": "Category_030", + "Date": "2016/3/24", + "Order_Demand": "300 " + }, + "Product_0399": { + "Product_Code": "Product_0399", + "Warehouse": "Whse_J", + "Product_Category": "Category_030", + "Date": "2016/5/19", + "Order_Demand": "700 " + }, + "Product_0037": { + "Product_Code": "Product_0037", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/16", + "Order_Demand": "500 " + }, + "Product_0640": { + "Product_Code": "Product_0640", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/25", + "Order_Demand": "6 " + }, + "Product_1933": { + "Product_Code": "Product_1933", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/27", + "Order_Demand": "1 " + }, + "Product_0905": { + "Product_Code": "Product_0905", + "Warehouse": "Whse_J", + "Product_Category": "Category_023", + "Date": "2016/4/18", + "Order_Demand": "50 " + }, + "Product_1208": { + "Product_Code": "Product_1208", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/5/23", + "Order_Demand": "(1)" + }, + "Product_1128": { + "Product_Code": "Product_1128", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/27", + "Order_Demand": "2000 " + }, + "Product_2029": { + "Product_Code": "Product_2029", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/14", + "Order_Demand": "100 " + }, + "Product_2011": { + "Product_Code": "Product_2011", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/2/19", + "Order_Demand": "500 " + }, + "Product_0035": { + "Product_Code": "Product_0035", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/6/6", + "Order_Demand": "500 " + }, + "Product_1318": { + "Product_Code": "Product_1318", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/14", + "Order_Demand": "50 " + }, + "Product_1323": { + "Product_Code": "Product_1323", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/14", + "Order_Demand": "50 " + }, + "Product_1328": { + "Product_Code": "Product_1328", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/14", + "Order_Demand": "50 " + }, + "Product_1333": { + "Product_Code": "Product_1333", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/14", + "Order_Demand": "50 " + }, + "Product_1338": { + "Product_Code": "Product_1338", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/14", + "Order_Demand": "50 " + }, + "Product_1319": { + "Product_Code": "Product_1319", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/25", + "Order_Demand": "100 " + }, + "Product_1324": { + "Product_Code": "Product_1324", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/25", + "Order_Demand": "100 " + }, + "Product_1329": { + "Product_Code": "Product_1329", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/21", + "Order_Demand": "100 " + }, + "Product_1334": { + "Product_Code": "Product_1334", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/14", + "Order_Demand": "100 " + }, + "Product_1339": { + "Product_Code": "Product_1339", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/21", + "Order_Demand": "200 " + }, + "Product_1317": { + "Product_Code": "Product_1317", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/25", + "Order_Demand": "100 " + }, + "Product_1322": { + "Product_Code": "Product_1322", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/25", + "Order_Demand": "100 " + }, + "Product_1327": { + "Product_Code": "Product_1327", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/25", + "Order_Demand": "100 " + }, + "Product_1332": { + "Product_Code": "Product_1332", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/25", + "Order_Demand": "100 " + }, + "Product_1337": { + "Product_Code": "Product_1337", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/1", + "Order_Demand": "100 " + }, + "Product_1335": { + "Product_Code": "Product_1335", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/6", + "Order_Demand": "50 " + }, + "Product_1330": { + "Product_Code": "Product_1330", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/25", + "Order_Demand": "50 " + }, + "Product_1336": { + "Product_Code": "Product_1336", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/25", + "Order_Demand": "100 " + }, + "Product_1340": { + "Product_Code": "Product_1340", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/26", + "Order_Demand": "100 " + }, + "Product_0026": { + "Product_Code": "Product_0026", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/9/23", + "Order_Demand": "100 " + }, + "Product_1209": { + "Product_Code": "Product_1209", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/27", + "Order_Demand": "100 " + }, + "Product_2037": { + "Product_Code": "Product_2037", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/3/16", + "Order_Demand": "10 " + }, + "Product_1181": { + "Product_Code": "Product_1181", + "Warehouse": "Whse_J", + "Product_Category": "Category_017", + "Date": "2016/7/4", + "Order_Demand": "2 " + }, + "Product_0316": { + "Product_Code": "Product_0316", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/6", + "Order_Demand": "15 " + }, + "Product_0671": { + "Product_Code": "Product_0671", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/1/5", + "Order_Demand": "50 " + }, + "Product_0660": { + "Product_Code": "Product_0660", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/8", + "Order_Demand": "1 " + }, + "Product_0448": { + "Product_Code": "Product_0448", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/12/22", + "Order_Demand": "15 " + }, + "Product_0197": { + "Product_Code": "Product_0197", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/9/9", + "Order_Demand": "10 " + }, + "Product_0322": { + "Product_Code": "Product_0322", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/2/26", + "Order_Demand": "2 " + }, + "Product_0196": { + "Product_Code": "Product_0196", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/2", + "Order_Demand": "480 " + }, + "Product_0396": { + "Product_Code": "Product_0396", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/1/25", + "Order_Demand": "1 " + }, + "Product_0180": { + "Product_Code": "Product_0180", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/1/7", + "Order_Demand": "10 " + }, + "Product_0248": { + "Product_Code": "Product_0248", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/7", + "Order_Demand": "84 " + }, + "Product_0546": { + "Product_Code": "Product_0546", + "Warehouse": "Whse_J", + "Product_Category": "Category_013", + "Date": "2016/2/26", + "Order_Demand": "16 " + }, + "Product_0338": { + "Product_Code": "Product_0338", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/11/11", + "Order_Demand": "5 " + }, + "Product_0275": { + "Product_Code": "Product_0275", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/7/1", + "Order_Demand": "10 " + }, + "Product_0311": { + "Product_Code": "Product_0311", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/2/8", + "Order_Demand": "12 " + }, + "Product_1826": { + "Product_Code": "Product_1826", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/2/10", + "Order_Demand": "1000 " + }, + "Product_1122": { + "Product_Code": "Product_1122", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/24", + "Order_Demand": "5 " + }, + "Product_1116": { + "Product_Code": "Product_1116", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/8/8", + "Order_Demand": "2 " + }, + "Product_1119": { + "Product_Code": "Product_1119", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/12/7", + "Order_Demand": "1 " + }, + "Product_1125": { + "Product_Code": "Product_1125", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/9/21", + "Order_Demand": "2 " + }, + "Product_1111": { + "Product_Code": "Product_1111", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/12/5", + "Order_Demand": "1 " + }, + "Product_1809": { + "Product_Code": "Product_1809", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/6/17", + "Order_Demand": "100 " + }, + "Product_0394": { + "Product_Code": "Product_0394", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/21", + "Order_Demand": "5 " + }, + "Product_1117": { + "Product_Code": "Product_1117", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/10/14", + "Order_Demand": "2 " + }, + "Product_1112": { + "Product_Code": "Product_1112", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/16", + "Order_Demand": "1 " + }, + "Product_1113": { + "Product_Code": "Product_1113", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/7/22", + "Order_Demand": "2 " + }, + "Product_0498": { + "Product_Code": "Product_0498", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/9/16", + "Order_Demand": "2 " + }, + "Product_0665": { + "Product_Code": "Product_0665", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/10/17", + "Order_Demand": "2 " + }, + "Product_0666": { + "Product_Code": "Product_0666", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/8/25", + "Order_Demand": "1 " + }, + "Product_0659": { + "Product_Code": "Product_0659", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/8", + "Order_Demand": "1 " + }, + "Product_0658": { + "Product_Code": "Product_0658", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/8", + "Order_Demand": "1 " + }, + "Product_2038": { + "Product_Code": "Product_2038", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/9/29", + "Order_Demand": "1 " + }, + "Product_0668": { + "Product_Code": "Product_0668", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/7/20", + "Order_Demand": "5 " + }, + "Product_0039": { + "Product_Code": "Product_0039", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/9/29", + "Order_Demand": "1800 " + }, + "Product_0661": { + "Product_Code": "Product_0661", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/8", + "Order_Demand": "1 " + }, + "Product_0656": { + "Product_Code": "Product_0656", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/9/20", + "Order_Demand": "10 " + }, + "Product_0655": { + "Product_Code": "Product_0655", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/8", + "Order_Demand": "1 " + }, + "Product_0299": { + "Product_Code": "Product_0299", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/8/29", + "Order_Demand": "10 " + }, + "Product_0296": { + "Product_Code": "Product_0296", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/6/1", + "Order_Demand": "2 " + }, + "Product_0459": { + "Product_Code": "Product_0459", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/2/2", + "Order_Demand": "4 " + }, + "Product_0451": { + "Product_Code": "Product_0451", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/12/2", + "Order_Demand": "7 " + }, + "Product_0502": { + "Product_Code": "Product_0502", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/9/12", + "Order_Demand": "1 " + }, + "Product_0446": { + "Product_Code": "Product_0446", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/11/17", + "Order_Demand": "8 " + }, + "Product_0499": { + "Product_Code": "Product_0499", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/10/25", + "Order_Demand": "3 " + }, + "Product_0297": { + "Product_Code": "Product_0297", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/1/5", + "Order_Demand": "2 " + }, + "Product_0301": { + "Product_Code": "Product_0301", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/12/21", + "Order_Demand": "16 " + }, + "Product_0497": { + "Product_Code": "Product_0497", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/10/24", + "Order_Demand": "1 " + }, + "Product_0323": { + "Product_Code": "Product_0323", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/11", + "Order_Demand": "1 " + }, + "Product_1124": { + "Product_Code": "Product_1124", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/7/6", + "Order_Demand": "30 " + }, + "Product_0182": { + "Product_Code": "Product_0182", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/10/31", + "Order_Demand": "24 " + }, + "Product_1144": { + "Product_Code": "Product_1144", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/1/13", + "Order_Demand": "1 " + }, + "Product_0395": { + "Product_Code": "Product_0395", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/4/22", + "Order_Demand": "4 " + }, + "Product_1889": { + "Product_Code": "Product_1889", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/3/23", + "Order_Demand": "100 " + }, + "Product_0485": { + "Product_Code": "Product_0485", + "Warehouse": "Whse_J", + "Product_Category": "Category_013", + "Date": "2016/4/14", + "Order_Demand": "12 " + }, + "Product_0489": { + "Product_Code": "Product_0489", + "Warehouse": "Whse_J", + "Product_Category": "Category_013", + "Date": "2016/2/3", + "Order_Demand": "20 " + }, + "Product_0332": { + "Product_Code": "Product_0332", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/11/11", + "Order_Demand": "4 " + }, + "Product_0364": { + "Product_Code": "Product_0364", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/7/27", + "Order_Demand": "5 " + }, + "Product_0286": { + "Product_Code": "Product_0286", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/2/9", + "Order_Demand": "10 " + }, + "Product_0351": { + "Product_Code": "Product_0351", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/1/6", + "Order_Demand": "3 " + }, + "Product_0130": { + "Product_Code": "Product_0130", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/3/3", + "Order_Demand": "10 " + }, + "Product_0335": { + "Product_Code": "Product_0335", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/12/21", + "Order_Demand": "2 " + }, + "Product_0276": { + "Product_Code": "Product_0276", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/4/22", + "Order_Demand": "30 " + }, + "Product_0277": { + "Product_Code": "Product_0277", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/7/13", + "Order_Demand": "30 " + }, + "Product_0280": { + "Product_Code": "Product_0280", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/2/8", + "Order_Demand": "50 " + }, + "Product_0281": { + "Product_Code": "Product_0281", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/8/31", + "Order_Demand": "10 " + }, + "Product_0282": { + "Product_Code": "Product_0282", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/7/8", + "Order_Demand": "40 " + }, + "Product_0840": { + "Product_Code": "Product_0840", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/12/27", + "Order_Demand": "3 " + }, + "Product_0157": { + "Product_Code": "Product_0157", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/3/28", + "Order_Demand": "3 " + }, + "Product_1677": { + "Product_Code": "Product_1677", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/3/18", + "Order_Demand": "5 " + }, + "Product_0842": { + "Product_Code": "Product_0842", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/6/22", + "Order_Demand": "20 " + }, + "Product_0843": { + "Product_Code": "Product_0843", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/10/25", + "Order_Demand": "30 " + }, + "Product_0839": { + "Product_Code": "Product_0839", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/10/24", + "Order_Demand": "10 " + }, + "Product_0306": { + "Product_Code": "Product_0306", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/7/5", + "Order_Demand": "2 " + }, + "Product_0309": { + "Product_Code": "Product_0309", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/9/13", + "Order_Demand": "4 " + }, + "Product_0310": { + "Product_Code": "Product_0310", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/12/7", + "Order_Demand": "1 " + }, + "Product_1770": { + "Product_Code": "Product_1770", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/8/19", + "Order_Demand": "1 " + }, + "Product_1759": { + "Product_Code": "Product_1759", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/10", + "Order_Demand": "2 " + }, + "Product_1106": { + "Product_Code": "Product_1106", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/6/8", + "Order_Demand": "100 " + }, + "Product_1107": { + "Product_Code": "Product_1107", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/2/5", + "Order_Demand": "200 " + }, + "Product_1148": { + "Product_Code": "Product_1148", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/9/1", + "Order_Demand": "5000 " + }, + "Product_1104": { + "Product_Code": "Product_1104", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/2/4", + "Order_Demand": "300 " + }, + "Product_0935": { + "Product_Code": "Product_0935", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/12/6", + "Order_Demand": "1000 " + }, + "Product_0433": { + "Product_Code": "Product_0433", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/3/3", + "Order_Demand": "1000 " + }, + "Product_1815": { + "Product_Code": "Product_1815", + "Warehouse": "Whse_J", + "Product_Category": "Category_031", + "Date": "2016/6/17", + "Order_Demand": "3 " + }, + "Product_0669": { + "Product_Code": "Product_0669", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/2/26", + "Order_Demand": "4 " + }, + "Product_0375": { + "Product_Code": "Product_0375", + "Warehouse": "Whse_J", + "Product_Category": "Category_030", + "Date": "2016/7/1", + "Order_Demand": "50 " + }, + "Product_0117": { + "Product_Code": "Product_0117", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/11/11", + "Order_Demand": "24 " + }, + "Product_0072": { + "Product_Code": "Product_0072", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/24", + "Order_Demand": "72000 " + }, + "Product_0771": { + "Product_Code": "Product_0771", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/24", + "Order_Demand": "25 " + }, + "Product_1051": { + "Product_Code": "Product_1051", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/10/13", + "Order_Demand": "120 " + }, + "Product_1059": { + "Product_Code": "Product_1059", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/3/16", + "Order_Demand": "6 " + }, + "Product_0756": { + "Product_Code": "Product_0756", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/20", + "Order_Demand": "50 " + }, + "Product_1167": { + "Product_Code": "Product_1167", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/11/25", + "Order_Demand": "5000 " + }, + "Product_0043": { + "Product_Code": "Product_0043", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/4/14", + "Order_Demand": "100 " + }, + "Product_0611": { + "Product_Code": "Product_0611", + "Warehouse": "Whse_C", + "Product_Category": "Category_001", + "Date": "2016/12/7", + "Order_Demand": "2 " + }, + "Product_1094": { + "Product_Code": "Product_1094", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/9/8", + "Order_Demand": "1 " + }, + "Product_0593": { + "Product_Code": "Product_0593", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/11/11", + "Order_Demand": "24 " + }, + "Product_0359": { + "Product_Code": "Product_0359", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/2", + "Order_Demand": "3000 " + }, + "Product_1385": { + "Product_Code": "Product_1385", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/8", + "Order_Demand": "200 " + }, + "Product_1461": { + "Product_Code": "Product_1461", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/9", + "Order_Demand": "300 " + }, + "Product_1496": { + "Product_Code": "Product_1496", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/4", + "Order_Demand": "1000 " + }, + "Product_0527": { + "Product_Code": "Product_0527", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2016/1/4", + "Order_Demand": "1 " + }, + "Product_0372": { + "Product_Code": "Product_0372", + "Warehouse": "Whse_S", + "Product_Category": "Category_025", + "Date": "2015/5/25", + "Order_Demand": "9000 " + }, + "Product_1934": { + "Product_Code": "Product_1934", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/15", + "Order_Demand": "1 " + }, + "Product_1313": { + "Product_Code": "Product_1313", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/23", + "Order_Demand": "1000 " + }, + "Product_1871": { + "Product_Code": "Product_1871", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/14", + "Order_Demand": "1 " + }, + "Product_1876": { + "Product_Code": "Product_1876", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/7", + "Order_Demand": "3 " + }, + "Product_1495": { + "Product_Code": "Product_1495", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/21", + "Order_Demand": "1000 " + }, + "Product_0080": { + "Product_Code": "Product_0080", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/8", + "Order_Demand": "500 " + }, + "Product_0090": { + "Product_Code": "Product_0090", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/15", + "Order_Demand": "0 " + }, + "Product_1499": { + "Product_Code": "Product_1499", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/27", + "Order_Demand": "0 " + }, + "Product_1539": { + "Product_Code": "Product_1539", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/23", + "Order_Demand": "50 " + }, + "Product_1067": { + "Product_Code": "Product_1067", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2015/11/4", + "Order_Demand": "1000 " + }, + "Product_1765": { + "Product_Code": "Product_1765", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/22", + "Order_Demand": "600 " + }, + "Product_0022": { + "Product_Code": "Product_0022", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/2/5", + "Order_Demand": "100 " + }, + "Product_1034": { + "Product_Code": "Product_1034", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/8/26", + "Order_Demand": "200 " + }, + "Product_1926": { + "Product_Code": "Product_1926", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/4/7", + "Order_Demand": "1 " + }, + "Product_1014": { + "Product_Code": "Product_1014", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/8/16", + "Order_Demand": "100 " + }, + "Product_0875": { + "Product_Code": "Product_0875", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/12/15", + "Order_Demand": "600 " + }, + "Product_0955": { + "Product_Code": "Product_0955", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/9/26", + "Order_Demand": "0 " + }, + "Product_1030": { + "Product_Code": "Product_1030", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/7/12", + "Order_Demand": "100 " + }, + "Product_0956": { + "Product_Code": "Product_0956", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/12/13", + "Order_Demand": "1 " + }, + "Product_1908": { + "Product_Code": "Product_1908", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/3/4", + "Order_Demand": "1 " + }, + "Product_1942": { + "Product_Code": "Product_1942", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/25", + "Order_Demand": "1 " + }, + "Product_1653": { + "Product_Code": "Product_1653", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/4", + "Order_Demand": "1000 " + }, + "Product_0251": { + "Product_Code": "Product_0251", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/10/5", + "Order_Demand": "1 " + }, + "Product_0847": { + "Product_Code": "Product_0847", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/4/5", + "Order_Demand": "20 " + }, + "Product_0143": { + "Product_Code": "Product_0143", + "Warehouse": "Whse_S", + "Product_Category": "Category_005", + "Date": "2016/9/22", + "Order_Demand": "2000 " + }, + "Product_0543": { + "Product_Code": "Product_0543", + "Warehouse": "Whse_S", + "Product_Category": "Category_032", + "Date": "2016/12/20", + "Order_Demand": "60 " + }, + "Product_1629": { + "Product_Code": "Product_1629", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/16", + "Order_Demand": "200 " + }, + "Product_1231": { + "Product_Code": "Product_1231", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/15", + "Order_Demand": "100 " + }, + "Product_1966": { + "Product_Code": "Product_1966", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/8", + "Order_Demand": "500 " + }, + "Product_0454": { + "Product_Code": "Product_0454", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/10/31", + "Order_Demand": "1 " + }, + "Product_1090": { + "Product_Code": "Product_1090", + "Warehouse": "Whse_S", + "Product_Category": "Category_020", + "Date": "2016/12/27", + "Order_Demand": "200 " + }, + "Product_0125": { + "Product_Code": "Product_0125", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/10/27", + "Order_Demand": "3 " + }, + "Product_0398": { + "Product_Code": "Product_0398", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/12", + "Order_Demand": "9000 " + }, + "Product_1872": { + "Product_Code": "Product_1872", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/17", + "Order_Demand": "2 " + }, + "Product_1429": { + "Product_Code": "Product_1429", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/7", + "Order_Demand": "1000 " + }, + "Product_1478": { + "Product_Code": "Product_1478", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/8", + "Order_Demand": "100 " + }, + "Product_1906": { + "Product_Code": "Product_1906", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/25", + "Order_Demand": "2000 " + }, + "Product_1363": { + "Product_Code": "Product_1363", + "Warehouse": "Whse_J", + "Product_Category": "Category_033", + "Date": "2016/12/22", + "Order_Demand": "100000 " + }, + "Product_1534": { + "Product_Code": "Product_1534", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/26", + "Order_Demand": "100 " + }, + "Product_1351": { + "Product_Code": "Product_1351", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/5", + "Order_Demand": "5000 " + }, + "Product_1369": { + "Product_Code": "Product_1369", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/22", + "Order_Demand": "2000 " + }, + "Product_1163": { + "Product_Code": "Product_1163", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/8/8", + "Order_Demand": "5000 " + }, + "Product_1256": { + "Product_Code": "Product_1256", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/29", + "Order_Demand": "200 " + }, + "Product_1272": { + "Product_Code": "Product_1272", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/11", + "Order_Demand": "1000 " + }, + "Product_0305": { + "Product_Code": "Product_0305", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/12/2", + "Order_Demand": "10 " + }, + "Product_0680": { + "Product_Code": "Product_0680", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/3/15", + "Order_Demand": "10 " + }, + "Product_0103": { + "Product_Code": "Product_0103", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/12/5", + "Order_Demand": "1 " + }, + "Product_0340": { + "Product_Code": "Product_0340", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/1/27", + "Order_Demand": "16 " + }, + "Product_0292": { + "Product_Code": "Product_0292", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/3/18", + "Order_Demand": "6 " + }, + "Product_0284": { + "Product_Code": "Product_0284", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/10/31", + "Order_Demand": "30 " + }, + "Product_1438": { + "Product_Code": "Product_1438", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/23", + "Order_Demand": "2000 " + }, + "Product_1536": { + "Product_Code": "Product_1536", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/11", + "Order_Demand": "100 " + }, + "Product_1402": { + "Product_Code": "Product_1402", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/9", + "Order_Demand": "1000 " + }, + "Product_1715": { + "Product_Code": "Product_1715", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/4/14", + "Order_Demand": "2 " + }, + "Product_1659": { + "Product_Code": "Product_1659", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/10/3", + "Order_Demand": "12 " + }, + "Product_1050": { + "Product_Code": "Product_1050", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/7/6", + "Order_Demand": "0 " + }, + "Product_1056": { + "Product_Code": "Product_1056", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/6/24", + "Order_Demand": "120 " + }, + "Product_1057": { + "Product_Code": "Product_1057", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/12/14", + "Order_Demand": "12 " + }, + "Product_1058": { + "Product_Code": "Product_1058", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/12/21", + "Order_Demand": "12 " + }, + "Product_1062": { + "Product_Code": "Product_1062", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/12/20", + "Order_Demand": "60 " + }, + "Product_0101": { + "Product_Code": "Product_0101", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/8", + "Order_Demand": "100 " + }, + "Product_1296": { + "Product_Code": "Product_1296", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/9", + "Order_Demand": "2500 " + }, + "Product_0104": { + "Product_Code": "Product_0104", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/8/31", + "Order_Demand": "72 " + }, + "Product_0819": { + "Product_Code": "Product_0819", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/3", + "Order_Demand": "1 " + }, + "Product_0820": { + "Product_Code": "Product_0820", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/24", + "Order_Demand": "1 " + }, + "Product_0023": { + "Product_Code": "Product_0023", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/25", + "Order_Demand": "100 " + }, + "Product_0029": { + "Product_Code": "Product_0029", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/20", + "Order_Demand": "50 " + }, + "Product_0653": { + "Product_Code": "Product_0653", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/11/17", + "Order_Demand": "50 " + }, + "Product_0628": { + "Product_Code": "Product_0628", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/7/8", + "Order_Demand": "1 " + }, + "Product_0728": { + "Product_Code": "Product_0728", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/28", + "Order_Demand": "25 " + }, + "Product_0780": { + "Product_Code": "Product_0780", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/12", + "Order_Demand": "20 " + }, + "Product_0705": { + "Product_Code": "Product_0705", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/20", + "Order_Demand": "50 " + }, + "Product_0723": { + "Product_Code": "Product_0723", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/26", + "Order_Demand": "50 " + }, + "Product_0757": { + "Product_Code": "Product_0757", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/20", + "Order_Demand": "50 " + }, + "Product_0618": { + "Product_Code": "Product_0618", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/25", + "Order_Demand": "25 " + }, + "Product_0604": { + "Product_Code": "Product_0604", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/17", + "Order_Demand": "100 " + }, + "Product_0745": { + "Product_Code": "Product_0745", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/10", + "Order_Demand": "25 " + }, + "Product_0735": { + "Product_Code": "Product_0735", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/15", + "Order_Demand": "5 " + }, + "Product_0741": { + "Product_Code": "Product_0741", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/22", + "Order_Demand": "25 " + }, + "Product_0796": { + "Product_Code": "Product_0796", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/17", + "Order_Demand": "10 " + }, + "Product_0739": { + "Product_Code": "Product_0739", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/8/16", + "Order_Demand": "200 " + }, + "Product_0790": { + "Product_Code": "Product_0790", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/17", + "Order_Demand": "20 " + }, + "Product_0720": { + "Product_Code": "Product_0720", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/18", + "Order_Demand": "30 " + }, + "Product_0707": { + "Product_Code": "Product_0707", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/4/27", + "Order_Demand": "450 " + }, + "Product_0785": { + "Product_Code": "Product_0785", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/25", + "Order_Demand": "10 " + }, + "Product_0755": { + "Product_Code": "Product_0755", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/3", + "Order_Demand": "25 " + }, + "Product_0727": { + "Product_Code": "Product_0727", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/26", + "Order_Demand": "100 " + }, + "Product_0781": { + "Product_Code": "Product_0781", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/9/28", + "Order_Demand": "5 " + }, + "Product_0769": { + "Product_Code": "Product_0769", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/9/16", + "Order_Demand": "25 " + }, + "Product_0774": { + "Product_Code": "Product_0774", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/18", + "Order_Demand": "25 " + }, + "Product_0786": { + "Product_Code": "Product_0786", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/18", + "Order_Demand": "5 " + }, + "Product_0626": { + "Product_Code": "Product_0626", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/17", + "Order_Demand": "1 " + }, + "Product_0633": { + "Product_Code": "Product_0633", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/9", + "Order_Demand": "1 " + }, + "Product_0730": { + "Product_Code": "Product_0730", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/20", + "Order_Demand": "25 " + }, + "Product_0710": { + "Product_Code": "Product_0710", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/7", + "Order_Demand": "25 " + }, + "Product_0703": { + "Product_Code": "Product_0703", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/21", + "Order_Demand": "1 " + }, + "Product_0740": { + "Product_Code": "Product_0740", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/8/16", + "Order_Demand": "200 " + }, + "Product_0630": { + "Product_Code": "Product_0630", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/25", + "Order_Demand": "1 " + }, + "Product_0794": { + "Product_Code": "Product_0794", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/14", + "Order_Demand": "15 " + }, + "Product_0049": { + "Product_Code": "Product_0049", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/13", + "Order_Demand": "200 " + }, + "Product_1795": { + "Product_Code": "Product_1795", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/5/24", + "Order_Demand": "100 " + }, + "Product_0003": { + "Product_Code": "Product_0003", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/9/27", + "Order_Demand": "100 " + }, + "Product_1613": { + "Product_Code": "Product_1613", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/21", + "Order_Demand": "400 " + }, + "Product_1985": { + "Product_Code": "Product_1985", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/9/13", + "Order_Demand": "200 " + }, + "Product_0010": { + "Product_Code": "Product_0010", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/2/15", + "Order_Demand": "300 " + }, + "Product_2020": { + "Product_Code": "Product_2020", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/1", + "Order_Demand": "25 " + }, + "Product_1979": { + "Product_Code": "Product_1979", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/22", + "Order_Demand": "0 " + }, + "Product_1971": { + "Product_Code": "Product_1971", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/6/24", + "Order_Demand": "1000 " + }, + "Product_1998": { + "Product_Code": "Product_1998", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/1/26", + "Order_Demand": "1000 " + }, + "Product_1582": { + "Product_Code": "Product_1582", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/9", + "Order_Demand": "2000 " + }, + "Product_0047": { + "Product_Code": "Product_0047", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/6/9", + "Order_Demand": "500 " + }, + "Product_1819": { + "Product_Code": "Product_1819", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/11/18", + "Order_Demand": "2500 " + }, + "Product_1805": { + "Product_Code": "Product_1805", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/9/27", + "Order_Demand": "2 " + }, + "Product_1154": { + "Product_Code": "Product_1154", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/3/28", + "Order_Demand": "3000 " + }, + "Product_1821": { + "Product_Code": "Product_1821", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/9/12", + "Order_Demand": "2500 " + }, + "Product_1161": { + "Product_Code": "Product_1161", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/11/4", + "Order_Demand": "5000 " + }, + "Product_0937": { + "Product_Code": "Product_0937", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/1/18", + "Order_Demand": "3000 " + }, + "Product_1806": { + "Product_Code": "Product_1806", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/3/14", + "Order_Demand": "2 " + }, + "Product_1810": { + "Product_Code": "Product_1810", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/11/29", + "Order_Demand": "5000 " + }, + "Product_1243": { + "Product_Code": "Product_1243", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/13", + "Order_Demand": "3000 " + }, + "Product_1464": { + "Product_Code": "Product_1464", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/19", + "Order_Demand": "500 " + }, + "Product_1370": { + "Product_Code": "Product_1370", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/28", + "Order_Demand": "3000 " + }, + "Product_0061": { + "Product_Code": "Product_0061", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/12", + "Order_Demand": "200 " + }, + "Product_0068": { + "Product_Code": "Product_0068", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/6", + "Order_Demand": "200 " + }, + "Product_0054": { + "Product_Code": "Product_0054", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/15", + "Order_Demand": "1000 " + }, + "Product_0067": { + "Product_Code": "Product_0067", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/2", + "Order_Demand": "1000 " + }, + "Product_1352": { + "Product_Code": "Product_1352", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/29", + "Order_Demand": "5000 " + }, + "Product_1354": { + "Product_Code": "Product_1354", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/11", + "Order_Demand": "1000 " + }, + "Product_1257": { + "Product_Code": "Product_1257", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/16", + "Order_Demand": "100 " + }, + "Product_1210": { + "Product_Code": "Product_1210", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/6", + "Order_Demand": "3000 " + }, + "Product_1656": { + "Product_Code": "Product_1656", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/4/6", + "Order_Demand": "2 " + }, + "Product_2041": { + "Product_Code": "Product_2041", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/1/13", + "Order_Demand": "100 " + }, + "Product_1611": { + "Product_Code": "Product_1611", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/1/20", + "Order_Demand": "100 " + }, + "Product_1578": { + "Product_Code": "Product_1578", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/27", + "Order_Demand": "500 " + }, + "Product_0290": { + "Product_Code": "Product_0290", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/11/15", + "Order_Demand": "1 " + }, + "Product_0952": { + "Product_Code": "Product_0952", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/10/7", + "Order_Demand": "300 " + }, + "Product_1460": { + "Product_Code": "Product_1460", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/29", + "Order_Demand": "250 " + }, + "Product_1533": { + "Product_Code": "Product_1533", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/7", + "Order_Demand": "4000 " + }, + "Product_1624": { + "Product_Code": "Product_1624", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/9", + "Order_Demand": "1000 " + }, + "Product_1916": { + "Product_Code": "Product_1916", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/7/26", + "Order_Demand": "1 " + }, + "Product_0805": { + "Product_Code": "Product_0805", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/18", + "Order_Demand": "1 " + }, + "Product_1963": { + "Product_Code": "Product_1963", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/18", + "Order_Demand": "1 " + }, + "Product_1952": { + "Product_Code": "Product_1952", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/10", + "Order_Demand": "2 " + }, + "Product_0713": { + "Product_Code": "Product_0713", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/8", + "Order_Demand": "10 " + }, + "Product_1936": { + "Product_Code": "Product_1936", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/17", + "Order_Demand": "2 " + }, + "Product_0799": { + "Product_Code": "Product_0799", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/16", + "Order_Demand": "1 " + }, + "Product_0700": { + "Product_Code": "Product_0700", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/7/26", + "Order_Demand": "50 " + }, + "Product_0767": { + "Product_Code": "Product_0767", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/13", + "Order_Demand": "25 " + }, + "Product_0264": { + "Product_Code": "Product_0264", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/7/1", + "Order_Demand": "1 " + }, + "Product_0733": { + "Product_Code": "Product_0733", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/6", + "Order_Demand": "15 " + }, + "Product_0749": { + "Product_Code": "Product_0749", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/1", + "Order_Demand": "10 " + }, + "Product_0695": { + "Product_Code": "Product_0695", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/26", + "Order_Demand": "25 " + }, + "Product_0716": { + "Product_Code": "Product_0716", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/9/8", + "Order_Demand": "5 " + }, + "Product_0770": { + "Product_Code": "Product_0770", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/16", + "Order_Demand": "25 " + }, + "Product_0606": { + "Product_Code": "Product_0606", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/25", + "Order_Demand": "25 " + }, + "Product_0779": { + "Product_Code": "Product_0779", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/26", + "Order_Demand": "5 " + }, + "Product_0798": { + "Product_Code": "Product_0798", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/9/30", + "Order_Demand": "1 " + }, + "Product_0701": { + "Product_Code": "Product_0701", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/18", + "Order_Demand": "25 " + }, + "Product_0708": { + "Product_Code": "Product_0708", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/9/1", + "Order_Demand": "0 " + }, + "Product_0709": { + "Product_Code": "Product_0709", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/8/25", + "Order_Demand": "25 " + }, + "Product_0725": { + "Product_Code": "Product_0725", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/12", + "Order_Demand": "25 " + }, + "Product_0726": { + "Product_Code": "Product_0726", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/19", + "Order_Demand": "125 " + }, + "Product_0729": { + "Product_Code": "Product_0729", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/8/25", + "Order_Demand": "25 " + }, + "Product_0742": { + "Product_Code": "Product_0742", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/18", + "Order_Demand": "25 " + }, + "Product_0744": { + "Product_Code": "Product_0744", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/21", + "Order_Demand": "25 " + }, + "Product_0758": { + "Product_Code": "Product_0758", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/1", + "Order_Demand": "50 " + }, + "Product_0760": { + "Product_Code": "Product_0760", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/20", + "Order_Demand": "50 " + }, + "Product_0761": { + "Product_Code": "Product_0761", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/20", + "Order_Demand": "25 " + }, + "Product_0772": { + "Product_Code": "Product_0772", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/12", + "Order_Demand": "25 " + }, + "Product_0773": { + "Product_Code": "Product_0773", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/16", + "Order_Demand": "25 " + }, + "Product_0821": { + "Product_Code": "Product_0821", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/17", + "Order_Demand": "5 " + }, + "Product_0718": { + "Product_Code": "Product_0718", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/8/18", + "Order_Demand": "5 " + }, + "Product_0704": { + "Product_Code": "Product_0704", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/27", + "Order_Demand": "4 " + }, + "Product_0722": { + "Product_Code": "Product_0722", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/8/26", + "Order_Demand": "2 " + }, + "Product_0748": { + "Product_Code": "Product_0748", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/27", + "Order_Demand": "1 " + }, + "Product_0764": { + "Product_Code": "Product_0764", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/27", + "Order_Demand": "1 " + }, + "Product_0789": { + "Product_Code": "Product_0789", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/24", + "Order_Demand": "1 " + }, + "Product_0803": { + "Product_Code": "Product_0803", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/18", + "Order_Demand": "1 " + }, + "Product_0806": { + "Product_Code": "Product_0806", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/23", + "Order_Demand": "1 " + }, + "Product_0711": { + "Product_Code": "Product_0711", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/21", + "Order_Demand": "1 " + }, + "Product_0712": { + "Product_Code": "Product_0712", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/26", + "Order_Demand": "1 " + }, + "Product_0793": { + "Product_Code": "Product_0793", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/4/14", + "Order_Demand": "5 " + }, + "Product_0801": { + "Product_Code": "Product_0801", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/18", + "Order_Demand": "1 " + }, + "Product_0822": { + "Product_Code": "Product_0822", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/16", + "Order_Demand": "2 " + }, + "Product_0734": { + "Product_Code": "Product_0734", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/18", + "Order_Demand": "(15)" + }, + "Product_0732": { + "Product_Code": "Product_0732", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/6", + "Order_Demand": "2 " + }, + "Product_0731": { + "Product_Code": "Product_0731", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/21", + "Order_Demand": "1 " + }, + "Product_0776": { + "Product_Code": "Product_0776", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/27", + "Order_Demand": "1 " + }, + "Product_0802": { + "Product_Code": "Product_0802", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/18", + "Order_Demand": "1 " + }, + "Product_0782": { + "Product_Code": "Product_0782", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/16", + "Order_Demand": "5 " + }, + "Product_0784": { + "Product_Code": "Product_0784", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/15", + "Order_Demand": "10 " + }, + "Product_0810": { + "Product_Code": "Product_0810", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/19", + "Order_Demand": "50 " + }, + "Product_0963": { + "Product_Code": "Product_0963", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/3/4", + "Order_Demand": "100 " + }, + "Product_1258": { + "Product_Code": "Product_1258", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/16", + "Order_Demand": "100 " + }, + "Product_1254": { + "Product_Code": "Product_1254", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/16", + "Order_Demand": "100 " + }, + "Product_1260": { + "Product_Code": "Product_1260", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/24", + "Order_Demand": "100 " + }, + "Product_1251": { + "Product_Code": "Product_1251", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/19", + "Order_Demand": "100 " + }, + "Product_1255": { + "Product_Code": "Product_1255", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/24", + "Order_Demand": "100 " + }, + "Product_1261": { + "Product_Code": "Product_1261", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/19", + "Order_Demand": "100 " + }, + "Product_1425": { + "Product_Code": "Product_1425", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/15", + "Order_Demand": "500 " + }, + "Product_1417": { + "Product_Code": "Product_1417", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/15", + "Order_Demand": "500 " + }, + "Product_1669": { + "Product_Code": "Product_1669", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/7/19", + "Order_Demand": "1 " + }, + "Product_1177": { + "Product_Code": "Product_1177", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/12/15", + "Order_Demand": "10 " + }, + "Product_1175": { + "Product_Code": "Product_1175", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/12/7", + "Order_Demand": "50 " + }, + "Product_1114": { + "Product_Code": "Product_1114", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/4/14", + "Order_Demand": "10 " + }, + "Product_1931": { + "Product_Code": "Product_1931", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/22", + "Order_Demand": "1 " + }, + "Product_1699": { + "Product_Code": "Product_1699", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/10/5", + "Order_Demand": "3 " + }, + "Product_0268": { + "Product_Code": "Product_0268", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/4/27", + "Order_Demand": "1 " + }, + "Product_0009": { + "Product_Code": "Product_0009", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/21", + "Order_Demand": "200 " + }, + "Product_1201": { + "Product_Code": "Product_1201", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/20", + "Order_Demand": "1000 " + }, + "Product_0367": { + "Product_Code": "Product_0367", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/15", + "Order_Demand": "500 " + }, + "Product_1375": { + "Product_Code": "Product_1375", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/23", + "Order_Demand": "1000 " + }, + "Product_0472": { + "Product_Code": "Product_0472", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/8/4", + "Order_Demand": "2 " + }, + "Product_0928": { + "Product_Code": "Product_0928", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/12/22", + "Order_Demand": "1000 " + }, + "Product_2017": { + "Product_Code": "Product_2017", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/22", + "Order_Demand": "1000 " + }, + "Product_1899": { + "Product_Code": "Product_1899", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/2", + "Order_Demand": "100 " + }, + "Product_1228": { + "Product_Code": "Product_1228", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/6", + "Order_Demand": "1000 " + }, + "Product_1396": { + "Product_Code": "Product_1396", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/4", + "Order_Demand": "3000 " + }, + "Product_0430": { + "Product_Code": "Product_0430", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/4/13", + "Order_Demand": "10 " + }, + "Product_0087": { + "Product_Code": "Product_0087", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/4", + "Order_Demand": "100 " + }, + "Product_1229": { + "Product_Code": "Product_1229", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/24", + "Order_Demand": "100 " + }, + "Product_0837": { + "Product_Code": "Product_0837", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/8", + "Order_Demand": "100 " + }, + "Product_1467": { + "Product_Code": "Product_1467", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/15", + "Order_Demand": "2000 " + }, + "Product_0641": { + "Product_Code": "Product_0641", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/15", + "Order_Demand": "2 " + }, + "Product_1314": { + "Product_Code": "Product_1314", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/2", + "Order_Demand": "500 " + }, + "Product_1392": { + "Product_Code": "Product_1392", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/3", + "Order_Demand": "100 " + }, + "Product_0738": { + "Product_Code": "Product_0738", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/7/28", + "Order_Demand": "10 " + }, + "Product_0754": { + "Product_Code": "Product_0754", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/1", + "Order_Demand": "5 " + }, + "Product_0762": { + "Product_Code": "Product_0762", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/21", + "Order_Demand": "25 " + }, + "Product_1639": { + "Product_Code": "Product_1639", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/15", + "Order_Demand": "500 " + }, + "Product_1668": { + "Product_Code": "Product_1668", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/10/13", + "Order_Demand": "2 " + }, + "Product_1673": { + "Product_Code": "Product_1673", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/5/6", + "Order_Demand": "2 " + }, + "Product_1661": { + "Product_Code": "Product_1661", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/12/15", + "Order_Demand": "1 " + }, + "Product_1666": { + "Product_Code": "Product_1666", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/12/15", + "Order_Demand": "1 " + }, + "Product_1667": { + "Product_Code": "Product_1667", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/8/18", + "Order_Demand": "1 " + }, + "Product_1700": { + "Product_Code": "Product_1700", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/5/10", + "Order_Demand": "12 " + }, + "Product_1701": { + "Product_Code": "Product_1701", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/7/28", + "Order_Demand": "1 " + }, + "Product_1674": { + "Product_Code": "Product_1674", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/11/8", + "Order_Demand": "2 " + }, + "Product_1710": { + "Product_Code": "Product_1710", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/11/4", + "Order_Demand": "2 " + }, + "Product_1713": { + "Product_Code": "Product_1713", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/4/22", + "Order_Demand": "20 " + }, + "Product_1714": { + "Product_Code": "Product_1714", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/4/22", + "Order_Demand": "20 " + }, + "Product_1670": { + "Product_Code": "Product_1670", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/10/14", + "Order_Demand": "5 " + }, + "Product_1660": { + "Product_Code": "Product_1660", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/3/2", + "Order_Demand": "9 " + }, + "Product_1098": { + "Product_Code": "Product_1098", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/11/11", + "Order_Demand": "4 " + }, + "Product_1909": { + "Product_Code": "Product_1909", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/3", + "Order_Demand": "1 " + }, + "Product_0607": { + "Product_Code": "Product_0607", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/9/15", + "Order_Demand": "25 " + }, + "Product_1954": { + "Product_Code": "Product_1954", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/19", + "Order_Demand": "2 " + }, + "Product_0817": { + "Product_Code": "Product_0817", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/7/14", + "Order_Demand": "1 " + }, + "Product_0934": { + "Product_Code": "Product_0934", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/12/27", + "Order_Demand": "2500 " + }, + "Product_1550": { + "Product_Code": "Product_1550", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/22", + "Order_Demand": "500 " + }, + "Product_1634": { + "Product_Code": "Product_1634", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/7", + "Order_Demand": "50 " + }, + "Product_1412": { + "Product_Code": "Product_1412", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/13", + "Order_Demand": "100 " + }, + "Product_0823": { + "Product_Code": "Product_0823", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/12/5", + "Order_Demand": "1 " + }, + "Product_0974": { + "Product_Code": "Product_0974", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/9/2", + "Order_Demand": "100 " + }, + "Product_0978": { + "Product_Code": "Product_0978", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/12/13", + "Order_Demand": "50 " + }, + "Product_0619": { + "Product_Code": "Product_0619", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/17", + "Order_Demand": "25 " + }, + "Product_1200": { + "Product_Code": "Product_1200", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/22", + "Order_Demand": "300 " + }, + "Product_1240": { + "Product_Code": "Product_1240", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/20", + "Order_Demand": "5000 " + }, + "Product_1526": { + "Product_Code": "Product_1526", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/3", + "Order_Demand": "2000 " + }, + "Product_0612": { + "Product_Code": "Product_0612", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/6", + "Order_Demand": "1 " + }, + "Product_1506": { + "Product_Code": "Product_1506", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/24", + "Order_Demand": "250 " + }, + "Product_1232": { + "Product_Code": "Product_1232", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/1", + "Order_Demand": "1000 " + }, + "Product_1642": { + "Product_Code": "Product_1642", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/17", + "Order_Demand": "500 " + }, + "Product_1009": { + "Product_Code": "Product_1009", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/1/5", + "Order_Demand": "200 " + }, + "Product_0964": { + "Product_Code": "Product_0964", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/18", + "Order_Demand": "700 " + }, + "Product_0097": { + "Product_Code": "Product_0097", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/28", + "Order_Demand": "300 " + }, + "Product_0078": { + "Product_Code": "Product_0078", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/18", + "Order_Demand": "100 " + }, + "Product_1284": { + "Product_Code": "Product_1284", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/11", + "Order_Demand": "200 " + }, + "Product_1365": { + "Product_Code": "Product_1365", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/16", + "Order_Demand": "300 " + }, + "Product_0982": { + "Product_Code": "Product_0982", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/2/3", + "Order_Demand": "200 " + }, + "Product_0144": { + "Product_Code": "Product_0144", + "Warehouse": "Whse_C", + "Product_Category": "Category_005", + "Date": "2016/11/25", + "Order_Demand": "100 " + }, + "Product_1353": { + "Product_Code": "Product_1353", + "Warehouse": "Whse_C", + "Product_Category": "Category_019", + "Date": "2016/12/26", + "Order_Demand": "1000 " + }, + "Product_1602": { + "Product_Code": "Product_1602", + "Warehouse": "Whse_C", + "Product_Category": "Category_030", + "Date": "2016/12/16", + "Order_Demand": "700 " + }, + "Product_1132": { + "Product_Code": "Product_1132", + "Warehouse": "Whse_C", + "Product_Category": "Category_030", + "Date": "2016/1/19", + "Order_Demand": "200 " + }, + "Product_1597": { + "Product_Code": "Product_1597", + "Warehouse": "Whse_C", + "Product_Category": "Category_030", + "Date": "2016/8/31", + "Order_Demand": "200 " + }, + "Product_0116": { + "Product_Code": "Product_0116", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/3/22", + "Order_Demand": "(30)" + }, + "Product_0878": { + "Product_Code": "Product_0878", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/12/19", + "Order_Demand": "100 " + }, + "Product_0895": { + "Product_Code": "Product_0895", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/12/5", + "Order_Demand": "66 " + }, + "Product_0896": { + "Product_Code": "Product_0896", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/12/16", + "Order_Demand": "30 " + }, + "Product_0863": { + "Product_Code": "Product_0863", + "Warehouse": "Whse_C", + "Product_Category": "Category_005", + "Date": "2016/12/21", + "Order_Demand": "2000 " + }, + "Product_0147": { + "Product_Code": "Product_0147", + "Warehouse": "Whse_C", + "Product_Category": "Category_005", + "Date": "2016/12/13", + "Order_Demand": "1000 " + }, + "Product_1542": { + "Product_Code": "Product_1542", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/12", + "Order_Demand": "1000 " + }, + "Product_1599": { + "Product_Code": "Product_1599", + "Warehouse": "Whse_C", + "Product_Category": "Category_030", + "Date": "2016/11/9", + "Order_Demand": "600 " + }, + "Product_1592": { + "Product_Code": "Product_1592", + "Warehouse": "Whse_C", + "Product_Category": "Category_030", + "Date": "2016/12/16", + "Order_Demand": "200 " + }, + "Product_1595": { + "Product_Code": "Product_1595", + "Warehouse": "Whse_C", + "Product_Category": "Category_030", + "Date": "2016/11/29", + "Order_Demand": "100 " + }, + "Product_0555": { + "Product_Code": "Product_0555", + "Warehouse": "Whse_C", + "Product_Category": "Category_030", + "Date": "2016/12/15", + "Order_Demand": "1000 " + }, + "Product_1131": { + "Product_Code": "Product_1131", + "Warehouse": "Whse_C", + "Product_Category": "Category_030", + "Date": "2016/11/1", + "Order_Demand": "1000 " + }, + "Product_1598": { + "Product_Code": "Product_1598", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/9/19", + "Order_Demand": "1000 " + }, + "Product_0403": { + "Product_Code": "Product_0403", + "Warehouse": "Whse_S", + "Product_Category": "Category_032", + "Date": "2016/11/4", + "Order_Demand": "6 " + }, + "Product_0470": { + "Product_Code": "Product_0470", + "Warehouse": "Whse_S", + "Product_Category": "Category_005", + "Date": "2016/8/22", + "Order_Demand": "25000 " + }, + "Product_1630": { + "Product_Code": "Product_1630", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/18", + "Order_Demand": "1800 " + }, + "Product_0413": { + "Product_Code": "Product_0413", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/5/31", + "Order_Demand": "4000 " + }, + "Product_0420": { + "Product_Code": "Product_0420", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/2/8", + "Order_Demand": "1000 " + }, + "Product_0427": { + "Product_Code": "Product_0427", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/8/18", + "Order_Demand": "3600 " + }, + "Product_0425": { + "Product_Code": "Product_0425", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/8/8", + "Order_Demand": "750 " + }, + "Product_0938": { + "Product_Code": "Product_0938", + "Warehouse": "Whse_S", + "Product_Category": "Category_006", + "Date": "2015/11/16", + "Order_Demand": "100000 " + }, + "Product_2053": { + "Product_Code": "Product_2053", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/12/8", + "Order_Demand": "200 " + }, + "Product_2056": { + "Product_Code": "Product_2056", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/10/28", + "Order_Demand": "10 " + }, + "Product_2055": { + "Product_Code": "Product_2055", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/2/9", + "Order_Demand": "2 " + }, + "Product_1053": { + "Product_Code": "Product_1053", + "Warehouse": "Whse_A", + "Product_Category": "Category_024", + "Date": "2016/5/10", + "Order_Demand": "4 " + }, + "Product_1409": { + "Product_Code": "Product_1409", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/7/26", + "Order_Demand": "200 " + }, + "Product_0424": { + "Product_Code": "Product_0424", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/12/23", + "Order_Demand": "3000 " + }, + "Product_1249": { + "Product_Code": "Product_1249", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/4/29", + "Order_Demand": "100 " + }, + "Product_0414": { + "Product_Code": "Product_0414", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "NA", + "Order_Demand": "(200)" + }, + "Product_0419": { + "Product_Code": "Product_0419", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/12/19", + "Order_Demand": "200 " + }, + "Product_0415": { + "Product_Code": "Product_0415", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/9/5", + "Order_Demand": "4000 " + }, + "Product_0418": { + "Product_Code": "Product_0418", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/2/22", + "Order_Demand": "1000 " + }, + "Product_0426": { + "Product_Code": "Product_0426", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/11/10", + "Order_Demand": "100 " + }, + "Product_0422": { + "Product_Code": "Product_0422", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/1/13", + "Order_Demand": "5000 " + }, + "Product_1388": { + "Product_Code": "Product_1388", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/26", + "Order_Demand": "500 " + }, + "Product_1276": { + "Product_Code": "Product_1276", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/2", + "Order_Demand": "100 " + }, + "Product_1022": { + "Product_Code": "Product_1022", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/25", + "Order_Demand": "200 " + }, + "Product_1748": { + "Product_Code": "Product_1748", + "Warehouse": "Whse_A", + "Product_Category": "Category_026", + "Date": "2016/10/10", + "Order_Demand": "40 " + }, + "Product_0985": { + "Product_Code": "Product_0985", + "Warehouse": "Whse_A", + "Product_Category": "Category_028", + "Date": "2016/12/12", + "Order_Demand": "0 " + }, + "Product_2054": { + "Product_Code": "Product_2054", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/11/3", + "Order_Demand": "50 " + }, + "Product_0123": { + "Product_Code": "Product_0123", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/11/18", + "Order_Demand": "20 " + }, + "Product_1560": { + "Product_Code": "Product_1560", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/11/9", + "Order_Demand": "2000 " + }, + "Product_0990": { + "Product_Code": "Product_0990", + "Warehouse": "Whse_A", + "Product_Category": "Category_028", + "Date": "2016/12/8", + "Order_Demand": "300 " + }, + "Product_0423": { + "Product_Code": "Product_0423", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/7/28", + "Order_Demand": "0 " + }, + "Product_0417": { + "Product_Code": "Product_0417", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/9/8", + "Order_Demand": "0 " + }, + "Product_1481": { + "Product_Code": "Product_1481", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/3", + "Order_Demand": "1000 " + }, + "Product_0987": { + "Product_Code": "Product_0987", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/11/28", + "Order_Demand": "200 " + }, + "Product_1003": { + "Product_Code": "Product_1003", + "Warehouse": "Whse_A", + "Product_Category": "Category_006", + "Date": "2016/4/26", + "Order_Demand": "100 " + }, + "Product_1503": { + "Product_Code": "Product_1503", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/11/11", + "Order_Demand": "1000 " + }, + "Product_0347": { + "Product_Code": "Product_0347", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/9/8", + "Order_Demand": "4 " + }, + "Product_1535": { + "Product_Code": "Product_1535", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/27", + "Order_Demand": "100 " + }, + "Product_0189": { + "Product_Code": "Product_0189", + "Warehouse": "Whse_A", + "Product_Category": "Category_007", + "Date": "2016/11/23", + "Order_Demand": "60 " + }, + "Product_0190": { + "Product_Code": "Product_0190", + "Warehouse": "Whse_A", + "Product_Category": "Category_007", + "Date": "2016/12/23", + "Order_Demand": "100 " + }, + "Product_1724": { + "Product_Code": "Product_1724", + "Warehouse": "Whse_A", + "Product_Category": "Category_003", + "Date": "2016/9/15", + "Order_Demand": "27 " + }, + "Product_0995": { + "Product_Code": "Product_0995", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/9/26", + "Order_Demand": "1000 " + }, + "Product_1837": { + "Product_Code": "Product_1837", + "Warehouse": "Whse_A", + "Product_Category": "Category_031", + "Date": "2016/11/23", + "Order_Demand": "2 " + }, + "Product_1776": { + "Product_Code": "Product_1776", + "Warehouse": "Whse_J", + "Product_Category": "Category_010", + "Date": "2016/11/25", + "Order_Demand": "1 " + }, + "Product_1976": { + "Product_Code": "Product_1976", + "Warehouse": "Whse_A", + "Product_Category": "Category_007", + "Date": "2016/9/29", + "Order_Demand": "1 " + }, + "Product_0547": { + "Product_Code": "Product_0547", + "Warehouse": "Whse_J", + "Product_Category": "Category_013", + "Date": "2016/6/7", + "Order_Demand": "10 " + }, + "Product_0137": { + "Product_Code": "Product_0137", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/12/9", + "Order_Demand": "1 " + }, + "Product_0946": { + "Product_Code": "Product_0946", + "Warehouse": "Whse_A", + "Product_Category": "Category_018", + "Date": "2016/12/20", + "Order_Demand": "1 " + }, + "Product_1834": { + "Product_Code": "Product_1834", + "Warehouse": "Whse_J", + "Product_Category": "Category_018", + "Date": "2016/2/16", + "Order_Demand": "5 " + }, + "Product_1844": { + "Product_Code": "Product_1844", + "Warehouse": "Whse_A", + "Product_Category": "Category_018", + "Date": "2016/10/13", + "Order_Demand": "6 " + }, + "Product_0967": { + "Product_Code": "Product_0967", + "Warehouse": "Whse_A", + "Product_Category": "Category_006", + "Date": "2016/6/10", + "Order_Demand": "10 " + }, + "Product_1006": { + "Product_Code": "Product_1006", + "Warehouse": "Whse_A", + "Product_Category": "Category_006", + "Date": "2016/11/4", + "Order_Demand": "100 " + }, + "Product_0951": { + "Product_Code": "Product_0951", + "Warehouse": "Whse_A", + "Product_Category": "Category_018", + "Date": "2016/9/7", + "Order_Demand": "2 " + }, + "Product_0944": { + "Product_Code": "Product_0944", + "Warehouse": "Whse_A", + "Product_Category": "Category_018", + "Date": "2016/10/11", + "Order_Demand": "(1)" + }, + "Product_1814": { + "Product_Code": "Product_1814", + "Warehouse": "Whse_A", + "Product_Category": "Category_018", + "Date": "2016/11/11", + "Order_Demand": "1 " + }, + "Product_1828": { + "Product_Code": "Product_1828", + "Warehouse": "Whse_A", + "Product_Category": "Category_018", + "Date": "2016/10/5", + "Order_Demand": "3 " + }, + "Product_0977": { + "Product_Code": "Product_0977", + "Warehouse": "Whse_A", + "Product_Category": "Category_028", + "Date": "2016/1/4", + "Order_Demand": "0 " + }, + "Product_1002": { + "Product_Code": "Product_1002", + "Warehouse": "Whse_A", + "Product_Category": "Category_028", + "Date": "2016/7/20", + "Order_Demand": "150 " + }, + "Product_1647": { + "Product_Code": "Product_1647", + "Warehouse": "Whse_A", + "Product_Category": "Category_024", + "Date": "2016/10/5", + "Order_Demand": "1 " + }, + "Product_0421": { + "Product_Code": "Product_0421", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/11/23", + "Order_Demand": "0 " + }, + "Product_0416": { + "Product_Code": "Product_0416", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/10/12", + "Order_Demand": "500 " + }, + "Product_0318": { + "Product_Code": "Product_0318", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/15", + "Order_Demand": "10 " + }, + "Product_2123": { + "Product_Code": "Product_2123", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/2/2", + "Order_Demand": "12 " + }, + "Product_2130": { + "Product_Code": "Product_2130", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/11/2", + "Order_Demand": "5 " + }, + "Product_2057": { + "Product_Code": "Product_2057", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/11/2", + "Order_Demand": "1 " + }, + "Product_1054": { + "Product_Code": "Product_1054", + "Warehouse": "Whse_A", + "Product_Category": "Category_024", + "Date": "2016/11/15", + "Order_Demand": "5 " + }, + "Product_0294": { + "Product_Code": "Product_0294", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/5/13", + "Order_Demand": "(2)" + }, + "Product_1423": { + "Product_Code": "Product_1423", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/8", + "Order_Demand": "100 " + }, + "Product_1421": { + "Product_Code": "Product_1421", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "NA", + "Order_Demand": "(1900)" + }, + "Product_1422": { + "Product_Code": "Product_1422", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "NA", + "Order_Demand": "(800)" + }, + "Product_0133": { + "Product_Code": "Product_0133", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/4/22", + "Order_Demand": "1 " + }, + "Product_0274": { + "Product_Code": "Product_0274", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/10/21", + "Order_Demand": "100 " + }, + "Product_1509": { + "Product_Code": "Product_1509", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/2", + "Order_Demand": "1000 " + }, + "Product_1832": { + "Product_Code": "Product_1832", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/9/12", + "Order_Demand": "1500 " + }, + "Product_0382": { + "Product_Code": "Product_0382", + "Warehouse": "Whse_J", + "Product_Category": "Category_030", + "Date": "2016/12/1", + "Order_Demand": "100 " + }, + "Product_1546": { + "Product_Code": "Product_1546", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/15", + "Order_Demand": "2000 " + }, + "Product_0109": { + "Product_Code": "Product_0109", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/11/11", + "Order_Demand": "10000 " + }, + "Product_0107": { + "Product_Code": "Product_0107", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/10/7", + "Order_Demand": "1000 " + }, + "Product_1204": { + "Product_Code": "Product_1204", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/15", + "Order_Demand": "4000 " + }, + "Product_1449": { + "Product_Code": "Product_1449", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/8", + "Order_Demand": "1000 " + }, + "Product_0971": { + "Product_Code": "Product_0971", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/1/21", + "Order_Demand": "50 " + }, + "Product_0833": { + "Product_Code": "Product_0833", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/14", + "Order_Demand": "100 " + }, + "Product_1060": { + "Product_Code": "Product_1060", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/10/13", + "Order_Demand": "120 " + }, + "Product_1621": { + "Product_Code": "Product_1621", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/21", + "Order_Demand": "100 " + }, + "Product_0108": { + "Product_Code": "Product_0108", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/4/7", + "Order_Demand": "10000 " + }, + "Product_0904": { + "Product_Code": "Product_0904", + "Warehouse": "Whse_J", + "Product_Category": "Category_023", + "Date": "2016/8/3", + "Order_Demand": "50 " + }, + "Product_1628": { + "Product_Code": "Product_1628", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/7", + "Order_Demand": "1000 " + }, + "Product_2032": { + "Product_Code": "Product_2032", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/10/3", + "Order_Demand": "30000 " + }, + "Product_1049": { + "Product_Code": "Product_1049", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/10/25", + "Order_Demand": "120 " + }, + "Product_1063": { + "Product_Code": "Product_1063", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/12/6", + "Order_Demand": "6 " + }, + "Product_1055": { + "Product_Code": "Product_1055", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/10/28", + "Order_Demand": "120 " + }, + "Product_1032": { + "Product_Code": "Product_1032", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/10/31", + "Order_Demand": "200 " + }, + "Product_0051": { + "Product_Code": "Product_0051", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/9/29", + "Order_Demand": "675 " + }, + "Product_1236": { + "Product_Code": "Product_1236", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/14", + "Order_Demand": "200 " + }, + "Product_0161": { + "Product_Code": "Product_0161", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/2/2", + "Order_Demand": "(50)" + }, + "Product_0164": { + "Product_Code": "Product_0164", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/7/22", + "Order_Demand": "3 " + }, + "Product_1801": { + "Product_Code": "Product_1801", + "Warehouse": "Whse_J", + "Product_Category": "Category_017", + "Date": "2016/11/4", + "Order_Demand": "1 " + }, + "Product_1623": { + "Product_Code": "Product_1623", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/6", + "Order_Demand": "1000 " + }, + "Product_1947": { + "Product_Code": "Product_1947", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/7/15", + "Order_Demand": "2 " + }, + "Product_1223": { + "Product_Code": "Product_1223", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/5", + "Order_Demand": "1000 " + }, + "Product_1047": { + "Product_Code": "Product_1047", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/10/21", + "Order_Demand": "10000 " + }, + "Product_2035": { + "Product_Code": "Product_2035", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/10/27", + "Order_Demand": "10000 " + }, + "Product_0355": { + "Product_Code": "Product_0355", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/31", + "Order_Demand": "2000 " + }, + "Product_0494": { + "Product_Code": "Product_0494", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/11/4", + "Order_Demand": "1 " + }, + "Product_0848": { + "Product_Code": "Product_0848", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/8/18", + "Order_Demand": "13 " + }, + "Product_0174": { + "Product_Code": "Product_0174", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/9/20", + "Order_Demand": "300 " + }, + "Product_1093": { + "Product_Code": "Product_1093", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/5/31", + "Order_Demand": "0 " + }, + "Product_0950": { + "Product_Code": "Product_0950", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/6/30", + "Order_Demand": "500 " + }, + "Product_1292": { + "Product_Code": "Product_1292", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/21", + "Order_Demand": "25 " + }, + "Product_1635": { + "Product_Code": "Product_1635", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/12", + "Order_Demand": "200 " + }, + "Product_2171": { + "Product_Code": "Product_2171", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/10/18", + "Order_Demand": "1 " + }, + "Product_0141": { + "Product_Code": "Product_0141", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/8/5", + "Order_Demand": "20 " + }, + "Product_1881": { + "Product_Code": "Product_1881", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/12/7", + "Order_Demand": "2 " + }, + "Product_1137": { + "Product_Code": "Product_1137", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/7/14", + "Order_Demand": "75 " + }, + "Product_1140": { + "Product_Code": "Product_1140", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/2/2", + "Order_Demand": "125 " + }, + "Product_0826": { + "Product_Code": "Product_0826", + "Warehouse": "Whse_J", + "Product_Category": "Category_008", + "Date": "2016/12/20", + "Order_Demand": "10 " + }, + "Product_1020": { + "Product_Code": "Product_1020", + "Warehouse": "Whse_J", + "Product_Category": "Category_008", + "Date": "2016/12/20", + "Order_Demand": "8 " + }, + "Product_1968": { + "Product_Code": "Product_1968", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/22", + "Order_Demand": "0 " + }, + "Product_2005": { + "Product_Code": "Product_2005", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/1", + "Order_Demand": "1000 " + }, + "Product_1864": { + "Product_Code": "Product_1864", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/24", + "Order_Demand": "1 " + }, + "Product_1868": { + "Product_Code": "Product_1868", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/17", + "Order_Demand": "1 " + }, + "Product_1857": { + "Product_Code": "Product_1857", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/24", + "Order_Demand": "1 " + }, + "Product_1874": { + "Product_Code": "Product_1874", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/7/8", + "Order_Demand": "1 " + }, + "Product_1851": { + "Product_Code": "Product_1851", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/24", + "Order_Demand": "1 " + }, + "Product_1165": { + "Product_Code": "Product_1165", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/3/10", + "Order_Demand": "10000 " + }, + "Product_0684": { + "Product_Code": "Product_0684", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/9/14", + "Order_Demand": "10 " + }, + "Product_1362": { + "Product_Code": "Product_1362", + "Warehouse": "Whse_J", + "Product_Category": "Category_033", + "Date": "2016/12/19", + "Order_Demand": "10000 " + }, + "Product_1199": { + "Product_Code": "Product_1199", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/11", + "Order_Demand": "3000 " + }, + "Product_1221": { + "Product_Code": "Product_1221", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/12/5", + "Order_Demand": "20000 " + }, + "Product_1731": { + "Product_Code": "Product_1731", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/8/15", + "Order_Demand": "200 " + }, + "Product_0062": { + "Product_Code": "Product_0062", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/13", + "Order_Demand": "500 " + }, + "Product_0775": { + "Product_Code": "Product_0775", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/27", + "Order_Demand": "1 " + }, + "Product_0788": { + "Product_Code": "Product_0788", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/9/23", + "Order_Demand": "1 " + }, + "Product_0747": { + "Product_Code": "Product_0747", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/9", + "Order_Demand": "1 " + }, + "Product_0763": { + "Product_Code": "Product_0763", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/9", + "Order_Demand": "1 " + }, + "Product_1627": { + "Product_Code": "Product_1627", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/11", + "Order_Demand": "100 " + }, + "Product_1865": { + "Product_Code": "Product_1865", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/18", + "Order_Demand": "2 " + }, + "Product_1649": { + "Product_Code": "Product_1649", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/11", + "Order_Demand": "2000 " + }, + "Product_0032": { + "Product_Code": "Product_0032", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/3/2", + "Order_Demand": "100 " + }, + "Product_2025": { + "Product_Code": "Product_2025", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/6/10", + "Order_Demand": "(100)" + }, + "Product_0028": { + "Product_Code": "Product_0028", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/7/8", + "Order_Demand": "50 " + }, + "Product_1860": { + "Product_Code": "Product_1860", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/12", + "Order_Demand": "1 " + }, + "Product_0073": { + "Product_Code": "Product_0073", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/4", + "Order_Demand": "1000 " + }, + "Product_1211": { + "Product_Code": "Product_1211", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/15", + "Order_Demand": "10000 " + }, + "Product_0065": { + "Product_Code": "Product_0065", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/6", + "Order_Demand": "2000 " + }, + "Product_1097": { + "Product_Code": "Product_1097", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/2/5", + "Order_Demand": "40 " + }, + "Product_1758": { + "Product_Code": "Product_1758", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/23", + "Order_Demand": "1 " + }, + "Product_0765": { + "Product_Code": "Product_0765", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/6", + "Order_Demand": "4 " + }, + "Product_0759": { + "Product_Code": "Product_0759", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/11", + "Order_Demand": "25 " + }, + "Product_1730": { + "Product_Code": "Product_1730", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/1/20", + "Order_Demand": "100 " + }, + "Product_0648": { + "Product_Code": "Product_0648", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/5", + "Order_Demand": "200 " + }, + "Product_0199": { + "Product_Code": "Product_0199", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/12/1", + "Order_Demand": "12 " + }, + "Product_0363": { + "Product_Code": "Product_0363", + "Warehouse": "Whse_J", + "Product_Category": "Category_023", + "Date": "2016/6/17", + "Order_Demand": "1 " + }, + "Product_0908": { + "Product_Code": "Product_0908", + "Warehouse": "Whse_J", + "Product_Category": "Category_023", + "Date": "2016/3/14", + "Order_Demand": "50 " + }, + "Product_1271": { + "Product_Code": "Product_1271", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/11", + "Order_Demand": "1000 " + }, + "Product_1397": { + "Product_Code": "Product_1397", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/1", + "Order_Demand": "1000 " + }, + "Product_1686": { + "Product_Code": "Product_1686", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/2/23", + "Order_Demand": "3 " + }, + "Product_1895": { + "Product_Code": "Product_1895", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/9/2", + "Order_Demand": "12 " + }, + "Product_1579": { + "Product_Code": "Product_1579", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/26", + "Order_Demand": "1000 " + }, + "Product_1146": { + "Product_Code": "Product_1146", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/12/14", + "Order_Demand": "1 " + }, + "Product_1813": { + "Product_Code": "Product_1813", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/10/18", + "Order_Demand": "2500 " + }, + "Product_0263": { + "Product_Code": "Product_0263", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/27", + "Order_Demand": "5 " + }, + "Product_0361": { + "Product_Code": "Product_0361", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/12/12", + "Order_Demand": "1 " + }, + "Product_1816": { + "Product_Code": "Product_1816", + "Warehouse": "Whse_J", + "Product_Category": "Category_031", + "Date": "2016/11/8", + "Order_Demand": "1 " + }, + "Product_0768": { + "Product_Code": "Product_0768", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/25", + "Order_Demand": "25 " + }, + "Product_0265": { + "Product_Code": "Product_0265", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/3", + "Order_Demand": "1 " + }, + "Product_0462": { + "Product_Code": "Product_0462", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/11/28", + "Order_Demand": "7 " + }, + "Product_0461": { + "Product_Code": "Product_0461", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/12/1", + "Order_Demand": "18 " + }, + "Product_0482": { + "Product_Code": "Product_0482", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/12/5", + "Order_Demand": "6 " + }, + "Product_0504": { + "Product_Code": "Product_0504", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/12/13", + "Order_Demand": "8 " + }, + "Product_1015": { + "Product_Code": "Product_1015", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/12/22", + "Order_Demand": "100 " + }, + "Product_0139": { + "Product_Code": "Product_0139", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/5/11", + "Order_Demand": "5 " + }, + "Product_0218": { + "Product_Code": "Product_0218", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/2/19", + "Order_Demand": "150 " + }, + "Product_0230": { + "Product_Code": "Product_0230", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/2/12", + "Order_Demand": "12 " + }, + "Product_0253": { + "Product_Code": "Product_0253", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/6/10", + "Order_Demand": "50 " + }, + "Product_2105": { + "Product_Code": "Product_2105", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/8/26", + "Order_Demand": "8 " + }, + "Product_2113": { + "Product_Code": "Product_2113", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/4/21", + "Order_Demand": "5 " + }, + "Product_1138": { + "Product_Code": "Product_1138", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/7/14", + "Order_Demand": "50 " + }, + "Product_1139": { + "Product_Code": "Product_1139", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/10/17", + "Order_Demand": "25 " + }, + "Product_1143": { + "Product_Code": "Product_1143", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/7/14", + "Order_Demand": "275 " + }, + "Product_2116": { + "Product_Code": "Product_2116", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/4/25", + "Order_Demand": "100 " + }, + "Product_2109": { + "Product_Code": "Product_2109", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/11/30", + "Order_Demand": "1 " + }, + "Product_2111": { + "Product_Code": "Product_2111", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/10/25", + "Order_Demand": "68 " + }, + "Product_2114": { + "Product_Code": "Product_2114", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/10/25", + "Order_Demand": "68 " + }, + "Product_0283": { + "Product_Code": "Product_0283", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/1/18", + "Order_Demand": "100 " + }, + "Product_1896": { + "Product_Code": "Product_1896", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/11/25", + "Order_Demand": "2 " + }, + "Product_0350": { + "Product_Code": "Product_0350", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/11/30", + "Order_Demand": "2 " + }, + "Product_0124": { + "Product_Code": "Product_0124", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/11/16", + "Order_Demand": "5 " + }, + "Product_0173": { + "Product_Code": "Product_0173", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/3/22", + "Order_Demand": "10 " + }, + "Product_2163": { + "Product_Code": "Product_2163", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/2/5", + "Order_Demand": "113 " + }, + "Product_1807": { + "Product_Code": "Product_1807", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/10/28", + "Order_Demand": "2 " + }, + "Product_0303": { + "Product_Code": "Product_0303", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/7/27", + "Order_Demand": "48 " + }, + "Product_1984": { + "Product_Code": "Product_1984", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/3/28", + "Order_Demand": "100 " + }, + "Product_1494": { + "Product_Code": "Product_1494", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/12", + "Order_Demand": "100 " + }, + "Product_0564": { + "Product_Code": "Product_0564", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/11/1", + "Order_Demand": "12 " + }, + "Product_0126": { + "Product_Code": "Product_0126", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/19", + "Order_Demand": "1000 " + }, + "Product_0474": { + "Product_Code": "Product_0474", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/6/22", + "Order_Demand": "4 " + }, + "Product_1792": { + "Product_Code": "Product_1792", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/11/21", + "Order_Demand": "1 " + }, + "Product_1155": { + "Product_Code": "Product_1155", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/5/12", + "Order_Demand": "10000 " + }, + "Product_0868": { + "Product_Code": "Product_0868", + "Warehouse": "Whse_J", + "Product_Category": "Category_023", + "Date": "2016/4/5", + "Order_Demand": "25 " + }, + "Product_0222": { + "Product_Code": "Product_0222", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/7", + "Order_Demand": "10 " + }, + "Product_1345": { + "Product_Code": "Product_1345", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/22", + "Order_Demand": "1000 " + }, + "Product_0481": { + "Product_Code": "Product_0481", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/9/6", + "Order_Demand": "12 " + }, + "Product_0513": { + "Product_Code": "Product_0513", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/4/18", + "Order_Demand": "7 " + }, + "Product_0186": { + "Product_Code": "Product_0186", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/10/3", + "Order_Demand": "10 " + }, + "Product_2122": { + "Product_Code": "Product_2122", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/10/6", + "Order_Demand": "63 " + }, + "Product_2120": { + "Product_Code": "Product_2120", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/7/25", + "Order_Demand": "2 " + }, + "Product_1800": { + "Product_Code": "Product_1800", + "Warehouse": "Whse_A", + "Product_Category": "Category_017", + "Date": "2016/3/8", + "Order_Demand": "4 " + }, + "Product_1836": { + "Product_Code": "Product_1836", + "Warehouse": "Whse_J", + "Product_Category": "Category_031", + "Date": "2016/8/15", + "Order_Demand": "1 " + }, + "Product_1775": { + "Product_Code": "Product_1775", + "Warehouse": "Whse_A", + "Product_Category": "Category_010", + "Date": "2016/2/17", + "Order_Demand": "2 " + }, + "Product_0330": { + "Product_Code": "Product_0330", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/8/1", + "Order_Demand": "6 " + }, + "Product_1178": { + "Product_Code": "Product_1178", + "Warehouse": "Whse_A", + "Product_Category": "Category_024", + "Date": "2016/6/29", + "Order_Demand": "4 " + }, + "Product_0132": { + "Product_Code": "Product_0132", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/12/23", + "Order_Demand": "50 " + }, + "Product_0293": { + "Product_Code": "Product_0293", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/12/1", + "Order_Demand": "50 " + }, + "Product_1777": { + "Product_Code": "Product_1777", + "Warehouse": "Whse_J", + "Product_Category": "Category_010", + "Date": "2016/12/9", + "Order_Demand": "3 " + }, + "Product_0634": { + "Product_Code": "Product_0634", + "Warehouse": "Whse_A", + "Product_Category": "Category_007", + "Date": "2016/11/28", + "Order_Demand": "(10)" + }, + "Product_0210": { + "Product_Code": "Product_0210", + "Warehouse": "Whse_A", + "Product_Category": "Category_007", + "Date": "2016/9/5", + "Order_Demand": "(147)" + }, + "Product_0636": { + "Product_Code": "Product_0636", + "Warehouse": "Whse_A", + "Product_Category": "Category_007", + "Date": "2016/1/20", + "Order_Demand": "170 " + }, + "Product_2164": { + "Product_Code": "Product_2164", + "Warehouse": "Whse_A", + "Product_Category": "Category_024", + "Date": "2016/11/28", + "Order_Demand": "(1)" + }, + "Product_2052": { + "Product_Code": "Product_2052", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/11/2", + "Order_Demand": "2 " + }, + "Product_0122": { + "Product_Code": "Product_0122", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/5/10", + "Order_Demand": "240 " + }, + "Product_2112": { + "Product_Code": "Product_2112", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/10/28", + "Order_Demand": "60 " + }, + "Product_0120": { + "Product_Code": "Product_0120", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/11/18", + "Order_Demand": "20 " + }, + "Product_0205": { + "Product_Code": "Product_0205", + "Warehouse": "Whse_A", + "Product_Category": "Category_007", + "Date": "2016/2/1", + "Order_Demand": "42 " + }, + "Product_0635": { + "Product_Code": "Product_0635", + "Warehouse": "Whse_A", + "Product_Category": "Category_007", + "Date": "2016/1/11", + "Order_Demand": "(200)" + }, + "Product_1676": { + "Product_Code": "Product_1676", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/9/12", + "Order_Demand": "2 " + }, + "Product_1773": { + "Product_Code": "Product_1773", + "Warehouse": "Whse_A", + "Product_Category": "Category_024", + "Date": "2016/6/6", + "Order_Demand": "1 " + }, + "Product_1293": { + "Product_Code": "Product_1293", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/9/13", + "Order_Demand": "0 " + }, + "Product_2107": { + "Product_Code": "Product_2107", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/1/29", + "Order_Demand": "210 " + }, + "Product_1095": { + "Product_Code": "Product_1095", + "Warehouse": "Whse_A", + "Product_Category": "Category_024", + "Date": "2016/8/22", + "Order_Demand": "2 " + }, + "Product_1727": { + "Product_Code": "Product_1727", + "Warehouse": "Whse_A", + "Product_Category": "Category_003", + "Date": "2016/11/21", + "Order_Demand": "(54)" + }, + "Product_1957": { + "Product_Code": "Product_1957", + "Warehouse": "Whse_A", + "Product_Category": "Category_029", + "Date": "2016/8/26", + "Order_Demand": "20 " + }, + "Product_0320": { + "Product_Code": "Product_0320", + "Warehouse": "Whse_A", + "Product_Category": "Category_024", + "Date": "2016/8/31", + "Order_Demand": "0 " + }, + "Product_1778": { + "Product_Code": "Product_1778", + "Warehouse": "Whse_A", + "Product_Category": "Category_010", + "Date": "2016/11/18", + "Order_Demand": "4 " + }, + "Product_1786": { + "Product_Code": "Product_1786", + "Warehouse": "Whse_J", + "Product_Category": "Category_018", + "Date": "2016/1/22", + "Order_Demand": "1 " + }, + "Product_2121": { + "Product_Code": "Product_2121", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/12/19", + "Order_Demand": "10 " + }, + "Product_1443": { + "Product_Code": "Product_1443", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "NA", + "Order_Demand": "(2000)" + }, + "Product_2110": { + "Product_Code": "Product_2110", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/4/21", + "Order_Demand": "5 " + }, + "Product_0300": { + "Product_Code": "Product_0300", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/5/26", + "Order_Demand": "(48)" + }, + "Product_0295": { + "Product_Code": "Product_0295", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/10/12", + "Order_Demand": "10 " + }, + "Product_2108": { + "Product_Code": "Product_2108", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/1/19", + "Order_Demand": "100 " + }, + "Product_1918": { + "Product_Code": "Product_1918", + "Warehouse": "Whse_A", + "Product_Category": "Category_018", + "Date": "2016/12/8", + "Order_Demand": "6 " + }, + "Product_2115": { + "Product_Code": "Product_2115", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/4/8", + "Order_Demand": "10 " + }, + "Product_1978": { + "Product_Code": "Product_1978", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/1", + "Order_Demand": "20 " + }, + "Product_0507": { + "Product_Code": "Product_0507", + "Warehouse": "Whse_A", + "Product_Category": "Category_012", + "Date": "2016/4/20", + "Order_Demand": "1 " + }, + "Product_1772": { + "Product_Code": "Product_1772", + "Warehouse": "Whse_A", + "Product_Category": "Category_024", + "Date": "2016/7/26", + "Order_Demand": "1 " + }, + "Product_0997": { + "Product_Code": "Product_0997", + "Warehouse": "Whse_A", + "Product_Category": "Category_028", + "Date": "2016/8/11", + "Order_Demand": "50 " + }, + "Product_1180": { + "Product_Code": "Product_1180", + "Warehouse": "Whse_A", + "Product_Category": "Category_003", + "Date": "2016/9/6", + "Order_Demand": "18 " + }, + "Product_1892": { + "Product_Code": "Product_1892", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/10/5", + "Order_Demand": "1 " + }, + "Product_0134": { + "Product_Code": "Product_0134", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/7/26", + "Order_Demand": "20 " + }, + "Product_1898": { + "Product_Code": "Product_1898", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/5/2", + "Order_Demand": "5 " + }, + "Product_1959": { + "Product_Code": "Product_1959", + "Warehouse": "Whse_A", + "Product_Category": "Category_029", + "Date": "2016/8/26", + "Order_Demand": "10 " + }, + "Product_1519": { + "Product_Code": "Product_1519", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/29", + "Order_Demand": "500 " + }, + "Product_0456": { + "Product_Code": "Product_0456", + "Warehouse": "Whse_A", + "Product_Category": "Category_015", + "Date": "2016/8/22", + "Order_Demand": "4 " + }, + "Product_0135": { + "Product_Code": "Product_0135", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/8/3", + "Order_Demand": "3 " + }, + "Product_0136": { + "Product_Code": "Product_0136", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/9/8", + "Order_Demand": "4 " + }, + "Product_1960": { + "Product_Code": "Product_1960", + "Warehouse": "Whse_A", + "Product_Category": "Category_029", + "Date": "2016/10/5", + "Order_Demand": "1 " + }, + "Product_1958": { + "Product_Code": "Product_1958", + "Warehouse": "Whse_A", + "Product_Category": "Category_029", + "Date": "2016/3/17", + "Order_Demand": "40 " + }, + "Product_1716": { + "Product_Code": "Product_1716", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/8/26", + "Order_Demand": "1 " + }, + "Product_0599": { + "Product_Code": "Product_0599", + "Warehouse": "Whse_A", + "Product_Category": "Category_017", + "Date": "2016/10/26", + "Order_Demand": "10 " + }, + "Product_0148": { + "Product_Code": "Product_0148", + "Warehouse": "Whse_A", + "Product_Category": "Category_023", + "Date": "2016/9/15", + "Order_Demand": "1 " + }, + "Product_0201": { + "Product_Code": "Product_0201", + "Warehouse": "Whse_A", + "Product_Category": "Category_007", + "Date": "2016/10/7", + "Order_Demand": "100 " + }, + "Product_0212": { + "Product_Code": "Product_0212", + "Warehouse": "Whse_A", + "Product_Category": "Category_007", + "Date": "2016/10/18", + "Order_Demand": "100 " + }, + "Product_0565": { + "Product_Code": "Product_0565", + "Warehouse": "Whse_A", + "Product_Category": "Category_015", + "Date": "2016/7/5", + "Order_Demand": "1 " + }, + "Product_0321": { + "Product_Code": "Product_0321", + "Warehouse": "Whse_S", + "Product_Category": "Category_024", + "Date": "2016/10/11", + "Order_Demand": "200 " + }, + "Product_1707": { + "Product_Code": "Product_1707", + "Warehouse": "Whse_A", + "Product_Category": "Category_026", + "Date": "2016/12/15", + "Order_Demand": "1 " + }, + "Product_0428": { + "Product_Code": "Product_0428", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/8/29", + "Order_Demand": "500 " + }, + "Product_2051": { + "Product_Code": "Product_2051", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/12/1", + "Order_Demand": "1 " + }, + "Product_0319": { + "Product_Code": "Product_0319", + "Warehouse": "Whse_A", + "Product_Category": "Category_017", + "Date": "2016/12/14", + "Order_Demand": "1 " + }, + "Product_2060": { + "Product_Code": "Product_2060", + "Warehouse": "Whse_A", + "Product_Category": "Category_018", + "Date": "2016/11/29", + "Order_Demand": "3 " + }, + "Product_1168": { + "Product_Code": "Product_1168", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/18", + "Order_Demand": "1 " + }, + "Product_0442": { + "Product_Code": "Product_0442", + "Warehouse": "Whse_A", + "Product_Category": "Category_015", + "Date": "2016/11/15", + "Order_Demand": "5 " + }, + "Product_0999": { + "Product_Code": "Product_0999", + "Warehouse": "Whse_A", + "Product_Category": "Category_028", + "Date": "2016/10/4", + "Order_Demand": "50 " + }, + "Product_1808": { + "Product_Code": "Product_1808", + "Warehouse": "Whse_A", + "Product_Category": "Category_028", + "Date": "2016/7/19", + "Order_Demand": "10 " + }, + "Product_0075": { + "Product_Code": "Product_0075", + "Warehouse": "Whse_A", + "Product_Category": "Category_028", + "Date": "2016/2/4", + "Order_Demand": "2 " + }, + "Product_0149": { + "Product_Code": "Product_0149", + "Warehouse": "Whse_A", + "Product_Category": "Category_008", + "Date": "2016/4/22", + "Order_Demand": "4 " + }, + "Product_0467": { + "Product_Code": "Product_0467", + "Warehouse": "Whse_A", + "Product_Category": "Category_013", + "Date": "2016/6/20", + "Order_Demand": "1 " + }, + "Product_0302": { + "Product_Code": "Product_0302", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/10/11", + "Order_Demand": "10 " + }, + "Product_0326": { + "Product_Code": "Product_0326", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/10/18", + "Order_Demand": "14 " + }, + "Product_1746": { + "Product_Code": "Product_1746", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/11/21", + "Order_Demand": "200 " + }, + "Product_1558": { + "Product_Code": "Product_1558", + "Warehouse": "Whse_C", + "Product_Category": "Category_019", + "Date": "2016/12/16", + "Order_Demand": "800 " + }, + "Product_1925": { + "Product_Code": "Product_1925", + "Warehouse": "Whse_C", + "Product_Category": "Category_001", + "Date": "2016/11/21", + "Order_Demand": "39 " + }, + "Product_1608": { + "Product_Code": "Product_1608", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/5", + "Order_Demand": "1000 " + }, + "Product_0366": { + "Product_Code": "Product_0366", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/28", + "Order_Demand": "50000 " + }, + "Product_1440": { + "Product_Code": "Product_1440", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/4", + "Order_Demand": "1000 " + }, + "Product_1983": { + "Product_Code": "Product_1983", + "Warehouse": "Whse_S", + "Product_Category": "Category_005", + "Date": "2016/11/10", + "Order_Demand": "2000 " + }, + "Product_1433": { + "Product_Code": "Product_1433", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/2/19", + "Order_Demand": "1000 " + }, + "Product_1902": { + "Product_Code": "Product_1902", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/12/1", + "Order_Demand": "5000 " + }, + "Product_1878": { + "Product_Code": "Product_1878", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/1/8", + "Order_Demand": "100 " + }, + "Product_0040": { + "Product_Code": "Product_0040", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/6/23", + "Order_Demand": "100 " + }, + "Product_1923": { + "Product_Code": "Product_1923", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/31", + "Order_Demand": "2 " + }, + "Product_1920": { + "Product_Code": "Product_1920", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/31", + "Order_Demand": "2 " + }, + "Product_0702": { + "Product_Code": "Product_0702", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/12", + "Order_Demand": "25 " + }, + "Product_0602": { + "Product_Code": "Product_0602", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/12", + "Order_Demand": "25 " + }, + "Product_0600": { + "Product_Code": "Product_0600", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/29", + "Order_Demand": "50 " + }, + "Product_0045": { + "Product_Code": "Product_0045", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/19", + "Order_Demand": "300 " + }, + "Product_1879": { + "Product_Code": "Product_1879", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/28", + "Order_Demand": "1500 " + }, + "Product_1880": { + "Product_Code": "Product_1880", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/21", + "Order_Demand": "100 " + }, + "Product_1436": { + "Product_Code": "Product_1436", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/25", + "Order_Demand": "3000 " + }, + "Product_1482": { + "Product_Code": "Product_1482", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/17", + "Order_Demand": "1000 " + }, + "Product_1187": { + "Product_Code": "Product_1187", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/26", + "Order_Demand": "50 " + }, + "Product_0081": { + "Product_Code": "Product_0081", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/12", + "Order_Demand": "100 " + }, + "Product_1638": { + "Product_Code": "Product_1638", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/21", + "Order_Demand": "50 " + }, + "Product_1415": { + "Product_Code": "Product_1415", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/20", + "Order_Demand": "300 " + }, + "Product_1277": { + "Product_Code": "Product_1277", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/29", + "Order_Demand": "100 " + }, + "Product_1428": { + "Product_Code": "Product_1428", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/15", + "Order_Demand": "500 " + }, + "Product_0901": { + "Product_Code": "Product_0901", + "Warehouse": "Whse_J", + "Product_Category": "Category_023", + "Date": "2016/10/7", + "Order_Demand": "50 " + }, + "Product_0983": { + "Product_Code": "Product_0983", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/12/21", + "Order_Demand": "200 " + }, + "Product_0377": { + "Product_Code": "Product_0377", + "Warehouse": "Whse_J", + "Product_Category": "Category_030", + "Date": "2016/12/2", + "Order_Demand": "100 " + }, + "Product_0380": { + "Product_Code": "Product_0380", + "Warehouse": "Whse_J", + "Product_Category": "Category_030", + "Date": "2016/11/21", + "Order_Demand": "100 " + }, + "Product_0386": { + "Product_Code": "Product_0386", + "Warehouse": "Whse_J", + "Product_Category": "Category_030", + "Date": "2016/10/28", + "Order_Demand": "1000 " + }, + "Product_0267": { + "Product_Code": "Product_0267", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/8/22", + "Order_Demand": "43 " + }, + "Product_0783": { + "Product_Code": "Product_0783", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/8/9", + "Order_Demand": "10 " + }, + "Product_1021": { + "Product_Code": "Product_1021", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/2/18", + "Order_Demand": "100 " + }, + "Product_1993": { + "Product_Code": "Product_1993", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/5/6", + "Order_Demand": "1900 " + }, + "Product_1038": { + "Product_Code": "Product_1038", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/12", + "Order_Demand": "100 " + }, + "Product_1041": { + "Product_Code": "Product_1041", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/11", + "Order_Demand": "100 " + }, + "Product_1426": { + "Product_Code": "Product_1426", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/14", + "Order_Demand": "100 " + }, + "Product_1252": { + "Product_Code": "Product_1252", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/19", + "Order_Demand": "100 " + }, + "Product_0860": { + "Product_Code": "Product_0860", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/14", + "Order_Demand": "20 " + }, + "Product_1035": { + "Product_Code": "Product_1035", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/12/27", + "Order_Demand": "250 " + }, + "Product_1028": { + "Product_Code": "Product_1028", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/11/21", + "Order_Demand": "1900 " + }, + "Product_0582": { + "Product_Code": "Product_0582", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/11/8", + "Order_Demand": "6 " + }, + "Product_0586": { + "Product_Code": "Product_0586", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/12/27", + "Order_Demand": "6 " + }, + "Product_1883": { + "Product_Code": "Product_1883", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/1/6", + "Order_Demand": "1 " + }, + "Product_1940": { + "Product_Code": "Product_1940", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/7", + "Order_Demand": "2 " + }, + "Product_1784": { + "Product_Code": "Product_1784", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/3/7", + "Order_Demand": "7500 " + }, + "Product_1678": { + "Product_Code": "Product_1678", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/2/23", + "Order_Demand": "3 " + }, + "Product_1682": { + "Product_Code": "Product_1682", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/2/17", + "Order_Demand": "10 " + }, + "Product_0815": { + "Product_Code": "Product_0815", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/14", + "Order_Demand": "1 " + }, + "Product_0818": { + "Product_Code": "Product_0818", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/31", + "Order_Demand": "2 " + }, + "Product_0954": { + "Product_Code": "Product_0954", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/12/2", + "Order_Demand": "1 " + }, + "Product_1029": { + "Product_Code": "Product_1029", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/2/9", + "Order_Demand": "200 " + }, + "Product_1205": { + "Product_Code": "Product_1205", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/11", + "Order_Demand": "200 " + }, + "Product_1141": { + "Product_Code": "Product_1141", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/2/2", + "Order_Demand": "125 " + }, + "Product_1142": { + "Product_Code": "Product_1142", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/7/14", + "Order_Demand": "50 " + }, + "Product_0004": { + "Product_Code": "Product_0004", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/28", + "Order_Demand": "100 " + }, + "Product_1473": { + "Product_Code": "Product_1473", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/20", + "Order_Demand": "300 " + }, + "Product_1687": { + "Product_Code": "Product_1687", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/2/2", + "Order_Demand": "1 " + }, + "Product_1562": { + "Product_Code": "Product_1562", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/7", + "Order_Demand": "500 " + }, + "Product_0450": { + "Product_Code": "Product_0450", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/10/28", + "Order_Demand": "14 " + }, + "Product_0816": { + "Product_Code": "Product_0816", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/12", + "Order_Demand": "1 " + }, + "Product_0624": { + "Product_Code": "Product_0624", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/24", + "Order_Demand": "1 " + }, + "Product_0260": { + "Product_Code": "Product_0260", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/9", + "Order_Demand": "1 " + }, + "Product_1769": { + "Product_Code": "Product_1769", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/15", + "Order_Demand": "2 " + }, + "Product_0673": { + "Product_Code": "Product_0673", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/20", + "Order_Demand": "2 " + }, + "Product_0490": { + "Product_Code": "Product_0490", + "Warehouse": "Whse_J", + "Product_Category": "Category_013", + "Date": "2016/12/2", + "Order_Demand": "10 " + }, + "Product_1679": { + "Product_Code": "Product_1679", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/4/26", + "Order_Demand": "3 " + }, + "Product_0270": { + "Product_Code": "Product_0270", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/4/18", + "Order_Demand": "1 " + }, + "Product_0262": { + "Product_Code": "Product_0262", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/7/25", + "Order_Demand": "2 " + }, + "Product_0015": { + "Product_Code": "Product_0015", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/2/22", + "Order_Demand": "1000 " + }, + "Product_1206": { + "Product_Code": "Product_1206", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/3", + "Order_Demand": "200 " + }, + "Product_1544": { + "Product_Code": "Product_1544", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/18", + "Order_Demand": "25 " + }, + "Product_1303": { + "Product_Code": "Product_1303", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/15", + "Order_Demand": "500 " + }, + "Product_1389": { + "Product_Code": "Product_1389", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/4", + "Order_Demand": "300 " + }, + "Product_0674": { + "Product_Code": "Product_0674", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/8/19", + "Order_Demand": "1 " + }, + "Product_1043": { + "Product_Code": "Product_1043", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/6/17", + "Order_Demand": "100 " + }, + "Product_1044": { + "Product_Code": "Product_1044", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/6/17", + "Order_Demand": "100 " + }, + "Product_1045": { + "Product_Code": "Product_1045", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/6/17", + "Order_Demand": "100 " + }, + "Product_1046": { + "Product_Code": "Product_1046", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/6/17", + "Order_Demand": "100 " + }, + "Product_0746": { + "Product_Code": "Product_0746", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/12", + "Order_Demand": "25 " + }, + "Product_0800": { + "Product_Code": "Product_0800", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/7/4", + "Order_Demand": "2 " + }, + "Product_0836": { + "Product_Code": "Product_0836", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/25", + "Order_Demand": "100 " + }, + "Product_1884": { + "Product_Code": "Product_1884", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/1/19", + "Order_Demand": "100 " + }, + "Product_0721": { + "Product_Code": "Product_0721", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/6", + "Order_Demand": "2 " + }, + "Product_1583": { + "Product_Code": "Product_1583", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/1/28", + "Order_Demand": "100 " + }, + "Product_1767": { + "Product_Code": "Product_1767", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/9", + "Order_Demand": "1 " + }, + "Product_1620": { + "Product_Code": "Product_1620", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/4/19", + "Order_Demand": "1 " + }, + "Product_1188": { + "Product_Code": "Product_1188", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/17", + "Order_Demand": "100 " + }, + "Product_1437": { + "Product_Code": "Product_1437", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/13", + "Order_Demand": "1000 " + }, + "Product_0690": { + "Product_Code": "Product_0690", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/2/24", + "Order_Demand": "10 " + }, + "Product_1033": { + "Product_Code": "Product_1033", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/7/21", + "Order_Demand": "100 " + }, + "Product_1877": { + "Product_Code": "Product_1877", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/9/14", + "Order_Demand": "6 " + }, + "Product_1949": { + "Product_Code": "Product_1949", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/4/13", + "Order_Demand": "1 " + }, + "Product_1855": { + "Product_Code": "Product_1855", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/4/1", + "Order_Demand": "1 " + }, + "Product_1866": { + "Product_Code": "Product_1866", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/7/1", + "Order_Demand": "2 " + }, + "Product_1982": { + "Product_Code": "Product_1982", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/5/23", + "Order_Demand": "500 " + }, + "Product_1551": { + "Product_Code": "Product_1551", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/4", + "Order_Demand": "1000 " + }, + "Product_0687": { + "Product_Code": "Product_0687", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/7/29", + "Order_Demand": "(230)" + }, + "Product_0797": { + "Product_Code": "Product_0797", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/29", + "Order_Demand": "1 " + }, + "Product_0693": { + "Product_Code": "Product_0693", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/12", + "Order_Demand": "(2)" + }, + "Product_0814": { + "Product_Code": "Product_0814", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/4", + "Order_Demand": "3 " + }, + "Product_0947": { + "Product_Code": "Product_0947", + "Warehouse": "Whse_J", + "Product_Category": "Category_018", + "Date": "2016/8/31", + "Order_Demand": "1 " + }, + "Product_1471": { + "Product_Code": "Product_1471", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/12", + "Order_Demand": "200 " + }, + "Product_1930": { + "Product_Code": "Product_1930", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/7", + "Order_Demand": "2 " + }, + "Product_0289": { + "Product_Code": "Product_0289", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/5/13", + "Order_Demand": "7 " + }, + "Product_0048": { + "Product_Code": "Product_0048", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/2/2", + "Order_Demand": "25 " + }, + "Product_1663": { + "Product_Code": "Product_1663", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/12/2", + "Order_Demand": "3 " + }, + "Product_1974": { + "Product_Code": "Product_1974", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/4/27", + "Order_Demand": "1 " + }, + "Product_1975": { + "Product_Code": "Product_1975", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/6/30", + "Order_Demand": "1 " + }, + "Product_1946": { + "Product_Code": "Product_1946", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/31", + "Order_Demand": "3 " + }, + "Product_0256": { + "Product_Code": "Product_0256", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/15", + "Order_Demand": "1 " + }, + "Product_1145": { + "Product_Code": "Product_1145", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/11/21", + "Order_Demand": "1 " + }, + "Product_1212": { + "Product_Code": "Product_1212", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/7", + "Order_Demand": "100 " + }, + "Product_1750": { + "Product_Code": "Product_1750", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/20", + "Order_Demand": "1 " + }, + "Product_1500": { + "Product_Code": "Product_1500", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/7", + "Order_Demand": "2450 " + }, + "Product_0867": { + "Product_Code": "Product_0867", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/4", + "Order_Demand": "3 " + }, + "Product_0737": { + "Product_Code": "Product_0737", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/16", + "Order_Demand": "5 " + }, + "Product_1230": { + "Product_Code": "Product_1230", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/5", + "Order_Demand": "200 " + }, + "Product_1796": { + "Product_Code": "Product_1796", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/1", + "Order_Demand": "100 " + }, + "Product_1761": { + "Product_Code": "Product_1761", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/26", + "Order_Demand": "1 " + }, + "Product_0953": { + "Product_Code": "Product_0953", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/20", + "Order_Demand": "100 " + }, + "Product_1688": { + "Product_Code": "Product_1688", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/12/1", + "Order_Demand": "1 " + }, + "Product_0476": { + "Product_Code": "Product_0476", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/6", + "Order_Demand": "3500 " + }, + "Product_1189": { + "Product_Code": "Product_1189", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/26", + "Order_Demand": "400 " + }, + "Product_1265": { + "Product_Code": "Product_1265", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/2", + "Order_Demand": "8000 " + }, + "Product_1640": { + "Product_Code": "Product_1640", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/5", + "Order_Demand": "700 " + }, + "Product_1176": { + "Product_Code": "Product_1176", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/12/7", + "Order_Demand": "20 " + }, + "Product_0056": { + "Product_Code": "Product_0056", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/7", + "Order_Demand": "200 " + }, + "Product_1203": { + "Product_Code": "Product_1203", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/29", + "Order_Demand": "300 " + }, + "Product_1961": { + "Product_Code": "Product_1961", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/31", + "Order_Demand": "2 " + }, + "Product_1543": { + "Product_Code": "Product_1543", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/9", + "Order_Demand": "1000 " + }, + "Product_1929": { + "Product_Code": "Product_1929", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/17", + "Order_Demand": "1 " + }, + "Product_1928": { + "Product_Code": "Product_1928", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/31", + "Order_Demand": "2 " + }, + "Product_1802": { + "Product_Code": "Product_1802", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/8/19", + "Order_Demand": "2 " + }, + "Product_0675": { + "Product_Code": "Product_0675", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/9/26", + "Order_Demand": "1 " + }, + "Product_1943": { + "Product_Code": "Product_1943", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/4/7", + "Order_Demand": "1 " + }, + "Product_0969": { + "Product_Code": "Product_0969", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/4/7", + "Order_Demand": "100 " + }, + "Product_1803": { + "Product_Code": "Product_1803", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/8/9", + "Order_Demand": "1 " + }, + "Product_0959": { + "Product_Code": "Product_0959", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/8/26", + "Order_Demand": "1 " + }, + "Product_0970": { + "Product_Code": "Product_0970", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/5/18", + "Order_Demand": "25 " + }, + "Product_0176": { + "Product_Code": "Product_0176", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/4/13", + "Order_Demand": "100 " + }, + "Product_0271": { + "Product_Code": "Product_0271", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/9/16", + "Order_Demand": "1 " + }, + "Product_1749": { + "Product_Code": "Product_1749", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/26", + "Order_Demand": "2 " + }, + "Product_1522": { + "Product_Code": "Product_1522", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/15", + "Order_Demand": "1000 " + }, + "Product_0861": { + "Product_Code": "Product_0861", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/20", + "Order_Demand": "3 " + }, + "Product_0686": { + "Product_Code": "Product_0686", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/7/29", + "Order_Demand": "(230)" + }, + "Product_1852": { + "Product_Code": "Product_1852", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/28", + "Order_Demand": "1 " + }, + "Product_1956": { + "Product_Code": "Product_1956", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/29", + "Order_Demand": "1 " + }, + "Product_0046": { + "Product_Code": "Product_0046", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/7", + "Order_Demand": "100 " + }, + "Product_1491": { + "Product_Code": "Product_1491", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/4", + "Order_Demand": "100 " + }, + "Product_0697": { + "Product_Code": "Product_0697", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/8", + "Order_Demand": "25 " + }, + "Product_0743": { + "Product_Code": "Product_0743", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/9", + "Order_Demand": "100 " + }, + "Product_0994": { + "Product_Code": "Product_0994", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/9/26", + "Order_Demand": "750 " + }, + "Product_1771": { + "Product_Code": "Product_1771", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/8", + "Order_Demand": "1 " + }, + "Product_1753": { + "Product_Code": "Product_1753", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/8", + "Order_Demand": "1 " + }, + "Product_0683": { + "Product_Code": "Product_0683", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/1", + "Order_Demand": "10 " + }, + "Product_1012": { + "Product_Code": "Product_1012", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/1/8", + "Order_Demand": "1000 " + }, + "Product_0777": { + "Product_Code": "Product_0777", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/7", + "Order_Demand": "6 " + }, + "Product_1091": { + "Product_Code": "Product_1091", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/5/11", + "Order_Demand": "10 " + }, + "Product_1781": { + "Product_Code": "Product_1781", + "Warehouse": "Whse_J", + "Product_Category": "Category_018", + "Date": "2016/2/16", + "Order_Demand": "2 " + }, + "Product_1783": { + "Product_Code": "Product_1783", + "Warehouse": "Whse_J", + "Product_Category": "Category_018", + "Date": "2016/2/22", + "Order_Demand": "3 " + }, + "Product_1683": { + "Product_Code": "Product_1683", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/2/2", + "Order_Demand": "1 " + }, + "Product_0429": { + "Product_Code": "Product_0429", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/10", + "Order_Demand": "400 " + }, + "Product_0862": { + "Product_Code": "Product_0862", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/18", + "Order_Demand": "2 " + }, + "Product_1484": { + "Product_Code": "Product_1484", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/27", + "Order_Demand": "1000 " + }, + "Product_1633": { + "Product_Code": "Product_1633", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/13", + "Order_Demand": "2000 " + }, + "Product_1498": { + "Product_Code": "Product_1498", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/11", + "Order_Demand": "100 " + }, + "Product_1704": { + "Product_Code": "Product_1704", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/10/14", + "Order_Demand": "5 " + }, + "Product_1413": { + "Product_Code": "Product_1413", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/8", + "Order_Demand": "500 " + }, + "Product_1497": { + "Product_Code": "Product_1497", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/8", + "Order_Demand": "50 " + }, + "Product_0736": { + "Product_Code": "Product_0736", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/22", + "Order_Demand": "5 " + }, + "Product_1789": { + "Product_Code": "Product_1789", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/9/12", + "Order_Demand": "2500 " + }, + "Product_1820": { + "Product_Code": "Product_1820", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/8/18", + "Order_Demand": "2500 " + }, + "Product_0269": { + "Product_Code": "Product_0269", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/19", + "Order_Demand": "3 " + }, + "Product_1197": { + "Product_Code": "Product_1197", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/21", + "Order_Demand": "300 " + }, + "Product_0540": { + "Product_Code": "Product_0540", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/4/18", + "Order_Demand": "2 " + }, + "Product_0307": { + "Product_Code": "Product_0307", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/8/23", + "Order_Demand": "4 " + }, + "Product_2104": { + "Product_Code": "Product_2104", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/9/20", + "Order_Demand": "1 " + }, + "Product_2106": { + "Product_Code": "Product_2106", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/10/19", + "Order_Demand": "4 " + }, + "Product_0163": { + "Product_Code": "Product_0163", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/12/27", + "Order_Demand": "10 " + }, + "Product_0165": { + "Product_Code": "Product_0165", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/10/31", + "Order_Demand": "15 " + }, + "Product_1951": { + "Product_Code": "Product_1951", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/4/13", + "Order_Demand": "1 " + }, + "Product_1115": { + "Product_Code": "Product_1115", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/9/28", + "Order_Demand": "20 " + }, + "Product_0105": { + "Product_Code": "Product_0105", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/6/6", + "Order_Demand": "60 " + }, + "Product_0583": { + "Product_Code": "Product_0583", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/12/2", + "Order_Demand": "30 " + }, + "Product_0596": { + "Product_Code": "Product_0596", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/12/20", + "Order_Demand": "24 " + }, + "Product_0058": { + "Product_Code": "Product_0058", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/26", + "Order_Demand": "0 " + }, + "Product_0057": { + "Product_Code": "Product_0057", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/11", + "Order_Demand": "1 " + }, + "Product_0060": { + "Product_Code": "Product_0060", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/2/29", + "Order_Demand": "(1)" + }, + "Product_0059": { + "Product_Code": "Product_0059", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/14", + "Order_Demand": "1 " + }, + "Product_0341": { + "Product_Code": "Product_0341", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/2/5", + "Order_Demand": "1 " + }, + "Product_0167": { + "Product_Code": "Product_0167", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/6/10", + "Order_Demand": "10 " + }, + "Product_1408": { + "Product_Code": "Product_1408", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/22", + "Order_Demand": "1000 " + }, + "Product_2031": { + "Product_Code": "Product_2031", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/27", + "Order_Demand": "200 " + }, + "Product_0688": { + "Product_Code": "Product_0688", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/7/29", + "Order_Demand": "(270)" + }, + "Product_0706": { + "Product_Code": "Product_0706", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/2", + "Order_Demand": "25 " + }, + "Product_0696": { + "Product_Code": "Product_0696", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/2", + "Order_Demand": "25 " + }, + "Product_0699": { + "Product_Code": "Product_0699", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/4/11", + "Order_Demand": "25 " + }, + "Product_1856": { + "Product_Code": "Product_1856", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/28", + "Order_Demand": "1 " + }, + "Product_0266": { + "Product_Code": "Product_0266", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/4/27", + "Order_Demand": "1 " + }, + "Product_0750": { + "Product_Code": "Product_0750", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/17", + "Order_Demand": "25 " + }, + "Product_0258": { + "Product_Code": "Product_0258", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/11", + "Order_Demand": "1 " + }, + "Product_1156": { + "Product_Code": "Product_1156", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/7/14", + "Order_Demand": "5000 " + }, + "Product_1207": { + "Product_Code": "Product_1207", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/21", + "Order_Demand": "50 " + }, + "Product_1665": { + "Product_Code": "Product_1665", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/9/13", + "Order_Demand": "(1)" + }, + "Product_0866": { + "Product_Code": "Product_0866", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/25", + "Order_Demand": "1 " + }, + "Product_1764": { + "Product_Code": "Product_1764", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/22", + "Order_Demand": "1 " + }, + "Product_1962": { + "Product_Code": "Product_1962", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/31", + "Order_Demand": "3 " + }, + "Product_0988": { + "Product_Code": "Product_0988", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/8/3", + "Order_Demand": "50 " + }, + "Product_1490": { + "Product_Code": "Product_1490", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/25", + "Order_Demand": "700 " + }, + "Product_1662": { + "Product_Code": "Product_1662", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/3/10", + "Order_Demand": "3 " + }, + "Product_1664": { + "Product_Code": "Product_1664", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/6/17", + "Order_Demand": "21 " + }, + "Product_1036": { + "Product_Code": "Product_1036", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/27", + "Order_Demand": "200 " + }, + "Product_1283": { + "Product_Code": "Product_1283", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/14", + "Order_Demand": "300 " + }, + "Product_1565": { + "Product_Code": "Product_1565", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/28", + "Order_Demand": "300 " + }, + "Product_1559": { + "Product_Code": "Product_1559", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/25", + "Order_Demand": "50 " + }, + "Product_0042": { + "Product_Code": "Product_0042", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/11/22", + "Order_Demand": "100 " + }, + "Product_1537": { + "Product_Code": "Product_1537", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/11", + "Order_Demand": "1000 " + }, + "Product_0152": { + "Product_Code": "Product_0152", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/10/17", + "Order_Demand": "20 " + }, + "Product_1547": { + "Product_Code": "Product_1547", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/12", + "Order_Demand": "500 " + }, + "Product_0500": { + "Product_Code": "Product_0500", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/12/16", + "Order_Demand": "3 " + }, + "Product_2152": { + "Product_Code": "Product_2152", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/7/26", + "Order_Demand": "5 " + }, + "Product_0473": { + "Product_Code": "Product_0473", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/12/1", + "Order_Demand": "3 " + }, + "Product_1897": { + "Product_Code": "Product_1897", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/11/4", + "Order_Demand": "30 " + }, + "Product_1774": { + "Product_Code": "Product_1774", + "Warehouse": "Whse_S", + "Product_Category": "Category_024", + "Date": "2016/8/26", + "Order_Demand": "20 " + }, + "Product_0939": { + "Product_Code": "Product_0939", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/8/30", + "Order_Demand": "200 " + }, + "Product_0052": { + "Product_Code": "Product_0052", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/9/1", + "Order_Demand": "50 " + }, + "Product_0479": { + "Product_Code": "Product_0479", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/21", + "Order_Demand": "500 " + }, + "Product_1037": { + "Product_Code": "Product_1037", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/5/13", + "Order_Demand": "200 " + }, + "Product_1040": { + "Product_Code": "Product_1040", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/12", + "Order_Demand": "200 " + }, + "Product_0468": { + "Product_Code": "Product_0468", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/19", + "Order_Demand": "100 " + }, + "Product_1042": { + "Product_Code": "Product_1042", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/11", + "Order_Demand": "400 " + }, + "Product_0053": { + "Product_Code": "Product_0053", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/20", + "Order_Demand": "2000 " + }, + "Product_0493": { + "Product_Code": "Product_0493", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/3/11", + "Order_Demand": "8 " + }, + "Product_1768": { + "Product_Code": "Product_1768", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/29", + "Order_Demand": "1 " + }, + "Product_1862": { + "Product_Code": "Product_1862", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/4/1", + "Order_Demand": "1 " + }, + "Product_1685": { + "Product_Code": "Product_1685", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/3/18", + "Order_Demand": "1 " + }, + "Product_0830": { + "Product_Code": "Product_0830", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/1", + "Order_Demand": "200 " + }, + "Product_0313": { + "Product_Code": "Product_0313", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/7/28", + "Order_Demand": "24 " + }, + "Product_0457": { + "Product_Code": "Product_0457", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/11/18", + "Order_Demand": "4 " + }, + "Product_1120": { + "Product_Code": "Product_1120", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/16", + "Order_Demand": "6 " + }, + "Product_0198": { + "Product_Code": "Product_0198", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/5/9", + "Order_Demand": "288 " + }, + "Product_0085": { + "Product_Code": "Product_0085", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/1", + "Order_Demand": "2000 " + }, + "Product_1885": { + "Product_Code": "Product_1885", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/11", + "Order_Demand": "100 " + }, + "Product_1829": { + "Product_Code": "Product_1829", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/1/6", + "Order_Demand": "2500 " + }, + "Product_0900": { + "Product_Code": "Product_0900", + "Warehouse": "Whse_J", + "Product_Category": "Category_023", + "Date": "2016/9/20", + "Order_Demand": "50 " + }, + "Product_0257": { + "Product_Code": "Product_0257", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/14", + "Order_Demand": "3 " + }, + "Product_1893": { + "Product_Code": "Product_1893", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/10/12", + "Order_Demand": "14 " + }, + "Product_0331": { + "Product_Code": "Product_0331", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/7/26", + "Order_Demand": "5 " + }, + "Product_1939": { + "Product_Code": "Product_1939", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/6", + "Order_Demand": "4 " + }, + "Product_0252": { + "Product_Code": "Product_0252", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/8/29", + "Order_Demand": "5 " + }, + "Product_1692": { + "Product_Code": "Product_1692", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/4/1", + "Order_Demand": "5 " + }, + "Product_0336": { + "Product_Code": "Product_0336", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/10/12", + "Order_Demand": "1 " + }, + "Product_1572": { + "Product_Code": "Product_1572", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/17", + "Order_Demand": "1500 " + }, + "Product_0278": { + "Product_Code": "Product_0278", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/7/6", + "Order_Demand": "40 " + }, + "Product_0259": { + "Product_Code": "Product_0259", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/7/12", + "Order_Demand": "1 " + }, + "Product_1840": { + "Product_Code": "Product_1840", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/1/13", + "Order_Demand": "500 " + }, + "Product_1894": { + "Product_Code": "Product_1894", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/4/26", + "Order_Demand": "8 " + }, + "Product_0334": { + "Product_Code": "Product_0334", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/10/27", + "Order_Demand": "1 " + }, + "Product_0603": { + "Product_Code": "Product_0603", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/26", + "Order_Demand": "100 " + }, + "Product_0339": { + "Product_Code": "Product_0339", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/10/18", + "Order_Demand": "3 " + }, + "Product_1233": { + "Product_Code": "Product_1233", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/23", + "Order_Demand": "1000 " + }, + "Product_0298": { + "Product_Code": "Product_0298", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/10/12", + "Order_Demand": "3 " + }, + "Product_0402": { + "Product_Code": "Product_0402", + "Warehouse": "Whse_J", + "Product_Category": "Category_024", + "Date": "2016/7/12", + "Order_Demand": "16 " + }, + "Product_1827": { + "Product_Code": "Product_1827", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/10/28", + "Order_Demand": "2500 " + }, + "Product_0907": { + "Product_Code": "Product_0907", + "Warehouse": "Whse_J", + "Product_Category": "Category_023", + "Date": "2016/7/26", + "Order_Demand": "50 " + }, + "Product_1553": { + "Product_Code": "Product_1553", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "NA", + "Order_Demand": "(50)" + }, + "Product_1384": { + "Product_Code": "Product_1384", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/12/30", + "Order_Demand": "1300 " + }, + "Product_0091": { + "Product_Code": "Product_0091", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/8/31", + "Order_Demand": "650 " + }, + "Product_1291": { + "Product_Code": "Product_1291", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/10/10", + "Order_Demand": "0 " + }, + "Product_1445": { + "Product_Code": "Product_1445", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/7/1", + "Order_Demand": "1000 " + }, + "Product_0825": { + "Product_Code": "Product_0825", + "Warehouse": "Whse_A", + "Product_Category": "Category_024", + "Date": "2016/10/20", + "Order_Demand": "5 " + }, + "Product_1448": { + "Product_Code": "Product_1448", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/5/9", + "Order_Demand": "0 " + }, + "Product_1584": { + "Product_Code": "Product_1584", + "Warehouse": "Whse_A", + "Product_Category": "Category_031", + "Date": "2016/9/8", + "Order_Demand": "5 " + }, + "Product_1706": { + "Product_Code": "Product_1706", + "Warehouse": "Whse_A", + "Product_Category": "Category_026", + "Date": "2016/11/24", + "Order_Demand": "10 " + }, + "Product_1563": { + "Product_Code": "Product_1563", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/11/17", + "Order_Demand": "300 " + }, + "Product_0121": { + "Product_Code": "Product_0121", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/9/23", + "Order_Demand": "30 " + }, + "Product_1441": { + "Product_Code": "Product_1441", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/8/29", + "Order_Demand": "0 " + }, + "Product_1442": { + "Product_Code": "Product_1442", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/8/29", + "Order_Demand": "0 " + }, + "Product_0637": { + "Product_Code": "Product_0637", + "Warehouse": "Whse_A", + "Product_Category": "Category_007", + "Date": "2016/10/18", + "Order_Demand": "1 " + }, + "Product_1434": { + "Product_Code": "Product_1434", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/11/8", + "Order_Demand": "0 " + }, + "Product_0169": { + "Product_Code": "Product_0169", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/5/26", + "Order_Demand": "20 " + }, + "Product_0365": { + "Product_Code": "Product_0365", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/8/15", + "Order_Demand": "1 " + }, + "Product_1585": { + "Product_Code": "Product_1585", + "Warehouse": "Whse_A", + "Product_Category": "Category_031", + "Date": "2016/9/8", + "Order_Demand": "2 " + }, + "Product_0945": { + "Product_Code": "Product_0945", + "Warehouse": "Whse_S", + "Product_Category": "Category_018", + "Date": "2016/6/30", + "Order_Demand": "2 " + }, + "Product_1444": { + "Product_Code": "Product_1444", + "Warehouse": "Whse_A", + "Product_Category": "Category_019", + "Date": "2016/10/19", + "Order_Demand": "0 " + }, + "Product_0272": { + "Product_Code": "Product_0272", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/9/15", + "Order_Demand": "40 " + }, + "Product_0650": { + "Product_Code": "Product_0650", + "Warehouse": "Whse_A", + "Product_Category": "Category_022", + "Date": "2016/6/9", + "Order_Demand": "36 " + }, + "Product_2119": { + "Product_Code": "Product_2119", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/7/14", + "Order_Demand": "20 " + }, + "Product_2059": { + "Product_Code": "Product_2059", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/11/3", + "Order_Demand": "40 " + }, + "Product_1848": { + "Product_Code": "Product_1848", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/4/11", + "Order_Demand": "1000 " + }, + "Product_0646": { + "Product_Code": "Product_0646", + "Warehouse": "Whse_A", + "Product_Category": "Category_022", + "Date": "2016/11/24", + "Order_Demand": "24 " + }, + "Product_1689": { + "Product_Code": "Product_1689", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/3/7", + "Order_Demand": "1 " + }, + "Product_2058": { + "Product_Code": "Product_2058", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/11/18", + "Order_Demand": "30 " + }, + "Product_2072": { + "Product_Code": "Product_2072", + "Warehouse": "Whse_S", + "Product_Category": "Category_009", + "Date": "2016/5/9", + "Order_Demand": "150 " + }, + "Product_2076": { + "Product_Code": "Product_2076", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/11/25", + "Order_Demand": "10 " + }, + "Product_2082": { + "Product_Code": "Product_2082", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/10/25", + "Order_Demand": "15 " + }, + "Product_0436": { + "Product_Code": "Product_0436", + "Warehouse": "Whse_A", + "Product_Category": "Category_013", + "Date": "2016/5/20", + "Order_Demand": "(200)" + }, + "Product_0484": { + "Product_Code": "Product_0484", + "Warehouse": "Whse_A", + "Product_Category": "Category_013", + "Date": "2016/9/12", + "Order_Demand": "100 " + }, + "Product_1698": { + "Product_Code": "Product_1698", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2016/8/29", + "Order_Demand": "1 " + }, + "Product_0638": { + "Product_Code": "Product_0638", + "Warehouse": "Whse_A", + "Product_Category": "Category_007", + "Date": "2016/5/16", + "Order_Demand": "1 " + }, + "Product_1568": { + "Product_Code": "Product_1568", + "Warehouse": "Whse_C", + "Product_Category": "Category_019", + "Date": "2016/12/8", + "Order_Demand": "1000 " + }, + "Product_0897": { + "Product_Code": "Product_0897", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/12/1", + "Order_Demand": "200 " + }, + "Product_1589": { + "Product_Code": "Product_1589", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/9/7", + "Order_Demand": "500 " + }, + "Product_0391": { + "Product_Code": "Product_0391", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/13", + "Order_Demand": "2000 " + }, + "Product_0106": { + "Product_Code": "Product_0106", + "Warehouse": "Whse_S", + "Product_Category": "Category_032", + "Date": "2016/1/14", + "Order_Demand": "60 " + }, + "Product_0508": { + "Product_Code": "Product_0508", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/1/18", + "Order_Demand": "1 " + }, + "Product_1607": { + "Product_Code": "Product_1607", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/10/31", + "Order_Demand": "1000 " + }, + "Product_1604": { + "Product_Code": "Product_1604", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/11/22", + "Order_Demand": "1000 " + }, + "Product_1603": { + "Product_Code": "Product_1603", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/10/10", + "Order_Demand": "500 " + }, + "Product_1605": { + "Product_Code": "Product_1605", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/19", + "Order_Demand": "500 " + }, + "Product_0551": { + "Product_Code": "Product_0551", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/11/24", + "Order_Demand": "5000 " + }, + "Product_0381": { + "Product_Code": "Product_0381", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/27", + "Order_Demand": "2000 " + }, + "Product_1130": { + "Product_Code": "Product_1130", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/2/19", + "Order_Demand": "800 " + }, + "Product_0166": { + "Product_Code": "Product_0166", + "Warehouse": "Whse_S", + "Product_Category": "Category_021", + "Date": "2016/11/28", + "Order_Demand": "150 " + }, + "Product_1179": { + "Product_Code": "Product_1179", + "Warehouse": "Whse_S", + "Product_Category": "Category_024", + "Date": "2016/1/12", + "Order_Demand": "2 " + }, + "Product_1811": { + "Product_Code": "Product_1811", + "Warehouse": "Whse_S", + "Product_Category": "Category_006", + "Date": "2016/11/14", + "Order_Demand": "10000 " + }, + "Product_1747": { + "Product_Code": "Product_1747", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/15", + "Order_Demand": "3000 " + }, + "Product_0404": { + "Product_Code": "Product_0404", + "Warehouse": "Whse_S", + "Product_Category": "Category_001", + "Date": "2016/9/30", + "Order_Demand": "50 " + }, + "Product_0592": { + "Product_Code": "Product_0592", + "Warehouse": "Whse_S", + "Product_Category": "Category_032", + "Date": "2016/8/11", + "Order_Demand": "6 " + }, + "Product_1024": { + "Product_Code": "Product_1024", + "Warehouse": "Whse_J", + "Product_Category": "Category_008", + "Date": "2016/3/4", + "Order_Demand": "5 " + }, + "Product_0827": { + "Product_Code": "Product_0827", + "Warehouse": "Whse_J", + "Product_Category": "Category_008", + "Date": "2016/3/4", + "Order_Demand": "5 " + }, + "Product_0804": { + "Product_Code": "Product_0804", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/25", + "Order_Demand": "5 " + }, + "Product_0787": { + "Product_Code": "Product_0787", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/26", + "Order_Demand": "25 " + }, + "Product_1214": { + "Product_Code": "Product_1214", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/15", + "Order_Demand": "6000 " + }, + "Product_1311": { + "Product_Code": "Product_1311", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/1", + "Order_Demand": "100 " + }, + "Product_0370": { + "Product_Code": "Product_0370", + "Warehouse": "Whse_J", + "Product_Category": "Category_030", + "Date": "2016/3/24", + "Order_Demand": "100 " + }, + "Product_0383": { + "Product_Code": "Product_0383", + "Warehouse": "Whse_J", + "Product_Category": "Category_030", + "Date": "2016/10/13", + "Order_Demand": "100 " + }, + "Product_0766": { + "Product_Code": "Product_0766", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/4/1", + "Order_Demand": "2 " + }, + "Product_0160": { + "Product_Code": "Product_0160", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/3/1", + "Order_Demand": "25 " + }, + "Product_0175": { + "Product_Code": "Product_0175", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/8/24", + "Order_Demand": "100 " + }, + "Product_2033": { + "Product_Code": "Product_2033", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/11/30", + "Order_Demand": "0 " + }, + "Product_0373": { + "Product_Code": "Product_0373", + "Warehouse": "Whse_J", + "Product_Category": "Category_030", + "Date": "2016/5/6", + "Order_Demand": "100 " + }, + "Product_1927": { + "Product_Code": "Product_1927", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/31", + "Order_Demand": "2 " + }, + "Product_0651": { + "Product_Code": "Product_0651", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/2", + "Order_Demand": "5 " + }, + "Product_0156": { + "Product_Code": "Product_0156", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/9/30", + "Order_Demand": "1 " + }, + "Product_0865": { + "Product_Code": "Product_0865", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/24", + "Order_Demand": "2 " + }, + "Product_0447": { + "Product_Code": "Product_0447", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/8/31", + "Order_Demand": "1 " + }, + "Product_0581": { + "Product_Code": "Product_0581", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/11/25", + "Order_Demand": "60 " + }, + "Product_1950": { + "Product_Code": "Product_1950", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/4/20", + "Order_Demand": "1 " + }, + "Product_1695": { + "Product_Code": "Product_1695", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/9/30", + "Order_Demand": "2 " + }, + "Product_1919": { + "Product_Code": "Product_1919", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/31", + "Order_Demand": "2 " + }, + "Product_1955": { + "Product_Code": "Product_1955", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/31", + "Order_Demand": "2 " + }, + "Product_0393": { + "Product_Code": "Product_0393", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/8/19", + "Order_Demand": "1 " + }, + "Product_1945": { + "Product_Code": "Product_1945", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/17", + "Order_Demand": "1 " + }, + "Product_1882": { + "Product_Code": "Product_1882", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/7/14", + "Order_Demand": "2 " + }, + "Product_1681": { + "Product_Code": "Product_1681", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/10/31", + "Order_Demand": "5 " + }, + "Product_1684": { + "Product_Code": "Product_1684", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/8/9", + "Order_Demand": "2 " + }, + "Product_1708": { + "Product_Code": "Product_1708", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/11/18", + "Order_Demand": "18 " + }, + "Product_1709": { + "Product_Code": "Product_1709", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/11/25", + "Order_Demand": "13 " + }, + "Product_1867": { + "Product_Code": "Product_1867", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/29", + "Order_Demand": "1 " + }, + "Product_2036": { + "Product_Code": "Product_2036", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/10/4", + "Order_Demand": "10000 " + }, + "Product_1625": { + "Product_Code": "Product_1625", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/28", + "Order_Demand": "1500 " + }, + "Product_1096": { + "Product_Code": "Product_1096", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/5/11", + "Order_Demand": "10 " + }, + "Product_1099": { + "Product_Code": "Product_1099", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/11/25", + "Order_Demand": "4 " + }, + "Product_1100": { + "Product_Code": "Product_1100", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/8/19", + "Order_Demand": "2 " + }, + "Product_0662": { + "Product_Code": "Product_0662", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/11/24", + "Order_Demand": "90 " + }, + "Product_0678": { + "Product_Code": "Product_0678", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/4/8", + "Order_Demand": "200 " + }, + "Product_1697": { + "Product_Code": "Product_1697", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/8/16", + "Order_Demand": "1 " + }, + "Product_0808": { + "Product_Code": "Product_0808", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/2", + "Order_Demand": "25 " + }, + "Product_0698": { + "Product_Code": "Product_0698", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/19", + "Order_Demand": "25 " + }, + "Product_0475": { + "Product_Code": "Product_0475", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/21", + "Order_Demand": "400 " + }, + "Product_0006": { + "Product_Code": "Product_0006", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/6/2", + "Order_Demand": "200 " + }, + "Product_1569": { + "Product_Code": "Product_1569", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/22", + "Order_Demand": "300 " + }, + "Product_1504": { + "Product_Code": "Product_1504", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/9", + "Order_Demand": "250 " + }, + "Product_1516": { + "Product_Code": "Product_1516", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/2", + "Order_Demand": "200 " + }, + "Product_0389": { + "Product_Code": "Product_0389", + "Warehouse": "Whse_J", + "Product_Category": "Category_030", + "Date": "2016/4/15", + "Order_Demand": "50 " + }, + "Product_0378": { + "Product_Code": "Product_0378", + "Warehouse": "Whse_J", + "Product_Category": "Category_030", + "Date": "2016/3/10", + "Order_Demand": "200 " + }, + "Product_0584": { + "Product_Code": "Product_0584", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/1/5", + "Order_Demand": "72 " + }, + "Product_1169": { + "Product_Code": "Product_1169", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/2/3", + "Order_Demand": "2 " + }, + "Product_0177": { + "Product_Code": "Product_0177", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/9/20", + "Order_Demand": "400 " + }, + "Product_1830": { + "Product_Code": "Product_1830", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/8/10", + "Order_Demand": "1000 " + }, + "Product_1390": { + "Product_Code": "Product_1390", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/1/29", + "Order_Demand": "200 " + }, + "Product_1462": { + "Product_Code": "Product_1462", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/6", + "Order_Demand": "(1000)" + }, + "Product_1411": { + "Product_Code": "Product_1411", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/15", + "Order_Demand": "500 " + }, + "Product_0594": { + "Product_Code": "Product_0594", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/10/6", + "Order_Demand": "60 " + }, + "Product_0327": { + "Product_Code": "Product_0327", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/10/7", + "Order_Demand": "2 " + }, + "Product_0488": { + "Product_Code": "Product_0488", + "Warehouse": "Whse_J", + "Product_Category": "Category_013", + "Date": "2016/12/7", + "Order_Demand": "10 " + }, + "Product_1756": { + "Product_Code": "Product_1756", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/28", + "Order_Demand": "2 " + }, + "Product_1694": { + "Product_Code": "Product_1694", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/11/9", + "Order_Demand": "3 " + }, + "Product_0590": { + "Product_Code": "Product_0590", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/5/2", + "Order_Demand": "60 " + }, + "Product_0255": { + "Product_Code": "Product_0255", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/9/8", + "Order_Demand": "48 " + }, + "Product_0663": { + "Product_Code": "Product_0663", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/7", + "Order_Demand": "50 " + }, + "Product_2012": { + "Product_Code": "Product_2012", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/5/20", + "Order_Demand": "1000 " + }, + "Product_0972": { + "Product_Code": "Product_0972", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/12/13", + "Order_Demand": "0 " + }, + "Product_2172": { + "Product_Code": "Product_2172", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/6/27", + "Order_Demand": "200 " + }, + "Product_0449": { + "Product_Code": "Product_0449", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/3/14", + "Order_Demand": "1 " + }, + "Product_1779": { + "Product_Code": "Product_1779", + "Warehouse": "Whse_J", + "Product_Category": "Category_010", + "Date": "2016/11/25", + "Order_Demand": "3 " + }, + "Product_0903": { + "Product_Code": "Product_0903", + "Warehouse": "Whse_J", + "Product_Category": "Category_023", + "Date": "2016/9/8", + "Order_Demand": "300 " + }, + "Product_2030": { + "Product_Code": "Product_2030", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/4", + "Order_Demand": "100 " + }, + "Product_0992": { + "Product_Code": "Product_0992", + "Warehouse": "Whse_J", + "Product_Category": "Category_028", + "Date": "2016/8/9", + "Order_Demand": "150 " + }, + "Product_0254": { + "Product_Code": "Product_0254", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/14", + "Order_Demand": "96 " + }, + "Product_0597": { + "Product_Code": "Product_0597", + "Warehouse": "Whse_J", + "Product_Category": "Category_017", + "Date": "2016/8/26", + "Order_Demand": "1 " + }, + "Product_1717": { + "Product_Code": "Product_1717", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/9/8", + "Order_Demand": "44 " + }, + "Product_1650": { + "Product_Code": "Product_1650", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/16", + "Order_Demand": "500 " + }, + "Product_0717": { + "Product_Code": "Product_0717", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/13", + "Order_Demand": "20 " + }, + "Product_1220": { + "Product_Code": "Product_1220", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/12/6", + "Order_Demand": "20000 " + }, + "Product_0751": { + "Product_Code": "Product_0751", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/8", + "Order_Demand": "5 " + }, + "Product_0753": { + "Product_Code": "Product_0753", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/6/16", + "Order_Demand": "5 " + }, + "Product_1924": { + "Product_Code": "Product_1924", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/31", + "Order_Demand": "2 " + }, + "Product_1944": { + "Product_Code": "Product_1944", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2015/12/24", + "Order_Demand": "1 " + }, + "Product_1953": { + "Product_Code": "Product_1953", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/22", + "Order_Demand": "1 " + }, + "Product_1965": { + "Product_Code": "Product_1965", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/13", + "Order_Demand": "1 " + }, + "Product_0005": { + "Product_Code": "Product_0005", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/10/20", + "Order_Demand": "100 " + }, + "Product_1990": { + "Product_Code": "Product_1990", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/5/31", + "Order_Demand": "1000 " + }, + "Product_2026": { + "Product_Code": "Product_2026", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/8/17", + "Order_Demand": "100 " + }, + "Product_0864": { + "Product_Code": "Product_0864", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/14", + "Order_Demand": "2 " + }, + "Product_1386": { + "Product_Code": "Product_1386", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/19", + "Order_Demand": "250 " + }, + "Product_1561": { + "Product_Code": "Product_1561", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/1", + "Order_Demand": "100 " + }, + "Product_2034": { + "Product_Code": "Product_2034", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/11/21", + "Order_Demand": "20000 " + }, + "Product_1487": { + "Product_Code": "Product_1487", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/26", + "Order_Demand": "1000 " + }, + "Product_2049": { + "Product_Code": "Product_2049", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/9/21", + "Order_Demand": "10 " + }, + "Product_1729": { + "Product_Code": "Product_1729", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/17", + "Order_Demand": "100 " + }, + "Product_1136": { + "Product_Code": "Product_1136", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/2/2", + "Order_Demand": "125 " + }, + "Product_1711": { + "Product_Code": "Product_1711", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/6/22", + "Order_Demand": "2 " + }, + "Product_1267": { + "Product_Code": "Product_1267", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/7/8", + "Order_Demand": "9000 " + }, + "Product_1854": { + "Product_Code": "Product_1854", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/24", + "Order_Demand": "1 " + }, + "Product_0752": { + "Product_Code": "Product_0752", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/11/22", + "Order_Demand": "5 " + }, + "Product_1838": { + "Product_Code": "Product_1838", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/9/21", + "Order_Demand": "5000 " + }, + "Product_0835": { + "Product_Code": "Product_0835", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/7", + "Order_Demand": "100 " + }, + "Product_1732": { + "Product_Code": "Product_1732", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/3/4", + "Order_Demand": "1000 " + }, + "Product_1191": { + "Product_Code": "Product_1191", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/4/7", + "Order_Demand": "1500 " + }, + "Product_0838": { + "Product_Code": "Product_0838", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/24", + "Order_Demand": "300 " + }, + "Product_0088": { + "Product_Code": "Product_0088", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/3/11", + "Order_Demand": "1300 " + }, + "Product_0041": { + "Product_Code": "Product_0041", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/6/29", + "Order_Demand": "100 " + }, + "Product_1614": { + "Product_Code": "Product_1614", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/11/11", + "Order_Demand": "10 " + }, + "Product_0598": { + "Product_Code": "Product_0598", + "Warehouse": "Whse_J", + "Product_Category": "Category_017", + "Date": "2016/3/7", + "Order_Demand": "1 " + }, + "Product_1691": { + "Product_Code": "Product_1691", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/11/9", + "Order_Demand": "2 " + }, + "Product_0692": { + "Product_Code": "Product_0692", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/21", + "Order_Demand": "10 " + }, + "Product_2018": { + "Product_Code": "Product_2018", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/4/21", + "Order_Demand": "100 " + }, + "Product_1192": { + "Product_Code": "Product_1192", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/30", + "Order_Demand": "(100)" + }, + "Product_0585": { + "Product_Code": "Product_0585", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/12/14", + "Order_Demand": "60 " + }, + "Product_0129": { + "Product_Code": "Product_0129", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/2", + "Order_Demand": "1000 " + }, + "Product_1712": { + "Product_Code": "Product_1712", + "Warehouse": "Whse_J", + "Product_Category": "Category_026", + "Date": "2016/6/21", + "Order_Demand": "2 " + }, + "Product_1061": { + "Product_Code": "Product_1061", + "Warehouse": "Whse_J", + "Product_Category": "Category_032", + "Date": "2016/10/6", + "Order_Demand": "6 " + }, + "Product_0811": { + "Product_Code": "Product_0811", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/25", + "Order_Demand": "1 " + }, + "Product_0812": { + "Product_Code": "Product_0812", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/25", + "Order_Demand": "1 " + }, + "Product_1907": { + "Product_Code": "Product_1907", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/28", + "Order_Demand": "150 " + }, + "Product_0807": { + "Product_Code": "Product_0807", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/2/10", + "Order_Demand": "0 " + }, + "Product_0691": { + "Product_Code": "Product_0691", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/5/24", + "Order_Demand": "10 " + }, + "Product_1524": { + "Product_Code": "Product_1524", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/19", + "Order_Demand": "1000 " + }, + "Product_0362": { + "Product_Code": "Product_0362", + "Warehouse": "Whse_J", + "Product_Category": "Category_030", + "Date": "2016/4/4", + "Order_Demand": "1 " + }, + "Product_1842": { + "Product_Code": "Product_1842", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/9/12", + "Order_Demand": "2500 " + }, + "Product_0813": { + "Product_Code": "Product_0813", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/12/12", + "Order_Demand": "5 " + }, + "Product_0069": { + "Product_Code": "Product_0069", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/25", + "Order_Demand": "100 " + }, + "Product_1105": { + "Product_Code": "Product_1105", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/2/8", + "Order_Demand": "100 " + }, + "Product_0778": { + "Product_Code": "Product_0778", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/10/27", + "Order_Demand": "5 " + }, + "Product_0076": { + "Product_Code": "Product_0076", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/21", + "Order_Demand": "100 " + }, + "Product_1575": { + "Product_Code": "Product_1575", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/10", + "Order_Demand": "500 " + }, + "Product_1446": { + "Product_Code": "Product_1446", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/7", + "Order_Demand": "1000 " + }, + "Product_1405": { + "Product_Code": "Product_1405", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2016/2/22", + "Order_Demand": "1000 " + }, + "Product_0434": { + "Product_Code": "Product_0434", + "Warehouse": "Whse_S", + "Product_Category": "Category_032", + "Date": "2015/11/13", + "Order_Demand": "12 " + }, + "Product_0435": { + "Product_Code": "Product_0435", + "Warehouse": "Whse_S", + "Product_Category": "Category_032", + "Date": "2016/1/14", + "Order_Demand": "60 " + }, + "Product_1358": { + "Product_Code": "Product_1358", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2015/12/18", + "Order_Demand": "50000 " + }, + "Product_0869": { + "Product_Code": "Product_0869", + "Warehouse": "Whse_S", + "Product_Category": "Category_005", + "Date": "2015/10/16", + "Order_Demand": "5000 " + }, + "Product_1591": { + "Product_Code": "Product_1591", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/12", + "Order_Demand": "1000 " + }, + "Product_1989": { + "Product_Code": "Product_1989", + "Warehouse": "Whse_S", + "Product_Category": "Category_005", + "Date": "2016/11/10", + "Order_Demand": "1000 " + }, + "Product_1476": { + "Product_Code": "Product_1476", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2015/2/16", + "Order_Demand": "100 " + }, + "Product_0809": { + "Product_Code": "Product_0809", + "Warehouse": "Whse_S", + "Product_Category": "Category_001", + "Date": "2016/12/6", + "Order_Demand": "37 " + }, + "Product_1395": { + "Product_Code": "Product_1395", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2015/2/2", + "Order_Demand": "1000 " + }, + "Product_1590": { + "Product_Code": "Product_1590", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/22", + "Order_Demand": "100 " + }, + "Product_0595": { + "Product_Code": "Product_0595", + "Warehouse": "Whse_S", + "Product_Category": "Category_032", + "Date": "2015/11/10", + "Order_Demand": "6 " + }, + "Product_0591": { + "Product_Code": "Product_0591", + "Warehouse": "Whse_S", + "Product_Category": "Category_032", + "Date": "2015/1/9", + "Order_Demand": "120 " + }, + "Product_0563": { + "Product_Code": "Product_0563", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/6/23", + "Order_Demand": "600 " + }, + "Product_0554": { + "Product_Code": "Product_0554", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/7/7", + "Order_Demand": "1000 " + }, + "Product_1745": { + "Product_Code": "Product_1745", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/12/13", + "Order_Demand": "400 " + }, + "Product_1127": { + "Product_Code": "Product_1127", + "Warehouse": "Whse_S", + "Product_Category": "Category_030", + "Date": "2016/10/31", + "Order_Demand": "5000 " + }, + "Product_1525": { + "Product_Code": "Product_1525", + "Warehouse": "Whse_S", + "Product_Category": "Category_019", + "Date": "2015/12/7", + "Order_Demand": "5000 " + }, + "Product_0532": { + "Product_Code": "Product_0532", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2016/9/23", + "Order_Demand": "138 " + }, + "Product_1027": { + "Product_Code": "Product_1027", + "Warehouse": "Whse_S", + "Product_Category": "Category_028", + "Date": "2014/4/28", + "Order_Demand": "1 " + }, + "Product_0898": { + "Product_Code": "Product_0898", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2016/12/22", + "Order_Demand": "200 " + }, + "Product_1655": { + "Product_Code": "Product_1655", + "Warehouse": "Whse_S", + "Product_Category": "Category_010", + "Date": "2015/12/31", + "Order_Demand": "80 " + }, + "Product_2022": { + "Product_Code": "Product_2022", + "Warehouse": "Whse_S", + "Product_Category": "Category_005", + "Date": "2016/11/30", + "Order_Demand": "400 " + }, + "Product_1566": { + "Product_Code": "Product_1566", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/23", + "Order_Demand": "(1)" + }, + "Product_1586": { + "Product_Code": "Product_1586", + "Warehouse": "Whse_C", + "Product_Category": "Category_030", + "Date": "2016/11/24", + "Order_Demand": "200 " + }, + "Product_1320": { + "Product_Code": "Product_1320", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/25", + "Order_Demand": "100 " + }, + "Product_1321": { + "Product_Code": "Product_1321", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/25", + "Order_Demand": "100 " + }, + "Product_1325": { + "Product_Code": "Product_1325", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/23", + "Order_Demand": "(50)" + }, + "Product_1326": { + "Product_Code": "Product_1326", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/25", + "Order_Demand": "100 " + }, + "Product_1331": { + "Product_Code": "Product_1331", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/3", + "Order_Demand": "100 " + }, + "Product_0044": { + "Product_Code": "Product_0044", + "Warehouse": "Whse_C", + "Product_Category": "Category_005", + "Date": "2016/12/6", + "Order_Demand": "1000 " + }, + "Product_1366": { + "Product_Code": "Product_1366", + "Warehouse": "Whse_C", + "Product_Category": "Category_019", + "Date": "2016/10/10", + "Order_Demand": "7000 " + }, + "Product_1594": { + "Product_Code": "Product_1594", + "Warehouse": "Whse_C", + "Product_Category": "Category_030", + "Date": "2016/12/15", + "Order_Demand": "100 " + }, + "Product_0844": { + "Product_Code": "Product_0844", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/6/27", + "Order_Demand": "34 " + }, + "Product_2061": { + "Product_Code": "Product_2061", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/10/26", + "Order_Demand": "4 " + }, + "Product_2067": { + "Product_Code": "Product_2067", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/11/29", + "Order_Demand": "62 " + }, + "Product_0207": { + "Product_Code": "Product_0207", + "Warehouse": "Whse_A", + "Product_Category": "Category_007", + "Date": "2016/3/30", + "Order_Demand": "200 " + }, + "Product_2071": { + "Product_Code": "Product_2071", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/7/19", + "Order_Demand": "20 " + }, + "Product_2089": { + "Product_Code": "Product_2089", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/5/12", + "Order_Demand": "12 " + }, + "Product_2095": { + "Product_Code": "Product_2095", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/3/15", + "Order_Demand": "5 " + }, + "Product_2074": { + "Product_Code": "Product_2074", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/2/2", + "Order_Demand": "20 " + }, + "Product_2075": { + "Product_Code": "Product_2075", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/10/19", + "Order_Demand": "28 " + }, + "Product_2081": { + "Product_Code": "Product_2081", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/4/26", + "Order_Demand": "2 " + }, + "Product_2086": { + "Product_Code": "Product_2086", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/7/19", + "Order_Demand": "40 " + }, + "Product_2088": { + "Product_Code": "Product_2088", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/11/28", + "Order_Demand": "6 " + }, + "Product_2077": { + "Product_Code": "Product_2077", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/7/19", + "Order_Demand": "70 " + }, + "Product_2084": { + "Product_Code": "Product_2084", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/7/5", + "Order_Demand": "20 " + }, + "Product_2087": { + "Product_Code": "Product_2087", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/7/19", + "Order_Demand": "40 " + }, + "Product_2093": { + "Product_Code": "Product_2093", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/4/26", + "Order_Demand": "2 " + }, + "Product_1751": { + "Product_Code": "Product_1751", + "Warehouse": "Whse_A", + "Product_Category": "Category_001", + "Date": "2016/8/24", + "Order_Demand": "1 " + }, + "Product_2080": { + "Product_Code": "Product_2080", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/7/19", + "Order_Demand": "40 " + }, + "Product_2083": { + "Product_Code": "Product_2083", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/7/19", + "Order_Demand": "70 " + }, + "Product_2092": { + "Product_Code": "Product_2092", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/12/15", + "Order_Demand": "(20)" + }, + "Product_2090": { + "Product_Code": "Product_2090", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/8/18", + "Order_Demand": "100 " + }, + "Product_2073": { + "Product_Code": "Product_2073", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/8/19", + "Order_Demand": "100 " + }, + "Product_2079": { + "Product_Code": "Product_2079", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/7/19", + "Order_Demand": "40 " + }, + "Product_0203": { + "Product_Code": "Product_0203", + "Warehouse": "Whse_A", + "Product_Category": "Category_007", + "Date": "2016/10/24", + "Order_Demand": "600 " + }, + "Product_1103": { + "Product_Code": "Product_1103", + "Warehouse": "Whse_S", + "Product_Category": "Category_002", + "Date": "2015/8/18", + "Order_Demand": "2 " + }, + "Product_0142": { + "Product_Code": "Product_0142", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/10/17", + "Order_Demand": "6 " + }, + "Product_0846": { + "Product_Code": "Product_0846", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/7/29", + "Order_Demand": "36 " + }, + "Product_1517": { + "Product_Code": "Product_1517", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/26", + "Order_Demand": "400 " + }, + "Product_1576": { + "Product_Code": "Product_1576", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/7", + "Order_Demand": "100 " + }, + "Product_0279": { + "Product_Code": "Product_0279", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/10/26", + "Order_Demand": "20 " + }, + "Product_0324": { + "Product_Code": "Product_0324", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/12/8", + "Order_Demand": "1 " + }, + "Product_0694": { + "Product_Code": "Product_0694", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/1/14", + "Order_Demand": "2 " + }, + "Product_0834": { + "Product_Code": "Product_0834", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/16", + "Order_Demand": "100 " + }, + "Product_2065": { + "Product_Code": "Product_2065", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/11/4", + "Order_Demand": "4 " + }, + "Product_2094": { + "Product_Code": "Product_2094", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/3/8", + "Order_Demand": "15 " + }, + "Product_1917": { + "Product_Code": "Product_1917", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/3/18", + "Order_Demand": "1 " + }, + "Product_0346": { + "Product_Code": "Product_0346", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/8/2", + "Order_Demand": "1 " + }, + "Product_2091": { + "Product_Code": "Product_2091", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/5/13", + "Order_Demand": "12 " + }, + "Product_1888": { + "Product_Code": "Product_1888", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/6/15", + "Order_Demand": "100 " + }, + "Product_0510": { + "Product_Code": "Product_0510", + "Warehouse": "Whse_J", + "Product_Category": "Category_012", + "Date": "2016/1/5", + "Order_Demand": "2 " + }, + "Product_0285": { + "Product_Code": "Product_0285", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/2/2", + "Order_Demand": "20 " + }, + "Product_0128": { + "Product_Code": "Product_0128", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/2", + "Order_Demand": "20000 " + }, + "Product_1048": { + "Product_Code": "Product_1048", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/12/28", + "Order_Demand": "60000 " + }, + "Product_1887": { + "Product_Code": "Product_1887", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/9/7", + "Order_Demand": "100 " + }, + "Product_1019": { + "Product_Code": "Product_1019", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/9/13", + "Order_Demand": "20 " + }, + "Product_0119": { + "Product_Code": "Product_0119", + "Warehouse": "Whse_J", + "Product_Category": "Category_008", + "Date": "2016/3/31", + "Order_Demand": "4 " + }, + "Product_2085": { + "Product_Code": "Product_2085", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/11/28", + "Order_Demand": "16 " + }, + "Product_2078": { + "Product_Code": "Product_2078", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/4/1", + "Order_Demand": "10 " + }, + "Product_2117": { + "Product_Code": "Product_2117", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/11/16", + "Order_Demand": "25 " + }, + "Product_1804": { + "Product_Code": "Product_1804", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/9/12", + "Order_Demand": "2 " + }, + "Product_1690": { + "Product_Code": "Product_1690", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/7/28", + "Order_Demand": "4 " + }, + "Product_1693": { + "Product_Code": "Product_1693", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/8/31", + "Order_Demand": "(16)" + }, + "Product_1696": { + "Product_Code": "Product_1696", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/9/6", + "Order_Demand": "1 " + }, + "Product_2160": { + "Product_Code": "Product_2160", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/11/24", + "Order_Demand": "200 " + }, + "Product_0328": { + "Product_Code": "Product_0328", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/4/1", + "Order_Demand": "2 " + }, + "Product_2096": { + "Product_Code": "Product_2096", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/10/19", + "Order_Demand": "3 " + }, + "Product_0369": { + "Product_Code": "Product_0369", + "Warehouse": "Whse_J", + "Product_Category": "Category_030", + "Date": "2016/11/11", + "Order_Demand": "25 " + }, + "Product_0480": { + "Product_Code": "Product_0480", + "Warehouse": "Whse_S", + "Product_Category": "Category_014", + "Date": "2016/12/23", + "Order_Demand": "1 " + }, + "Product_1799": { + "Product_Code": "Product_1799", + "Warehouse": "Whse_S", + "Product_Category": "Category_024", + "Date": "2016/12/19", + "Order_Demand": "4 " + }, + "Product_2097": { + "Product_Code": "Product_2097", + "Warehouse": "Whse_S", + "Product_Category": "Category_009", + "Date": "2016/4/11", + "Order_Demand": "30 " + }, + "Product_0388": { + "Product_Code": "Product_0388", + "Warehouse": "Whse_S", + "Product_Category": "Category_025", + "Date": "2015/9/28", + "Order_Demand": "20000 " + }, + "Product_0948": { + "Product_Code": "Product_0948", + "Warehouse": "Whse_S", + "Product_Category": "Category_005", + "Date": "2016/5/16", + "Order_Demand": "5000 " + }, + "Product_1302": { + "Product_Code": "Product_1302", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/24", + "Order_Demand": "100 " + }, + "Product_1472": { + "Product_Code": "Product_1472", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/24", + "Order_Demand": "100 " + }, + "Product_1347": { + "Product_Code": "Product_1347", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/5/13", + "Order_Demand": "5000 " + }, + "Product_1414": { + "Product_Code": "Product_1414", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/24", + "Order_Demand": "100 " + }, + "Product_1253": { + "Product_Code": "Product_1253", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/24", + "Order_Demand": "100 " + }, + "Product_1373": { + "Product_Code": "Product_1373", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/11/24", + "Order_Demand": "100 " + }, + "Product_1514": { + "Product_Code": "Product_1514", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/28", + "Order_Demand": "300 " + }, + "Product_1376": { + "Product_Code": "Product_1376", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/13", + "Order_Demand": "1000 " + }, + "Product_0906": { + "Product_Code": "Product_0906", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2015/12/21", + "Order_Demand": "1250 " + }, + "Product_1170": { + "Product_Code": "Product_1170", + "Warehouse": "Whse_S", + "Product_Category": "Category_024", + "Date": "2016/8/1", + "Order_Demand": "4 " + }, + "Product_1483": { + "Product_Code": "Product_1483", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/8/8", + "Order_Demand": "10000 " + }, + "Product_0949": { + "Product_Code": "Product_0949", + "Warehouse": "Whse_C", + "Product_Category": "Category_005", + "Date": "2016/12/26", + "Order_Demand": "4000 " + }, + "Product_0246": { + "Product_Code": "Product_0246", + "Warehouse": "Whse_A", + "Product_Category": "Category_007", + "Date": "2016/11/22", + "Order_Demand": "20 " + }, + "Product_2070": { + "Product_Code": "Product_2070", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/12/14", + "Order_Demand": "20 " + }, + "Product_0567": { + "Product_Code": "Product_0567", + "Warehouse": "Whse_A", + "Product_Category": "Category_012", + "Date": "2016/9/22", + "Order_Demand": "6 " + }, + "Product_0437": { + "Product_Code": "Product_0437", + "Warehouse": "Whse_S", + "Product_Category": "Category_012", + "Date": "2016/10/31", + "Order_Demand": "48 " + }, + "Product_0439": { + "Product_Code": "Product_0439", + "Warehouse": "Whse_S", + "Product_Category": "Category_012", + "Date": "2016/10/31", + "Order_Demand": "19 " + }, + "Product_0566": { + "Product_Code": "Product_0566", + "Warehouse": "Whse_S", + "Product_Category": "Category_012", + "Date": "2017/1/2", + "Order_Demand": "70 " + }, + "Product_0580": { + "Product_Code": "Product_0580", + "Warehouse": "Whse_S", + "Product_Category": "Category_012", + "Date": "2016/10/31", + "Order_Demand": "11 " + }, + "Product_0569": { + "Product_Code": "Product_0569", + "Warehouse": "Whse_J", + "Product_Category": "Category_012", + "Date": "2016/5/31", + "Order_Demand": "0 " + }, + "Product_0570": { + "Product_Code": "Product_0570", + "Warehouse": "Whse_J", + "Product_Category": "Category_012", + "Date": "2016/11/1", + "Order_Demand": "8 " + }, + "Product_0578": { + "Product_Code": "Product_0578", + "Warehouse": "Whse_J", + "Product_Category": "Category_012", + "Date": "2016/5/31", + "Order_Demand": "0 " + }, + "Product_0574": { + "Product_Code": "Product_0574", + "Warehouse": "Whse_S", + "Product_Category": "Category_012", + "Date": "2016/11/28", + "Order_Demand": "6 " + }, + "Product_0575": { + "Product_Code": "Product_0575", + "Warehouse": "Whse_S", + "Product_Category": "Category_012", + "Date": "2016/11/14", + "Order_Demand": "75 " + }, + "Product_0571": { + "Product_Code": "Product_0571", + "Warehouse": "Whse_J", + "Product_Category": "Category_012", + "Date": "2016/8/9", + "Order_Demand": "4 " + }, + "Product_0573": { + "Product_Code": "Product_0573", + "Warehouse": "Whse_S", + "Product_Category": "Category_012", + "Date": "2016/11/28", + "Order_Demand": "20 " + }, + "Product_0440": { + "Product_Code": "Product_0440", + "Warehouse": "Whse_S", + "Product_Category": "Category_012", + "Date": "2016/10/31", + "Order_Demand": "10 " + }, + "Product_0441": { + "Product_Code": "Product_0441", + "Warehouse": "Whse_S", + "Product_Category": "Category_012", + "Date": "2015/12/21", + "Order_Demand": "5 " + }, + "Product_1172": { + "Product_Code": "Product_1172", + "Warehouse": "Whse_S", + "Product_Category": "Category_024", + "Date": "2016/7/27", + "Order_Demand": "4 " + }, + "Product_2068": { + "Product_Code": "Product_2068", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/11/8", + "Order_Demand": "20 " + }, + "Product_2063": { + "Product_Code": "Product_2063", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/5/17", + "Order_Demand": "1 " + }, + "Product_1788": { + "Product_Code": "Product_1788", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/1/26", + "Order_Demand": "1000 " + }, + "Product_1782": { + "Product_Code": "Product_1782", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/11/18", + "Order_Demand": "2500 " + }, + "Product_1720": { + "Product_Code": "Product_1720", + "Warehouse": "Whse_J", + "Product_Category": "Category_003", + "Date": "2016/10/3", + "Order_Demand": "1 " + }, + "Product_1791": { + "Product_Code": "Product_1791", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/4/27", + "Order_Demand": "1000 " + }, + "Product_2062": { + "Product_Code": "Product_2062", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/3/2", + "Order_Demand": "14 " + }, + "Product_2064": { + "Product_Code": "Product_2064", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/11/8", + "Order_Demand": "10 " + }, + "Product_0114": { + "Product_Code": "Product_0114", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/10/31", + "Order_Demand": "50 " + }, + "Product_1615": { + "Product_Code": "Product_1615", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/4", + "Order_Demand": "1 " + }, + "Product_0962": { + "Product_Code": "Product_0962", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/5/2", + "Order_Demand": "100 " + }, + "Product_1780": { + "Product_Code": "Product_1780", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/3/3", + "Order_Demand": "2500 " + }, + "Product_2050": { + "Product_Code": "Product_2050", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/12/6", + "Order_Demand": "1000 " + }, + "Product_2066": { + "Product_Code": "Product_2066", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/11/28", + "Order_Demand": "7 " + }, + "Product_1790": { + "Product_Code": "Product_1790", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/12/22", + "Order_Demand": "1000 " + }, + "Product_1171": { + "Product_Code": "Product_1171", + "Warehouse": "Whse_A", + "Product_Category": "Category_024", + "Date": "2016/7/12", + "Order_Demand": "6 " + }, + "Product_0247": { + "Product_Code": "Product_0247", + "Warehouse": "Whse_A", + "Product_Category": "Category_007", + "Date": "2016/3/14", + "Order_Demand": "20 " + }, + "Product_2147": { + "Product_Code": "Product_2147", + "Warehouse": "Whse_A", + "Product_Category": "Category_027", + "Date": "2016/8/30", + "Order_Demand": "4 " + }, + "Product_1793": { + "Product_Code": "Product_1793", + "Warehouse": "Whse_A", + "Product_Category": "Category_024", + "Date": "2016/8/31", + "Order_Demand": "2 " + }, + "Product_0466": { + "Product_Code": "Product_0466", + "Warehouse": "Whse_A", + "Product_Category": "Category_012", + "Date": "2016/8/2", + "Order_Demand": "3 " + }, + "Product_2159": { + "Product_Code": "Product_2159", + "Warehouse": "Whse_J", + "Product_Category": "Category_022", + "Date": "2016/4/1", + "Order_Demand": "284 " + }, + "Product_0902": { + "Product_Code": "Product_0902", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/12/5", + "Order_Demand": "200 " + }, + "Product_1785": { + "Product_Code": "Product_1785", + "Warehouse": "Whse_J", + "Product_Category": "Category_006", + "Date": "2016/1/21", + "Order_Demand": "2500 " + }, + "Product_2161": { + "Product_Code": "Product_2161", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2016/3/14", + "Order_Demand": "20 " + }, + "Product_2162": { + "Product_Code": "Product_2162", + "Warehouse": "Whse_S", + "Product_Category": "Category_022", + "Date": "2016/9/20", + "Order_Demand": "66 " + }, + "Product_0824": { + "Product_Code": "Product_0824", + "Warehouse": "Whse_S", + "Product_Category": "Category_017", + "Date": "2016/10/3", + "Order_Demand": "1 " + }, + "Product_0438": { + "Product_Code": "Product_0438", + "Warehouse": "Whse_S", + "Product_Category": "Category_012", + "Date": "2016/10/31", + "Order_Demand": "25 " + }, + "Product_0579": { + "Product_Code": "Product_0579", + "Warehouse": "Whse_S", + "Product_Category": "Category_012", + "Date": "2016/10/17", + "Order_Demand": "36 " + }, + "Product_1619": { + "Product_Code": "Product_1619", + "Warehouse": "Whse_S", + "Product_Category": "Category_024", + "Date": "2016/8/15", + "Order_Demand": "10 " + }, + "Product_0577": { + "Product_Code": "Product_0577", + "Warehouse": "Whse_S", + "Product_Category": "Category_012", + "Date": "2015/11/16", + "Order_Demand": "1 " + }, + "Product_1850": { + "Product_Code": "Product_1850", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/7/26", + "Order_Demand": "3 " + }, + "Product_1085": { + "Product_Code": "Product_1085", + "Warehouse": "Whse_S", + "Product_Category": "Category_016", + "Date": "2016/5/23", + "Order_Demand": "144 " + }, + "Product_1726": { + "Product_Code": "Product_1726", + "Warehouse": "Whse_A", + "Product_Category": "Category_003", + "Date": "2016/1/29", + "Order_Demand": "54 " + }, + "Product_1913": { + "Product_Code": "Product_1913", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/5/16", + "Order_Demand": "66 " + }, + "Product_2149": { + "Product_Code": "Product_2149", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/7/14", + "Order_Demand": "100 " + }, + "Product_2150": { + "Product_Code": "Product_2150", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/3/24", + "Order_Demand": "300 " + }, + "Product_1873": { + "Product_Code": "Product_1873", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/25", + "Order_Demand": "1 " + }, + "Product_0568": { + "Product_Code": "Product_0568", + "Warehouse": "Whse_J", + "Product_Category": "Category_012", + "Date": "2016/5/31", + "Order_Demand": "0 " + }, + "Product_0483": { + "Product_Code": "Product_0483", + "Warehouse": "Whse_J", + "Product_Category": "Category_011", + "Date": "2016/10/27", + "Order_Demand": "30 " + }, + "Product_0572": { + "Product_Code": "Product_0572", + "Warehouse": "Whse_J", + "Product_Category": "Category_012", + "Date": "2016/9/9", + "Order_Demand": "2 " + }, + "Product_2100": { + "Product_Code": "Product_2100", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/4/22", + "Order_Demand": "2 " + }, + "Product_2101": { + "Product_Code": "Product_2101", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/4/22", + "Order_Demand": "1 " + }, + "Product_0509": { + "Product_Code": "Product_0509", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/12/20", + "Order_Demand": "12 " + }, + "Product_2069": { + "Product_Code": "Product_2069", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/12/22", + "Order_Demand": "40 " + }, + "Product_1863": { + "Product_Code": "Product_1863", + "Warehouse": "Whse_J", + "Product_Category": "Category_001", + "Date": "2016/3/25", + "Order_Demand": "1 " + }, + "Product_2102": { + "Product_Code": "Product_2102", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/5/31", + "Order_Demand": "0 " + }, + "Product_1890": { + "Product_Code": "Product_1890", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/7/21", + "Order_Demand": "100 " + }, + "Product_2103": { + "Product_Code": "Product_2103", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/5/31", + "Order_Demand": "0 " + }, + "Product_1911": { + "Product_Code": "Product_1911", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/4/5", + "Order_Demand": "1 " + }, + "Product_1914": { + "Product_Code": "Product_1914", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/1/20", + "Order_Demand": "42 " + }, + "Product_0506": { + "Product_Code": "Product_0506", + "Warehouse": "Whse_A", + "Product_Category": "Category_015", + "Date": "2016/10/11", + "Order_Demand": "2000 " + }, + "Product_0647": { + "Product_Code": "Product_0647", + "Warehouse": "Whse_A", + "Product_Category": "Category_027", + "Date": "2016/3/7", + "Order_Demand": "8 " + }, + "Product_1703": { + "Product_Code": "Product_1703", + "Warehouse": "Whse_A", + "Product_Category": "Category_021", + "Date": "2015/10/8", + "Order_Demand": "2 " + }, + "Product_0899": { + "Product_Code": "Product_0899", + "Warehouse": "Whse_A", + "Product_Category": "Category_023", + "Date": "2016/10/17", + "Order_Demand": "(39)" + }, + "Product_1912": { + "Product_Code": "Product_1912", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/9/28", + "Order_Demand": "270 " + }, + "Product_1915": { + "Product_Code": "Product_1915", + "Warehouse": "Whse_A", + "Product_Category": "Category_009", + "Date": "2016/12/8", + "Order_Demand": "43 " + }, + "Product_2009": { + "Product_Code": "Product_2009", + "Warehouse": "Whse_S", + "Product_Category": "Category_005", + "Date": "2016/12/30", + "Order_Demand": "2000 " + }, + "Product_2098": { + "Product_Code": "Product_2098", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/10/19", + "Order_Demand": "28 " + }, + "Product_1086": { + "Product_Code": "Product_1086", + "Warehouse": "Whse_S", + "Product_Category": "Category_016", + "Date": "2016/5/23", + "Order_Demand": "36 " + }, + "Product_0576": { + "Product_Code": "Product_0576", + "Warehouse": "Whse_S", + "Product_Category": "Category_012", + "Date": "2015/11/27", + "Order_Demand": "30 " + }, + "Product_1654": { + "Product_Code": "Product_1654", + "Warehouse": "Whse_S", + "Product_Category": "Category_010", + "Date": "2015/12/18", + "Order_Demand": "200 " + }, + "Product_1084": { + "Product_Code": "Product_1084", + "Warehouse": "Whse_S", + "Product_Category": "Category_016", + "Date": "2016/5/23", + "Order_Demand": "144 " + }, + "Product_1721": { + "Product_Code": "Product_1721", + "Warehouse": "Whse_J", + "Product_Category": "Category_003", + "Date": "2016/10/12", + "Order_Demand": "1 " + }, + "Product_0360": { + "Product_Code": "Product_0360", + "Warehouse": "Whse_S", + "Product_Category": "Category_023", + "Date": "2015/12/4", + "Order_Demand": "1075 " + }, + "Product_2099": { + "Product_Code": "Product_2099", + "Warehouse": "Whse_S", + "Product_Category": "Category_009", + "Date": "2015/12/24", + "Order_Demand": "163 " + }, + "Product_0873": { + "Product_Code": "Product_0873", + "Warehouse": "Whse_C", + "Product_Category": "Category_023", + "Date": "2016/11/10", + "Order_Demand": "100 " + }, + "Product_0096": { + "Product_Code": "Product_0096", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/9/27", + "Order_Demand": "1250 " + }, + "Product_0645": { + "Product_Code": "Product_0645", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/6", + "Order_Demand": "5 " + }, + "Product_0241": { + "Product_Code": "Product_0241", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/8", + "Order_Demand": "72 " + }, + "Product_0242": { + "Product_Code": "Product_0242", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/8", + "Order_Demand": "48 " + }, + "Product_0244": { + "Product_Code": "Product_0244", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/17", + "Order_Demand": "10 " + }, + "Product_0236": { + "Product_Code": "Product_0236", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/12/8", + "Order_Demand": "4 " + }, + "Product_0092": { + "Product_Code": "Product_0092", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/6/15", + "Order_Demand": "(400)" + }, + "Product_1725": { + "Product_Code": "Product_1725", + "Warehouse": "Whse_A", + "Product_Category": "Category_003", + "Date": "2016/12/15", + "Order_Demand": "(18)" + }, + "Product_0245": { + "Product_Code": "Product_0245", + "Warehouse": "Whse_A", + "Product_Category": "Category_007", + "Date": "2016/4/22", + "Order_Demand": "42 " + }, + "Product_0243": { + "Product_Code": "Product_0243", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/9/5", + "Order_Demand": "4 " + }, + "Product_1083": { + "Product_Code": "Product_1083", + "Warehouse": "Whse_A", + "Product_Category": "Category_016", + "Date": "2016/11/25", + "Order_Demand": "12 " + }, + "Product_0233": { + "Product_Code": "Product_0233", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/5/24", + "Order_Demand": "48 " + }, + "Product_0234": { + "Product_Code": "Product_0234", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/10", + "Order_Demand": "20 " + }, + "Product_0240": { + "Product_Code": "Product_0240", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/9/23", + "Order_Demand": "(110)" + }, + "Product_0235": { + "Product_Code": "Product_0235", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/7/8", + "Order_Demand": "5 " + }, + "Product_0238": { + "Product_Code": "Product_0238", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/11/7", + "Order_Demand": "4 " + }, + "Product_0239": { + "Product_Code": "Product_0239", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/10/21", + "Order_Demand": "2 " + }, + "Product_2151": { + "Product_Code": "Product_2151", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/12/6", + "Order_Demand": "2 " + }, + "Product_1910": { + "Product_Code": "Product_1910", + "Warehouse": "Whse_J", + "Product_Category": "Category_009", + "Date": "2016/9/14", + "Order_Demand": "10 " + }, + "Product_0452": { + "Product_Code": "Product_0452", + "Warehouse": "Whse_J", + "Product_Category": "Category_015", + "Date": "2016/12/12", + "Order_Demand": "21 " + }, + "Product_1013": { + "Product_Code": "Product_1013", + "Warehouse": "Whse_J", + "Product_Category": "Category_005", + "Date": "2016/12/5", + "Order_Demand": "5000 " + }, + "Product_0465": { + "Product_Code": "Product_0465", + "Warehouse": "Whse_A", + "Product_Category": "Category_012", + "Date": "2016/8/2", + "Order_Demand": "3 " + }, + "Product_0237": { + "Product_Code": "Product_0237", + "Warehouse": "Whse_J", + "Product_Category": "Category_007", + "Date": "2016/7/8", + "Order_Demand": "55 " + }, + "Product_0644": { + "Product_Code": "Product_0644", + "Warehouse": "Whse_J", + "Product_Category": "Category_019", + "Date": "2016/10/7", + "Order_Demand": "1 " + }, + "Product_0853": { + "Product_Code": "Product_0853", + "Warehouse": "Whse_J", + "Product_Category": "Category_021", + "Date": "2016/11/16", + "Order_Demand": "20 " + } +} \ No newline at end of file