/****************************************************************************** * 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.process; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.util.logging.Level; import org.compiere.model.MFactAcct; import org.compiere.model.MInvoice; import org.compiere.model.MInvoiceTax; import org.compiere.model.MProcessPara; import org.compiere.model.MTaxDeclaration; import org.compiere.model.MTaxDeclarationAcct; import org.compiere.model.MTaxDeclarationLine; import org.compiere.util.AdempiereSystemError; import org.compiere.util.DB; /** * Create Tax Declaration * * @author Jorg Janke * @version $Id: TaxDeclarationCreate.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $ */ @org.adempiere.base.annotation.Process public class TaxDeclarationCreate extends SvrProcess { /** Tax Declaration */ private int p_C_TaxDeclaration_ID = 0; /** Delete Old Lines */ private boolean p_DeleteOld = true; /** Tax Declaration */ private MTaxDeclaration m_td = null; /** TDLines */ private int m_noLines = 0; /** TDAccts */ private int m_noAccts = 0; /** * Prepare - e.g., get Parameters. */ protected void prepare () { ProcessInfoParameter[] para = getParameter(); for (int i = 0; i < para.length; i++) { String name = para[i].getParameterName(); if (para[i].getParameter() == null) ; else if (name.equals("DeleteOld")) p_DeleteOld = "Y".equals(para[i].getParameter()); else MProcessPara.validateUnknownParameter(getProcessInfo().getAD_Process_ID(), para[i]); } p_C_TaxDeclaration_ID = getRecord_ID(); } // prepare /** * Process * @return info * @throws Exception */ protected String doIt () throws Exception { if (log.isLoggable(Level.INFO)) log.info("C_TaxDeclaration_ID=" + p_C_TaxDeclaration_ID); m_td = new MTaxDeclaration (getCtx(), p_C_TaxDeclaration_ID, get_TrxName()); if (m_td.get_ID() == 0) throw new AdempiereSystemError("@NotFound@ @C_TaxDeclaration_ID@ = " + p_C_TaxDeclaration_ID); if (p_DeleteOld) { // Delete old String sql = "DELETE FROM C_TaxDeclarationLine WHERE C_TaxDeclaration_ID=?"; int no = DB.executeUpdate(sql, p_C_TaxDeclaration_ID, false, get_TrxName()); if (no != 0) if (log.isLoggable(Level.CONFIG)) log.config("Delete Line #" + no); sql = "DELETE FROM C_TaxDeclarationAcct WHERE C_TaxDeclaration_ID=?"; no = DB.executeUpdate(sql, p_C_TaxDeclaration_ID, false, get_TrxName()); if (no != 0) if (log.isLoggable(Level.CONFIG)) log.config("Delete Acct #" + no); } // Get Invoices String sql = "SELECT * FROM C_Invoice i " + "WHERE TRUNC(i.DateInvoiced) >= ? AND TRUNC(i.DateInvoiced) <= ? " + " AND Processed='Y'" + " AND NOT EXISTS (SELECT * FROM C_TaxDeclarationLine tdl " + "WHERE i.C_Invoice_ID=tdl.C_Invoice_ID)"; PreparedStatement pstmt = null; ResultSet rs = null; int noInvoices = 0; try { pstmt = DB.prepareStatement (sql, get_TrxName()); pstmt.setTimestamp(1, m_td.getDateFrom()); pstmt.setTimestamp(2, m_td.getDateTo()); rs = pstmt.executeQuery (); while (rs.next ()) { create (new MInvoice (getCtx(), rs, null)); // no lock noInvoices++; } } catch (Exception e) { log.log (Level.SEVERE, sql, e); } finally { DB.close(rs, pstmt); rs = null; pstmt = null; } StringBuilder msgreturn = new StringBuilder("@C_Invoice_ID@ #").append(noInvoices) .append(" (").append(m_noLines).append(", ").append(m_noAccts).append(")"); return msgreturn.toString(); } // doIt /** * Create Data * @param invoice invoice */ private void create (MInvoice invoice) { /** Lines ** MInvoiceLine[] lines = invoice.getLines(); for (int i = 0; i < lines.length; i++) { MInvoiceLine line = lines[i]; if (line.isDescription()) continue; // MTaxDeclarationLine tdl = new MTaxDeclarationLine (m_td, invoice, line); tdl.setLine((m_noLines+1) * 10); if (tdl.save()) m_noLines++; } /** **/ /** Invoice Tax **/ MInvoiceTax[] taxes = invoice.getTaxes(false); for (int i = 0; i < taxes.length; i++) { MInvoiceTax tLine = taxes[i]; // MTaxDeclarationLine tdl = new MTaxDeclarationLine (m_td, invoice, tLine); tdl.setLine((m_noLines+1) * 10); if (tdl.save()) m_noLines++; } /** **/ /** Acct **/ String sql = "SELECT * FROM Fact_Acct WHERE AD_Table_ID=? AND Record_ID=?"; PreparedStatement pstmt = null; ResultSet rs = null; try { pstmt = DB.prepareStatement (sql, null); pstmt.setInt (1, MInvoice.Table_ID); pstmt.setInt (2, invoice.getC_Invoice_ID()); rs = pstmt.executeQuery (); while (rs.next ()) { MFactAcct fact = new MFactAcct(getCtx(), rs, null); // no lock MTaxDeclarationAcct tda = new MTaxDeclarationAcct (m_td, fact); tda.setLine((m_noAccts+1) * 10); if (tda.save()) m_noAccts++; } } catch (Exception e) { log.log (Level.SEVERE, sql, e); } finally { DB.close(rs, pstmt); rs = null; pstmt = null; } /** **/ } // invoice } // TaxDeclarationCreate