/****************************************************************************** * Product: Adempiere ERP & CRM Smart Business Solution * * Copyright (C) 1999-2006 ComPiere, Inc. All Rights Reserved. * * This program is free software; you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * * that it will be useful, but WITHOUT ANY WARRANTY; without even the implied * * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * * with this program; if not, write to the Free Software Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * * For the text or an alternative of this public license, you may reach us * * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * * or via info@compiere.org or http://www.compiere.org/license.html * *****************************************************************************/ package org.compiere.model; import java.math.BigDecimal; import java.math.RoundingMode; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.util.ArrayList; import java.util.Arrays; import java.util.Properties; import java.util.logging.Level; import org.compiere.util.DB; import org.compiere.util.Env; import org.compiere.util.TimeUtil; import org.compiere.util.Util; import org.idempiere.cache.ImmutableIntPOCache; import org.idempiere.cache.ImmutablePOSupport; /** * Discount Schema Model * * @author Jorg Janke * @version $Id: MDiscountSchema.java,v 1.3 2006/07/30 00:51:04 jjanke Exp $ */ public class MDiscountSchema extends X_M_DiscountSchema implements ImmutablePOSupport { /** * generated serial id */ private static final long serialVersionUID = 4916780751688051566L; /** * Get Discount Schema from Cache (immutable) * @param M_DiscountSchema_ID id * @return MDiscountSchema */ public static MDiscountSchema get (int M_DiscountSchema_ID) { return get(Env.getCtx(), M_DiscountSchema_ID); } /** * Get Discount Schema from Cache (immutable) * @param ctx context * @param M_DiscountSchema_ID id * @return MDiscountSchema */ public static MDiscountSchema get (Properties ctx, int M_DiscountSchema_ID) { Integer key = Integer.valueOf(M_DiscountSchema_ID); MDiscountSchema retValue = s_cache.get (ctx, key, e -> new MDiscountSchema(ctx, e)); if (retValue != null) return retValue; retValue = new MDiscountSchema (ctx, M_DiscountSchema_ID, (String)null); if (retValue.get_ID () == M_DiscountSchema_ID) { s_cache.put (key, retValue, e -> new MDiscountSchema(Env.getCtx(), e)); return retValue; } return null; } // get /** Cache */ private static ImmutableIntPOCache s_cache = new ImmutableIntPOCache(Table_Name, 20); /** * UUID based Constructor * @param ctx Context * @param M_DiscountSchema_UU UUID key * @param trxName Transaction */ public MDiscountSchema(Properties ctx, String M_DiscountSchema_UU, String trxName) { super(ctx, M_DiscountSchema_UU, trxName); if (Util.isEmpty(M_DiscountSchema_UU)) setInitialDefaults(); } /** * Standard Constructor * @param ctx context * @param M_DiscountSchema_ID id * @param trxName transaction */ public MDiscountSchema (Properties ctx, int M_DiscountSchema_ID, String trxName) { super (ctx, M_DiscountSchema_ID, trxName); if (M_DiscountSchema_ID == 0) setInitialDefaults(); } // MDiscountSchema /** * Set the initial defaults for a new record */ private void setInitialDefaults() { setDiscountType (DISCOUNTTYPE_FlatPercent); setFlatDiscount(Env.ZERO); setIsBPartnerFlatDiscount (false); setIsQuantityBased (true); // Y setCumulativeLevel(CUMULATIVELEVEL_Line); } /** * Load Constructor * @param ctx context * @param rs result set * @param trxName transaction */ public MDiscountSchema (Properties ctx, ResultSet rs, String trxName) { super(ctx, rs, trxName); } // MDiscountSchema /** * Copy constructor * @param copy */ public MDiscountSchema(MDiscountSchema copy) { this(Env.getCtx(), copy); } /** * Copy constructor * @param ctx * @param copy */ public MDiscountSchema(Properties ctx, MDiscountSchema copy) { this(ctx, copy, (String) null); } /** * Copy constructor * @param ctx * @param copy * @param trxName */ public MDiscountSchema(Properties ctx, MDiscountSchema copy, String trxName) { this(ctx, 0, trxName); copyPO(copy); this.m_breaks = copy.m_breaks != null ? Arrays.stream(copy.m_breaks).map(e -> {return new MDiscountSchemaBreak(ctx, e, trxName);}).toArray(MDiscountSchemaBreak[]::new) : null; this.m_lines = copy.m_lines != null ? Arrays.stream(copy.m_lines).map(e -> {return new MDiscountSchemaLine(ctx, e, trxName);}).toArray(MDiscountSchemaLine[]::new) : null; } /** Breaks */ private MDiscountSchemaBreak[] m_breaks = null; /** Lines */ private MDiscountSchemaLine[] m_lines = null; /** * Get Breaks * @param reload true to reload from DB * @return breaks */ public MDiscountSchemaBreak[] getBreaks(boolean reload) { if (m_breaks != null && !reload) return m_breaks; String sql = "SELECT * FROM M_DiscountSchemaBreak WHERE M_DiscountSchema_ID=? ORDER BY SeqNo"; ArrayList list = new ArrayList(); PreparedStatement pstmt = null; ResultSet rs = null; try { pstmt = DB.prepareStatement (sql, get_TrxName()); pstmt.setInt (1, getM_DiscountSchema_ID()); rs = pstmt.executeQuery (); while (rs.next ()) { MDiscountSchemaBreak dsb = new MDiscountSchemaBreak(getCtx(), rs, get_TrxName()); if (is_Immutable()) dsb.markImmutable(); list.add(dsb); } } catch (Exception e) { log.log(Level.SEVERE, sql, e); } finally { DB.close(rs, pstmt); rs = null; pstmt = null; } m_breaks = new MDiscountSchemaBreak[list.size ()]; list.toArray (m_breaks); return m_breaks; } // getBreaks /** * Get Lines * @param reload reload * @return lines */ public MDiscountSchemaLine[] getLines(boolean reload) { if (m_lines != null && !reload) { set_TrxName(m_lines, get_TrxName()); return m_lines; } String sql = "SELECT * FROM M_DiscountSchemaLine WHERE M_DiscountSchema_ID=? ORDER BY SeqNo,M_DiscountSchemaLine_ID"; ArrayList list = new ArrayList(); PreparedStatement pstmt = null; ResultSet rs = null; try { pstmt = DB.prepareStatement (sql, get_TrxName()); pstmt.setInt (1, getM_DiscountSchema_ID()); rs = pstmt.executeQuery (); while (rs.next ()) { MDiscountSchemaLine dsl = new MDiscountSchemaLine(getCtx(), rs, get_TrxName()); if (is_Immutable()) dsl.markImmutable(); list.add(dsl); } } catch (Exception e) { log.log(Level.SEVERE, sql, e); } finally { DB.close(rs, pstmt); rs = null; pstmt = null; } m_lines = new MDiscountSchemaLine[list.size ()]; list.toArray (m_lines); return m_lines; } // getBreaks /** * Calculate Discounted Price * @param Qty quantity * @param Price price * @param M_Product_ID product * @param M_Product_Category_ID category * @param BPartnerFlatDiscount flat discount * @return Discounted Price */ public BigDecimal calculatePrice (BigDecimal Qty, BigDecimal Price, int M_Product_ID, int M_Product_Category_ID, BigDecimal BPartnerFlatDiscount) { if (log.isLoggable(Level.FINE)) log.fine("Price=" + Price + ",Qty=" + Qty); if (Price == null || Env.ZERO.compareTo(Price) == 0) return Price; // BigDecimal discount = calculateDiscount(Qty, Price, M_Product_ID, M_Product_Category_ID, BPartnerFlatDiscount); // nothing to calculate if (discount == null || discount.signum() == 0) { BigDecimal fixedPrice = calculateFixedPrice(Qty, Price, M_Product_ID, M_Product_Category_ID); if (fixedPrice != null) return fixedPrice; else return Price; } // BigDecimal newPrice = calculateDiscountedPrice(Price, discount); if (log.isLoggable(Level.FINE)) log.fine("=>" + newPrice); return newPrice; } // calculatePrice /** * Calculate discounted price * @param price input price * @param discount discount percentage, for e.g 5.00 for 5% * @return discounted price */ public static BigDecimal calculateDiscountedPrice(BigDecimal price, BigDecimal discount) { BigDecimal onehundred = Env.ONEHUNDRED; BigDecimal multiplier = (onehundred).subtract(discount); multiplier = multiplier.divide(onehundred, 6, RoundingMode.HALF_UP); BigDecimal newPrice = price.multiply(multiplier); return newPrice; } /** * Calculate Discount Percentage * @param Qty quantity * @param Price price * @param M_Product_ID product * @param M_Product_Category_ID category * @param BPartnerFlatDiscount flat discount * @return discount or zero */ public BigDecimal calculateDiscount (BigDecimal Qty, BigDecimal Price, int M_Product_ID, int M_Product_Category_ID, BigDecimal BPartnerFlatDiscount) { if (BPartnerFlatDiscount == null) BPartnerFlatDiscount = Env.ZERO; // if (DISCOUNTTYPE_FlatPercent.equals(getDiscountType())) { if (isBPartnerFlatDiscount()) return BPartnerFlatDiscount; return getFlatDiscount(); } // Not supported else if (DISCOUNTTYPE_Formula.equals(getDiscountType()) || DISCOUNTTYPE_Pricelist.equals(getDiscountType())) { if (log.isLoggable(Level.INFO)) log.info ("Not supported (yet) DiscountType=" + getDiscountType()); return Env.ZERO; } // Price Breaks getBreaks(false); BigDecimal Amt = Price.multiply(Qty); if (isQuantityBased()) { if (log.isLoggable(Level.FINER)) log.finer("Qty=" + Qty + ",M_Product_ID=" + M_Product_ID + ",M_Product_Category_ID=" + M_Product_Category_ID); } else { if (log.isLoggable(Level.FINER)) log.finer("Amt=" + Amt + ",M_Product_ID=" + M_Product_ID + ",M_Product_Category_ID=" + M_Product_Category_ID); } for (int i = 0; i < m_breaks.length; i++) { MDiscountSchemaBreak br = m_breaks[i]; if (!br.isActive()) continue; if (isQuantityBased()) { if (!br.applies(Qty, M_Product_ID, M_Product_Category_ID)) { if (log.isLoggable(Level.FINER)) log.finer("No: " + br); continue; } if (log.isLoggable(Level.FINER)) log.finer("Yes: " + br); } else { if (!br.applies(Amt, M_Product_ID, M_Product_Category_ID)) { if (log.isLoggable(Level.FINER)) log.finer("No: " + br); continue; } if (log.isLoggable(Level.FINER)) log.finer("Yes: " + br); } // Line applies BigDecimal discount = null; if (br.isBPartnerFlatDiscount()) discount = BPartnerFlatDiscount; else discount = br.getBreakDiscount(); if (log.isLoggable(Level.FINE)) log.fine("Discount=>" + discount); return discount; } // for all breaks return Env.ZERO; } // calculateDiscount /** * Get fix discounted price * @param Qty quantity * @param Price price * @param M_Product_ID product * @param M_Product_Category_ID category * @return fix discounted price or null */ private BigDecimal calculateFixedPrice (BigDecimal Qty, BigDecimal Price, int M_Product_ID, int M_Product_Category_ID) { if (DISCOUNTTYPE_FlatPercent.equals(getDiscountType()) || DISCOUNTTYPE_Formula.equals(getDiscountType()) || DISCOUNTTYPE_Pricelist.equals(getDiscountType())) { return null; } // Price Breaks getBreaks(false); BigDecimal Amt = Price.multiply(Qty); for (int i = 0; i < m_breaks.length; i++) { MDiscountSchemaBreak br = m_breaks[i]; if (!br.isActive()) continue; if (isQuantityBased()) { if (!br.applies(Qty, M_Product_ID, M_Product_Category_ID)) continue; } else { if (!br.applies(Amt, M_Product_ID, M_Product_Category_ID)) continue; } // Line applies if (!br.isBPartnerFlatDiscount()) { if (br.getFixedPrice() != null && br.getFixedPrice().signum() > 0) { return br.getFixedPrice(); } } return null; } // for all breaks return null; } // calculateDiscount /** * Before Save * @param newRecord new * @return true */ @Override protected boolean beforeSave (boolean newRecord) { if (getValidFrom() == null) setValidFrom (TimeUtil.getDay(null)); return true; } // beforeSave /** * Renumber SeqNo * @return lines updated */ public int reSeq() { int count = 0; // Lines MDiscountSchemaLine[] lines = getLines(true); for (int i = 0; i < lines.length; i++) { int line = (i+1) * 10; if (line != lines[i].getSeqNo()) { lines[i].setSeqNo(line); if (lines[i].save()) count++; } } m_lines = null; // Breaks MDiscountSchemaBreak[] breaks = getBreaks(true); for (int i = 0; i < breaks.length; i++) { int line = (i+1) * 10; if (line != breaks[i].getSeqNo()) { breaks[i].setSeqNo(line); if (breaks[i].save()) count++; } } m_breaks = null; return count; } // reSeq @Override public MDiscountSchema markImmutable() { if (is_Immutable()) return this; makeImmutable(); if (m_lines != null) Arrays.stream(m_lines).forEach(e -> {e.markImmutable();}); if (m_breaks != null) Arrays.stream(m_breaks).forEach(e -> {e.markImmutable();}); return this; } } // MDiscountSchema