/* * Copyright 2011-2014 the original author or authors. * * Licensed 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. */ package pl.com.bottega.ecommerce.sales.domain.offer; import pl.com.bottega.ddd.annotations.domain.ValueObject; import pl.com.bottega.ecommerce.sales.domain.productscatalog.ProductData; import pl.com.bottega.ecommerce.sharedkernel.Money; @ValueObject public class OfferItem { private ProductData productData; private int quantity; private Discount discount; private Money totalCost; public OfferItem(ProductData productData, int quantity) { this(productData, quantity, null); } public OfferItem(ProductData productData, int quantity, Discount discount) { this.productData = productData; this.quantity = quantity; this.discount = discount; Money discountValue = Money.ZERO; if (discount != null) discountValue = discountValue.subtract(discount.getValue()); this.totalCost = productData.getPrice().multiplyBy(quantity).subtract(discountValue); } public ProductData getProductData() { return productData; } public Money getTotalCost() { return totalCost; } public Discount getDiscount() { return discount; } public int getQuantity() { return quantity; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((discount == null) ? 0 : discount.hashCode()); result = prime * result + ((productData == null) ? 0 : productData.hashCode()); result = prime * result + quantity; result = prime * result + ((totalCost == null) ? 0 : totalCost.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; OfferItem other = (OfferItem) obj; if (discount == null) { if (other.discount != null) return false; } else if (!discount.equals(other.discount)) return false; if (productData == null) { if (other.productData != null) return false; } else if (!productData.equals(other.productData)) return false; if (quantity != other.quantity) return false; if (totalCost == null) { if (other.totalCost != null) return false; } else if (!totalCost.equals(other.totalCost)) return false; return true; } /** * * @param item * @param delta acceptable percentage difference * @return */ public boolean sameAs(OfferItem item, double delta) { if (! productData.equals(item.productData)) return false; if (quantity != item.quantity) return false; Money max, min; if (totalCost.greaterThan(item.totalCost)){ max = totalCost; min = item.totalCost; } else{ max = item.totalCost; min = totalCost; } Money difference = max.subtract(min); Money acceptableDelta = max.multiplyBy(delta / 100); return acceptableDelta.greaterThan(difference); } }