blob: d404ed4aa1f3358ee1a08a7a7e10b5231d79119a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.apache.ofbiz.entity.util.EntityUtil;
import org.apache.ofbiz.product.catalog.CatalogWorker;
import org.apache.ofbiz.product.category.CategoryWorker;
import org.apache.ofbiz.product.store.ProductStoreWorker;
categoryIds = [];
prodCatalogList = [];
categoryList = [];
if (parameters.productStoreId) {
productStoreId = parameters.productStoreId;
} else {
productStoreId = ProductStoreWorker.getProductStoreId(request);
}
ebayConfigList = from("EbayConfig").queryList();
if (productStoreId) {
productStoreCatalogs = CatalogWorker.getStoreCatalogs(delegator, productStoreId);
if (productStoreCatalogs) {
productStoreCatalogs.each { productStoreCatalog ->
prodCatalog = from("ProdCatalog").where("prodCatalogId", productStoreCatalog.prodCatalogId).cache(true).queryOne();
prodCatalogList.add(prodCatalog);
}
}
}
currentCatalogId = null;
if (parameters.SEARCH_CATALOG_ID) {
currentCatalogId = parameters.SEARCH_CATALOG_ID;
} else if (prodCatalogList) {
catalog = EntityUtil.getFirst(prodCatalogList);
currentCatalogId = catalog.prodCatalogId;
}
topCategory = CatalogWorker.getCatalogTopEbayCategoryId(request, currentCatalogId);
if (!topCategory) {
topCategory = CatalogWorker.getCatalogTopCategoryId(request, currentCatalogId);
}
if (topCategory) {
CategoryWorker.getRelatedCategories(request, "topLevelList", topCategory, true);
if (request.getAttribute("topLevelList")) {
categoryList = request.getAttribute("topLevelList");
} else {
categoryIds.add(topCategory);
}
}
if (categoryList) {
categoryIds = EntityUtil.getFieldListFromEntityList(categoryList, "productCategoryId", true);
}
context.ebayConfigList = ebayConfigList;
context.categoryIds = categoryIds;
context.productStoreId = productStoreId;
context.prodCatalogList = prodCatalogList;
context.searchCatalogId = currentCatalogId;