use of com.salesmanager.core.model.catalog.product.attribute.ProductOptionDescription in project shopizer by shopizer-ecommerce.
the class ReadableProductOptionMapper method merge.
@Override
public ReadableProductOptionEntity merge(ProductOption source, ReadableProductOptionEntity destination, MerchantStore store, Language language) {
ReadableProductOptionEntity readableProductOption = new ReadableProductOptionEntity();
if (language == null) {
readableProductOption = new ReadableProductOptionFull();
List<com.salesmanager.shop.model.catalog.product.attribute.ProductOptionDescription> descriptions = new ArrayList<com.salesmanager.shop.model.catalog.product.attribute.ProductOptionDescription>();
for (ProductOptionDescription desc : source.getDescriptions()) {
com.salesmanager.shop.model.catalog.product.attribute.ProductOptionDescription d = this.description(desc);
descriptions.add(d);
}
((ReadableProductOptionFull) readableProductOption).setDescriptions(descriptions);
} else {
readableProductOption = new ReadableProductOptionEntity();
if (!CollectionUtils.isEmpty(source.getDescriptions())) {
for (ProductOptionDescription desc : source.getDescriptions()) {
if (desc != null && desc.getLanguage() != null && desc.getLanguage().getId() == language.getId()) {
com.salesmanager.shop.model.catalog.product.attribute.ProductOptionDescription d = this.description(desc);
readableProductOption.setDescription(d);
}
}
}
}
readableProductOption.setCode(source.getCode());
readableProductOption.setId(source.getId());
readableProductOption.setType(source.getProductOptionType());
return readableProductOption;
}
use of com.salesmanager.core.model.catalog.product.attribute.ProductOptionDescription in project shopizer by shopizer-ecommerce.
the class PersistableProductOptionMapper method merge.
@Override
public ProductOption merge(PersistableProductOptionEntity source, ProductOption destination, MerchantStore store, Language language) {
if (destination == null) {
destination = new ProductOption();
}
try {
if (!CollectionUtils.isEmpty(source.getDescriptions())) {
for (com.salesmanager.shop.model.catalog.product.attribute.ProductOptionDescription desc : source.getDescriptions()) {
ProductOptionDescription description = null;
if (!CollectionUtils.isEmpty(destination.getDescriptions())) {
for (ProductOptionDescription d : destination.getDescriptions()) {
if (!StringUtils.isBlank(desc.getLanguage()) && desc.getLanguage().equals(d.getLanguage().getCode())) {
d.setDescription(desc.getDescription());
d.setName(desc.getName());
d.setTitle(desc.getTitle());
description = d;
break;
}
}
}
if (description == null) {
description = description(desc);
description.setProductOption(destination);
destination.getDescriptions().add(description);
}
}
}
destination.setCode(source.getCode());
destination.setMerchantStore(store);
destination.setProductOptionSortOrder(source.getOrder());
destination.setProductOptionType(source.getType());
destination.setReadOnly(source.isReadOnly());
return destination;
} catch (Exception e) {
throw new ServiceRuntimeException("Error while converting product option", e);
}
}
use of com.salesmanager.core.model.catalog.product.attribute.ProductOptionDescription in project shopizer by shopizer-ecommerce.
the class CategoryFacadeImpl method categoryProductVariants.
@Override
public List<ReadableProductVariant> categoryProductVariants(Long categoryId, MerchantStore store, Language language) {
Category category = categoryService.getById(categoryId, store.getId());
List<ReadableProductVariant> variants = new ArrayList<ReadableProductVariant>();
if (category == null) {
throw new ResourceNotFoundException("Category [" + categoryId + "] not found");
}
try {
List<ProductAttribute> attributes = productAttributeService.getProductAttributesByCategoryLineage(store, category.getLineage(), language);
/**
* Option NAME OptionValueName OptionValueName
*/
Map<String, List<com.salesmanager.shop.model.catalog.product.attribute.ProductOptionValue>> rawFacet = new HashMap<String, List<com.salesmanager.shop.model.catalog.product.attribute.ProductOptionValue>>();
Map<String, ProductOption> references = new HashMap<String, ProductOption>();
for (ProductAttribute attr : attributes) {
references.put(attr.getProductOption().getCode(), attr.getProductOption());
List<com.salesmanager.shop.model.catalog.product.attribute.ProductOptionValue> values = rawFacet.get(attr.getProductOption().getCode());
if (values == null) {
values = new ArrayList<com.salesmanager.shop.model.catalog.product.attribute.ProductOptionValue>();
rawFacet.put(attr.getProductOption().getCode(), values);
}
if (attr.getProductOptionValue() != null) {
Optional<ProductOptionValueDescription> desc = attr.getProductOptionValue().getDescriptions().stream().filter(o -> o.getLanguage().getId() == language.getId()).findFirst();
com.salesmanager.shop.model.catalog.product.attribute.ProductOptionValue val = new com.salesmanager.shop.model.catalog.product.attribute.ProductOptionValue();
val.setCode(attr.getProductOption().getCode());
String order = attr.getAttributeSortOrder();
val.setSortOrder(order == null ? attr.getId().intValue() : Integer.parseInt(attr.getAttributeSortOrder()));
if (desc.isPresent()) {
val.setName(desc.get().getName());
} else {
val.setName(attr.getProductOption().getCode());
}
values.add(val);
}
}
// for each reference set Option
Iterator<Entry<String, ProductOption>> it = references.entrySet().iterator();
while (it.hasNext()) {
@SuppressWarnings("rawtypes") Map.Entry pair = (Map.Entry) it.next();
ProductOption option = (ProductOption) pair.getValue();
List<com.salesmanager.shop.model.catalog.product.attribute.ProductOptionValue> values = rawFacet.get(option.getCode());
ReadableProductVariant productVariant = new ReadableProductVariant();
Optional<ProductOptionDescription> optionDescription = option.getDescriptions().stream().filter(o -> o.getLanguage().getId() == language.getId()).findFirst();
if (optionDescription.isPresent()) {
productVariant.setName(optionDescription.get().getName());
productVariant.setId(optionDescription.get().getId());
productVariant.setCode(optionDescription.get().getProductOption().getCode());
List<ReadableProductVariantValue> optionValues = new ArrayList<ReadableProductVariantValue>();
for (com.salesmanager.shop.model.catalog.product.attribute.ProductOptionValue value : values) {
ReadableProductVariantValue v = new ReadableProductVariantValue();
v.setCode(value.getCode());
v.setName(value.getName());
v.setDescription(value.getName());
v.setOption(option.getId());
v.setValue(value.getId());
v.setOrder(option.getProductOptionSortOrder());
optionValues.add(v);
}
Comparator<ReadableProductVariantValue> orderComparator = Comparator.comparingInt(ReadableProductVariantValue::getOrder);
// Arrays.sort(employees, employeeSalaryComparator);
List<ReadableProductVariantValue> readableValues = optionValues.stream().sorted(orderComparator).collect(Collectors.toList());
// sort by name
// remove duplicates
readableValues = optionValues.stream().distinct().collect(Collectors.toList());
readableValues.sort(Comparator.comparing(ReadableProductVariantValue::getName));
productVariant.setOptions(readableValues);
variants.add(productVariant);
}
}
return variants;
} catch (Exception e) {
throw new ServiceRuntimeException("An error occured while retrieving ProductAttributes", e);
}
}
use of com.salesmanager.core.model.catalog.product.attribute.ProductOptionDescription in project shopizer by shopizer-ecommerce.
the class ShoppingCartDataPopulator method populate.
@Override
public ShoppingCartData populate(final ShoppingCart shoppingCart, final ShoppingCartData cart, final MerchantStore store, final Language language) {
Validate.notNull(shoppingCart, "Requires ShoppingCart");
Validate.notNull(language, "Requires Language not null");
int cartQuantity = 0;
cart.setCode(shoppingCart.getShoppingCartCode());
Set<com.salesmanager.core.model.shoppingcart.ShoppingCartItem> items = shoppingCart.getLineItems();
List<ShoppingCartItem> shoppingCartItemsList = Collections.emptyList();
try {
if (items != null) {
shoppingCartItemsList = new ArrayList<ShoppingCartItem>();
for (com.salesmanager.core.model.shoppingcart.ShoppingCartItem item : items) {
ShoppingCartItem shoppingCartItem = new ShoppingCartItem();
shoppingCartItem.setCode(cart.getCode());
shoppingCartItem.setProductCode(item.getProduct().getSku());
shoppingCartItem.setProductVirtual(item.isProductVirtual());
shoppingCartItem.setProductId(item.getProductId());
shoppingCartItem.setId(item.getId());
String itemName = item.getProduct().getProductDescription().getName();
if (!CollectionUtils.isEmpty(item.getProduct().getDescriptions())) {
for (ProductDescription productDescription : item.getProduct().getDescriptions()) {
if (language != null && language.getId().intValue() == productDescription.getLanguage().getId().intValue()) {
itemName = productDescription.getName();
break;
}
}
}
shoppingCartItem.setName(itemName);
shoppingCartItem.setPrice(pricingService.getDisplayAmount(item.getItemPrice(), store));
shoppingCartItem.setQuantity(item.getQuantity());
cartQuantity = cartQuantity + item.getQuantity();
shoppingCartItem.setProductPrice(item.getItemPrice());
shoppingCartItem.setSubTotal(pricingService.getDisplayAmount(item.getSubTotal(), store));
ProductImage image = item.getProduct().getProductImage();
if (image != null && imageUtils != null) {
String imagePath = imageUtils.buildProductImageUtils(store, item.getProduct().getSku(), image.getProductImage());
shoppingCartItem.setImage(imagePath);
}
Set<com.salesmanager.core.model.shoppingcart.ShoppingCartAttributeItem> attributes = item.getAttributes();
if (attributes != null) {
List<ShoppingCartAttribute> cartAttributes = new ArrayList<ShoppingCartAttribute>();
for (com.salesmanager.core.model.shoppingcart.ShoppingCartAttributeItem attribute : attributes) {
ShoppingCartAttribute cartAttribute = new ShoppingCartAttribute();
cartAttribute.setId(attribute.getId());
cartAttribute.setAttributeId(attribute.getProductAttributeId());
cartAttribute.setOptionId(attribute.getProductAttribute().getProductOption().getId());
cartAttribute.setOptionValueId(attribute.getProductAttribute().getProductOptionValue().getId());
List<ProductOptionDescription> optionDescriptions = attribute.getProductAttribute().getProductOption().getDescriptionsSettoList();
List<ProductOptionValueDescription> optionValueDescriptions = attribute.getProductAttribute().getProductOptionValue().getDescriptionsSettoList();
if (!CollectionUtils.isEmpty(optionDescriptions) && !CollectionUtils.isEmpty(optionValueDescriptions)) {
String optionName = optionDescriptions.get(0).getName();
String optionValue = optionValueDescriptions.get(0).getName();
for (ProductOptionDescription optionDescription : optionDescriptions) {
if (optionDescription.getLanguage() != null && optionDescription.getLanguage().getId().intValue() == language.getId().intValue()) {
optionName = optionDescription.getName();
break;
}
}
for (ProductOptionValueDescription optionValueDescription : optionValueDescriptions) {
if (optionValueDescription.getLanguage() != null && optionValueDescription.getLanguage().getId().intValue() == language.getId().intValue()) {
optionValue = optionValueDescription.getName();
break;
}
}
cartAttribute.setOptionName(optionName);
cartAttribute.setOptionValue(optionValue);
cartAttributes.add(cartAttribute);
}
}
shoppingCartItem.setShoppingCartAttributes(cartAttributes);
}
shoppingCartItemsList.add(shoppingCartItem);
}
}
if (CollectionUtils.isNotEmpty(shoppingCartItemsList)) {
cart.setShoppingCartItems(shoppingCartItemsList);
}
if (shoppingCart.getOrderId() != null) {
cart.setOrderId(shoppingCart.getOrderId());
}
OrderSummary summary = new OrderSummary();
List<com.salesmanager.core.model.shoppingcart.ShoppingCartItem> productsList = new ArrayList<com.salesmanager.core.model.shoppingcart.ShoppingCartItem>();
productsList.addAll(shoppingCart.getLineItems());
summary.setProducts(productsList.stream().filter(p -> p.getProduct().isAvailable()).collect(Collectors.toList()));
OrderTotalSummary orderSummary = shoppingCartCalculationService.calculate(shoppingCart, store, language);
if (CollectionUtils.isNotEmpty(orderSummary.getTotals())) {
List<OrderTotal> totals = new ArrayList<OrderTotal>();
for (com.salesmanager.core.model.order.OrderTotal t : orderSummary.getTotals()) {
OrderTotal total = new OrderTotal();
total.setCode(t.getOrderTotalCode());
total.setText(t.getText());
total.setValue(t.getValue());
totals.add(total);
}
cart.setTotals(totals);
}
cart.setSubTotal(pricingService.getDisplayAmount(orderSummary.getSubTotal(), store));
cart.setTotal(pricingService.getDisplayAmount(orderSummary.getTotal(), store));
cart.setQuantity(cartQuantity);
cart.setId(shoppingCart.getId());
} catch (ServiceException ex) {
LOG.error("Error while converting cart Model to cart Data.." + ex);
throw new ConversionException("Unable to create cart data", ex);
}
return cart;
}
use of com.salesmanager.core.model.catalog.product.attribute.ProductOptionDescription in project shopizer by shopizer-ecommerce.
the class ReadableProductPopulator method populate.
@Override
public ReadableProduct populate(Product source, ReadableProduct target, MerchantStore store, Language language) throws ConversionException {
Validate.notNull(pricingService, "Requires to set PricingService");
Validate.notNull(imageUtils, "Requires to set imageUtils");
try {
List<com.salesmanager.shop.model.catalog.product.ProductDescription> fulldescriptions = new ArrayList<com.salesmanager.shop.model.catalog.product.ProductDescription>();
if (language == null) {
target = new ReadableProductFull();
}
if (target == null) {
target = new ReadableProduct();
}
ProductDescription description = source.getProductDescription();
if (source.getDescriptions() != null && source.getDescriptions().size() > 0) {
for (ProductDescription desc : source.getDescriptions()) {
if (language != null && desc.getLanguage() != null && desc.getLanguage().getId().intValue() == language.getId().intValue()) {
description = desc;
break;
} else {
fulldescriptions.add(populateDescription(desc));
}
}
}
if (target instanceof ReadableProductFull) {
((ReadableProductFull) target).setDescriptions(fulldescriptions);
}
if (language == null) {
language = store.getDefaultLanguage();
}
final Language lang = language;
target.setId(source.getId());
target.setAvailable(source.isAvailable());
target.setProductShipeable(source.isProductShipeable());
ProductSpecification specifications = new ProductSpecification();
specifications.setHeight(source.getProductHeight());
specifications.setLength(source.getProductLength());
specifications.setWeight(source.getProductWeight());
specifications.setWidth(source.getProductWidth());
target.setProductSpecifications(specifications);
target.setPreOrder(source.isPreOrder());
target.setRefSku(source.getRefSku());
target.setSortOrder(source.getSortOrder());
if (source.getType() != null) {
target.setType(this.type(source.getType(), language));
}
if (source.getOwner() != null) {
RentalOwner owner = new RentalOwner();
owner.setId(source.getOwner().getId());
owner.setEmailAddress(source.getOwner().getEmailAddress());
owner.setFirstName(source.getOwner().getBilling().getFirstName());
owner.setLastName(source.getOwner().getBilling().getLastName());
com.salesmanager.shop.model.customer.address.Address address = new com.salesmanager.shop.model.customer.address.Address();
address.setAddress(source.getOwner().getBilling().getAddress());
address.setBillingAddress(true);
address.setCity(source.getOwner().getBilling().getCity());
address.setCompany(source.getOwner().getBilling().getCompany());
address.setCountry(source.getOwner().getBilling().getCountry().getIsoCode());
address.setZone(source.getOwner().getBilling().getZone().getCode());
address.setLatitude(source.getOwner().getBilling().getLatitude());
address.setLongitude(source.getOwner().getBilling().getLongitude());
address.setPhone(source.getOwner().getBilling().getTelephone());
address.setPostalCode(source.getOwner().getBilling().getPostalCode());
owner.setAddress(address);
target.setOwner(owner);
}
if (source.getDateAvailable() != null) {
target.setDateAvailable(DateUtil.formatDate(source.getDateAvailable()));
}
if (source.getAuditSection() != null) {
target.setCreationDate(DateUtil.formatDate(source.getAuditSection().getDateCreated()));
}
/* if(source.getProductReviewAvg()!=null) {
double avg = source.getProductReviewAvg().doubleValue();
double rating = Math.round(avg * 2) / 2.0f;
target.setRating(rating);
}*/
target.setProductVirtual(source.getProductVirtual());
/* if(source.getProductReviewCount()!=null) {
target.setRatingCount(source.getProductReviewCount().intValue());
}*/
if (description != null) {
com.salesmanager.shop.model.catalog.product.ProductDescription tragetDescription = populateDescription(description);
target.setDescription(tragetDescription);
}
if (source.getManufacturer() != null) {
ManufacturerDescription manufacturer = source.getManufacturer().getDescriptions().iterator().next();
ReadableManufacturer manufacturerEntity = new ReadableManufacturer();
com.salesmanager.shop.model.catalog.manufacturer.ManufacturerDescription d = new com.salesmanager.shop.model.catalog.manufacturer.ManufacturerDescription();
d.setName(manufacturer.getName());
manufacturerEntity.setDescription(d);
manufacturerEntity.setId(source.getManufacturer().getId());
manufacturerEntity.setOrder(source.getManufacturer().getOrder());
manufacturerEntity.setCode(source.getManufacturer().getCode());
target.setManufacturer(manufacturerEntity);
}
/* if(source.getType() != null) {
ReadableProductType type = new ReadableProductType();
type.setId(source.getType().getId());
type.setCode(source.getType().getCode());
type.setName(source.getType().getCode());//need name
target.setType(type);
}*/
/**
* TODO use ProductImageMapper
*/
Set<ProductImage> images = source.getImages();
if (images != null && images.size() > 0) {
List<ReadableImage> imageList = new ArrayList<ReadableImage>();
String contextPath = imageUtils.getContextPath();
for (ProductImage img : images) {
ReadableImage prdImage = new ReadableImage();
prdImage.setImageName(img.getProductImage());
prdImage.setDefaultImage(img.isDefaultImage());
prdImage.setOrder(img.getSortOrder() != null ? img.getSortOrder().intValue() : 0);
if (img.getImageType() == 1 && img.getProductImageUrl() != null) {
prdImage.setImageUrl(img.getProductImageUrl());
} else {
StringBuilder imgPath = new StringBuilder();
imgPath.append(contextPath).append(imageUtils.buildProductImageUtils(store, source.getSku(), img.getProductImage()));
prdImage.setImageUrl(imgPath.toString());
}
prdImage.setId(img.getId());
prdImage.setImageType(img.getImageType());
if (img.getProductImageUrl() != null) {
prdImage.setExternalUrl(img.getProductImageUrl());
}
if (img.getImageType() == 1 && img.getProductImageUrl() != null) {
// video
prdImage.setVideoUrl(img.getProductImageUrl());
}
if (prdImage.isDefaultImage()) {
target.setImage(prdImage);
}
imageList.add(prdImage);
}
imageList = imageList.stream().sorted(Comparator.comparingInt(ReadableImage::getOrder)).collect(Collectors.toList());
target.setImages(imageList);
}
if (!CollectionUtils.isEmpty(source.getCategories())) {
ReadableCategoryPopulator categoryPopulator = new ReadableCategoryPopulator();
List<ReadableCategory> categoryList = new ArrayList<ReadableCategory>();
for (Category category : source.getCategories()) {
ReadableCategory readableCategory = new ReadableCategory();
categoryPopulator.populate(category, readableCategory, store, language);
categoryList.add(readableCategory);
}
target.setCategories(categoryList);
}
if (!CollectionUtils.isEmpty(source.getAttributes())) {
Set<ProductAttribute> attributes = source.getAttributes();
// split read only and options
// Map<Long,ReadableProductAttribute> readOnlyAttributes = null;
Map<Long, ReadableProductProperty> properties = null;
Map<Long, ReadableProductOption> selectableOptions = null;
if (!CollectionUtils.isEmpty(attributes)) {
for (ProductAttribute attribute : attributes) {
ReadableProductOption opt = null;
ReadableProductAttribute attr = null;
ReadableProductProperty property = null;
ReadableProductPropertyValue propertyValue = null;
ReadableProductOptionValueEntity optValue = new ReadableProductOptionValueEntity();
ReadableProductAttributeValue attrValue = new ReadableProductAttributeValue();
ProductOptionValue optionValue = attribute.getProductOptionValue();
if (attribute.getAttributeDisplayOnly()) {
// read only attribute = property
/*
if(readOnlyAttributes==null) {
readOnlyAttributes = new TreeMap<Long,ReadableProductAttribute>();
}
attr = readOnlyAttributes.get(attribute.getProductOption().getId());
if(attr==null) {
attr = createAttribute(attribute, language);
}
if(attr!=null) {
readOnlyAttributes.put(attribute.getProductOption().getId(), attr);
}
attrValue.setDefaultValue(attribute.getAttributeDefault());
if(attribute.getProductOptionValue()!=null) {
attrValue.setId(attribute.getProductOptionValue().getId());//id of the option value
} else {
attrValue.setId(attribute.getId());
}
attrValue.setLang(language.getCode());
attrValue.setSortOrder(0);
if(attribute.getProductOptionSortOrder()!=null) {
attrValue.setSortOrder(attribute.getProductOptionSortOrder().intValue());
}
List<ProductOptionValueDescription> podescriptions = optionValue.getDescriptionsSettoList();
ProductOptionValueDescription podescription = null;
if(podescriptions!=null && podescriptions.size()>0) {
podescription = podescriptions.get(0);
if(podescriptions.size()>1) {
for(ProductOptionValueDescription optionValueDescription : podescriptions) {
if(optionValueDescription.getLanguage().getId().intValue()==language.getId().intValue()) {
podescription = optionValueDescription;
break;
}
}
}
}
attrValue.setName(podescription.getName());
attrValue.setDescription(podescription.getDescription());
if(attr!=null) {
attr.getAttributeValues().add(attrValue);
}
*/
// if(properties==null) {
// properties = new TreeMap<Long,ReadableProductProperty>();
// }
// property = properties.get(attribute.getProductOption().getId());
// if(property==null) {
property = createProperty(attribute, language);
// that is the property
ReadableProductOption readableOption = new ReadableProductOption();
ReadableProductPropertyValue readableOptionValue = new ReadableProductPropertyValue();
readableOption.setCode(attribute.getProductOption().getCode());
readableOption.setId(attribute.getProductOption().getId());
Set<ProductOptionDescription> podescriptions = attribute.getProductOption().getDescriptions();
if (podescriptions != null && podescriptions.size() > 0) {
for (ProductOptionDescription optionDescription : podescriptions) {
if (optionDescription.getLanguage().getCode().equals(language.getCode())) {
readableOption.setName(optionDescription.getName());
}
}
}
property.setProperty(readableOption);
Set<ProductOptionValueDescription> povdescriptions = attribute.getProductOptionValue().getDescriptions();
readableOptionValue.setId(attribute.getProductOptionValue().getId());
if (povdescriptions != null && povdescriptions.size() > 0) {
for (ProductOptionValueDescription optionValueDescription : povdescriptions) {
if (optionValueDescription.getLanguage().getCode().equals(language.getCode())) {
readableOptionValue.setName(optionValueDescription.getName());
}
}
}
property.setPropertyValue(readableOptionValue);
// } else{
// properties.put(attribute.getProductOption().getId(), property);
// }
/* propertyValue.setCode(attribute.getProductOptionValue().getCode());
propertyValue.setId(attribute.getProductOptionValue().getId());
propertyValue.setSortOrder(0);
if(attribute.getProductOptionSortOrder()!=null) {
propertyValue.setSortOrder(attribute.getProductOptionSortOrder().intValue());
}
List<ProductOptionValueDescription> podescriptions = optionValue.getDescriptionsSettoList();
if(podescriptions!=null && podescriptions.size()>0) {
for(ProductOptionValueDescription optionValueDescription : podescriptions) {
com.salesmanager.shop.model.catalog.product.attribute.ProductOptionValueDescription desc = new com.salesmanager.shop.model.catalog.product.attribute.ProductOptionValueDescription();
desc.setId(optionValueDescription.getId());
desc.setName(optionValueDescription.getName());
propertyValue.getValues().add(desc);
}
}
property.setPropertyValue(propertyValue);*/
// if(attr!=null) {
// attr.getAttributeValues().add(attrValue);
// }
target.getProperties().add(property);
} else {
if (selectableOptions == null) {
selectableOptions = new TreeMap<Long, ReadableProductOption>();
}
opt = selectableOptions.get(attribute.getProductOption().getId());
if (opt == null) {
opt = createOption(attribute, language);
}
if (opt != null) {
selectableOptions.put(attribute.getProductOption().getId(), opt);
}
optValue.setDefaultValue(attribute.getAttributeDefault());
// optValue.setId(attribute.getProductOptionValue().getId());
optValue.setId(attribute.getId());
optValue.setCode(attribute.getProductOptionValue().getCode());
com.salesmanager.shop.model.catalog.product.attribute.ProductOptionValueDescription valueDescription = new com.salesmanager.shop.model.catalog.product.attribute.ProductOptionValueDescription();
valueDescription.setLanguage(language.getCode());
// optValue.setLang(language.getCode());
if (attribute.getProductAttributePrice() != null && attribute.getProductAttributePrice().doubleValue() > 0) {
String formatedPrice = pricingService.getDisplayAmount(attribute.getProductAttributePrice(), store);
optValue.setPrice(formatedPrice);
}
if (!StringUtils.isBlank(attribute.getProductOptionValue().getProductOptionValueImage())) {
optValue.setImage(imageUtils.buildProductPropertyImageUtils(store, attribute.getProductOptionValue().getProductOptionValueImage()));
}
optValue.setSortOrder(0);
if (attribute.getProductOptionSortOrder() != null) {
optValue.setSortOrder(attribute.getProductOptionSortOrder().intValue());
}
List<ProductOptionValueDescription> podescriptions = optionValue.getDescriptionsSettoList();
ProductOptionValueDescription podescription = null;
if (podescriptions != null && podescriptions.size() > 0) {
podescription = podescriptions.get(0);
if (podescriptions.size() > 1) {
for (ProductOptionValueDescription optionValueDescription : podescriptions) {
if (optionValueDescription.getLanguage().getId().intValue() == language.getId().intValue()) {
podescription = optionValueDescription;
break;
}
}
}
}
valueDescription.setName(podescription.getName());
valueDescription.setDescription(podescription.getDescription());
optValue.setDescription(valueDescription);
if (opt != null) {
opt.getOptionValues().add(optValue);
}
}
}
}
if (selectableOptions != null) {
List<ReadableProductOption> options = new ArrayList<ReadableProductOption>(selectableOptions.values());
target.setOptions(options);
}
}
// remove products from invisible category -> set visible = false
/* Set<Category> categories = source.getCategories();
boolean isVisible = true;
if(!CollectionUtils.isEmpty(categories)) {
for(Category c : categories) {
if(c.isVisible()) {
isVisible = true;
break;
} else {
isVisible = false;
}
}
}*/
// target.setVisible(isVisible);
// availability
ProductAvailability availability = null;
for (ProductAvailability a : source.getAvailabilities()) {
// TODO validate region
// if(availability.getRegion().equals(Constants.ALL_REGIONS)) {//TODO REL 2.1 accept a region
availability = a;
target.setQuantity(availability.getProductQuantity() == null ? 1 : availability.getProductQuantity());
target.setQuantityOrderMaximum(availability.getProductQuantityOrderMax() == null ? 1 : availability.getProductQuantityOrderMax());
target.setQuantityOrderMinimum(availability.getProductQuantityOrderMin() == null ? 1 : availability.getProductQuantityOrderMin());
if (availability.getProductQuantity().intValue() > 0 && target.isAvailable()) {
target.setCanBePurchased(true);
}
// }
}
target.setSku(source.getSku());
FinalPrice price = pricingService.calculateProductPrice(source);
if (price != null) {
target.setFinalPrice(pricingService.getDisplayAmount(price.getFinalPrice(), store));
target.setPrice(price.getFinalPrice());
target.setOriginalPrice(pricingService.getDisplayAmount(price.getOriginalPrice(), store));
if (price.isDiscounted()) {
target.setDiscounted(true);
}
// price appender
if (availability != null) {
Set<ProductPrice> prices = availability.getPrices();
if (!CollectionUtils.isEmpty(prices)) {
ReadableProductPrice readableProductPrice = new ReadableProductPrice();
readableProductPrice.setDiscounted(target.isDiscounted());
readableProductPrice.setFinalPrice(target.getFinalPrice());
readableProductPrice.setOriginalPrice(target.getOriginalPrice());
Optional<ProductPrice> pr = prices.stream().filter(p -> p.getCode().equals(ProductPrice.DEFAULT_PRICE_CODE)).findFirst();
target.setProductPrice(readableProductPrice);
if (pr.isPresent()) {
readableProductPrice.setId(pr.get().getId());
Optional<ProductPriceDescription> d = pr.get().getDescriptions().stream().filter(desc -> desc.getLanguage().getCode().equals(lang.getCode())).findFirst();
if (d.isPresent()) {
com.salesmanager.shop.model.catalog.product.ProductPriceDescription priceDescription = new com.salesmanager.shop.model.catalog.product.ProductPriceDescription();
priceDescription.setLanguage(language.getCode());
priceDescription.setId(d.get().getId());
priceDescription.setPriceAppender(d.get().getPriceAppender());
readableProductPrice.setDescription(priceDescription);
}
}
}
}
}
if (target instanceof ReadableProductFull) {
((ReadableProductFull) target).setDescriptions(fulldescriptions);
}
return target;
} catch (Exception e) {
throw new ConversionException(e);
}
}
Aggregations