public static string GetInventoryHouseTime(string organizationID, string startTimeWindow, string endTimeWindow)
        {
            DataTable table = InventoryQueryService.GetInventoryTime(organizationID, startTimeWindow, endTimeWindow);
            string    json  = EasyUIJsonParser.DataGridJsonParser.DataTableToJson(table);

            return(json);
        }
        public static string GetWarehouseName(string myOrganizationId)
        {
            DataTable table = InventoryQueryService.GetProcessTypeInfo(myOrganizationId);
            string    json  = EasyUIJsonParser.DataGridJsonParser.DataTableToJson(table);

            return(json);
        }
        public static string GetInventory(string organizationID, string warehouseName, DateTime startTime, DateTime endTime)
        {
            DataTable table = InventoryQueryService.GetInventoryInformation(organizationID, warehouseName, startTime, endTime);

            return(EasyUIJsonParser.TreeGridJsonParser.DataTableToJsonByLevelCode(table, "FormulaLevelCode"));
        }