Dépôt officiel du code source de l'ERP OpenConcerto
Rev 93 | Rev 156 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 2011 OpenConcerto, by ILM Informatique. All rights reserved.
*
* The contents of this file are subject to the terms of the GNU General Public License Version 3
* only ("GPL"). You may not use this file except in compliance with the License. You can obtain a
* copy of the License at http://www.gnu.org/licenses/gpl-3.0.html See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each file.
*/
package org.openconcerto.erp.core.sales.product.model;
import org.openconcerto.erp.core.sales.product.model.ProductHelper.SupplierPriceField;
import org.openconcerto.sql.model.SQLRow;
import org.openconcerto.sql.model.SQLRowAccessor;
import org.openconcerto.sql.model.SQLTable;
import org.openconcerto.utils.DecimalUtils;
import java.math.BigDecimal;
import java.math.RoundingMode;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Collection;
import java.util.Date;
import java.util.List;
public class ProductComponent {
private final SQLRowAccessor product;
private BigDecimal qty;
private final ProductHelper helper;
public ProductComponent(SQLRowAccessor product, BigDecimal qty) {
this.product = product;
this.qty = qty;
this.helper = new ProductHelper(product.getTable().getDBRoot());
}
public SQLRowAccessor getProduct() {
return product;
}
public BigDecimal getQty() {
return qty;
}
public void setQty(BigDecimal qty) {
this.qty = qty;
}
public void addQty(BigDecimal b) {
this.qty = qty.add(b);
}
/**
* permet de valoriser les mouvements de stocks
*
* @return
*/
public BigDecimal getPRC(Date d) {
if (product.getTable().getDBRoot().contains("ARTICLE_PRIX_REVIENT")) {
BigDecimal result = null;
{
SQLTable table = product.getTable().getDBRoot().getTable("ARTICLE_PRIX_REVIENT");
Collection<SQLRow> prcs = product.asRow().getReferentRows(table);
Date lastDate = null;
final List<PriceByQty> prices = new ArrayList<PriceByQty>();
for (SQLRow row : prcs) {
Calendar date = Calendar.getInstance();
if (row.getObject("DATE") != null) {
date = row.getDate("DATE");
lastDate = date.getTime();
}
prices.add(new PriceByQty(row.getLong("QTE"), row.getBigDecimal("PRIX"), date.getTime()));
}
result = PriceByQty.getPriceForQty(qty.setScale(0, RoundingMode.HALF_UP).intValue(), prices, d);
if (result == null) {
result = PriceByQty.getPriceForQty(qty.setScale(0, RoundingMode.HALF_UP).intValue(), prices, lastDate);
}
}
if (result == null) {
SQLTable tableATF = product.getTable().getDBRoot().getTable("ARTICLE_TARIF_FOURNISSEUR");
Collection<SQLRow> atfs = product.asRow().getReferentRows(tableATF);
Date lastDateATF = null;
final List<PriceByQty> pricesATF = new ArrayList<PriceByQty>();
for (SQLRow row : atfs) {
Calendar date = Calendar.getInstance();
if (row.getObject("DATE_PRIX") != null) {
date = row.getDate("DATE_PRIX");
lastDateATF = date.getTime();
}
pricesATF.add(new PriceByQty(row.getLong("QTE"), this.helper.getEnumPrice(row, SupplierPriceField.COEF_TRANSPORT_SIEGE), date.getTime()));
}
result = PriceByQty.getPriceForQty(qty.setScale(0, RoundingMode.HALF_UP).intValue(), pricesATF, d);
if (result == null) {
result = PriceByQty.getPriceForQty(qty.setScale(0, RoundingMode.HALF_UP).intValue(), pricesATF, lastDateATF);
if (result == null) {
// Can occur during editing
result = BigDecimal.ZERO;
}
}
}
return result;
}
return null;
}
public static ProductComponent createFrom(SQLRowAccessor rowVals) {
return createFrom(rowVals, 1);
}
public static ProductComponent createFrom(SQLRowAccessor rowVals, int qteMultiple) {
final int qteMult = (rowVals.getTable().getName().equalsIgnoreCase("BON_DE_LIVRAISON_ELEMENT") ? rowVals.getInt("QTE_LIVREE") : rowVals.getInt("QTE"));
final int qte = qteMult * qteMultiple;
final BigDecimal qteUV = rowVals.getBigDecimal("QTE_UNITAIRE");
BigDecimal qteFinal = qteUV.multiply(new BigDecimal(qte), DecimalUtils.HIGH_PRECISION);
return new ProductComponent(rowVals.getForeign("ID_ARTICLE"), qteFinal);
}
}