/*********************************************************************** * This file is part of iDempiere ERP Open Source * * http://www.idempiere.org * * * * Copyright (C) Contributors * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License * * as published by the Free Software Foundation; either version 2 * * of the License, or (at your option) any later version. * * * * 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., 51 Franklin Street, Fifth Floor, Boston, * * MA 02110-1301, USA. * **********************************************************************/ package org.compiere.acct; import java.math.BigDecimal; import java.sql.ResultSet; import java.util.ArrayList; import org.compiere.model.MAccount; import org.compiere.model.MAcctSchema; import org.compiere.model.MAssetAcct; import org.compiere.model.MAssetChange; import org.compiere.model.MAssetDisposed; import org.compiere.model.MDocType; import org.compiere.util.Env; /** * Posting for {@link MAssetDisposed} document. DOCBASETYPE_GLDocument. * @author Teo_Sarca, SC ARHIPAC SERVICE SRL */ public class Doc_AssetDisposed extends Doc { /** * @param as * @param rs * @param trxName */ public Doc_AssetDisposed (MAcctSchema as, ResultSet rs, String trxName) { super(as, MAssetDisposed.class, rs, MDocType.DOCBASETYPE_GLDocument, trxName); } @Override protected String loadDocumentDetails() { return null; } @Override public BigDecimal getBalance() { return Env.ZERO; } @Override public ArrayList createFacts(MAcctSchema as) { MAssetDisposed assetDisp = (MAssetDisposed)getPO(); ArrayList facts = new ArrayList(); Fact fact = new Fact(this, as, assetDisp.getPostingType()); facts.add(fact); MAssetChange ac = MAssetChange.get(getCtx(), assetDisp.getA_Asset_ID(), MAssetChange.CHANGETYPE_Disposal,getTrxName(), as.getC_AcctSchema_ID()); // fact.createLine(null, getAccount(MAssetAcct.COLUMNNAME_A_Asset_Acct, as) , ac.getC_AcctSchema().getC_Currency_ID() , Env.ZERO, ac.getAssetValueAmt()); fact.createLine(null, getAccount(MAssetAcct.COLUMNNAME_A_Accumdepreciation_Acct, as) , ac.getC_AcctSchema().getC_Currency_ID() , ac.getAssetAccumDepreciationAmt(), Env.ZERO); fact.createLine(null, getAccount(MAssetAcct.COLUMNNAME_A_Disposal_Loss_Acct, as) , ac.getC_AcctSchema().getC_Currency_ID() , ac.getAssetBookValueAmt(), Env.ZERO); // return facts; } /** * @param accountName * @param as * @return MAccount */ private MAccount getAccount(String accountName, MAcctSchema as) { MAssetDisposed assetDisp = (MAssetDisposed)getPO(); MAssetAcct assetAcct = MAssetAcct.forA_Asset_ID(getCtx(), as.get_ID(), assetDisp.getA_Asset_ID(), assetDisp.getPostingType(), assetDisp.getDateAcct(),null); int account_id = (Integer)assetAcct.get_Value(accountName); return MAccount.get(getCtx(), account_id); } }