IDEMPIERE-137 Enhancement of GL Reconciliation
minor fixes - organize imports, create serialversionUID, drop unused variables
This commit is contained in:
parent
d44998bf12
commit
94cc2f2a6b
|
@ -16,12 +16,14 @@
|
|||
*****************************************************************************/
|
||||
package org.compiere.process;
|
||||
|
||||
import java.math.*;
|
||||
import java.sql.*;
|
||||
import java.util.logging.*;
|
||||
import java.sql.PreparedStatement;
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
import java.util.logging.Level;
|
||||
|
||||
import org.compiere.model.*;
|
||||
import org.compiere.util.*;
|
||||
import org.compiere.model.MElementValue;
|
||||
import org.compiere.model.MRule;
|
||||
import org.compiere.util.DB;
|
||||
|
||||
/**
|
||||
* Suspense account reconciliation report
|
||||
|
@ -30,7 +32,6 @@ import org.compiere.util.*;
|
|||
public class FactReconcile extends SvrProcess
|
||||
{
|
||||
private MElementValue account;
|
||||
private String type;
|
||||
private int ruleID;
|
||||
|
||||
/**
|
||||
|
@ -65,7 +66,6 @@ public class FactReconcile extends SvrProcess
|
|||
protected String doIt() throws Exception
|
||||
{
|
||||
|
||||
String result;
|
||||
log.info("Reconcile Account: " + account.getName());
|
||||
|
||||
String subselect = "null";
|
||||
|
|
|
@ -27,8 +27,6 @@ public class FactReconciliation extends SvrProcess
|
|||
*/
|
||||
protected void prepare()
|
||||
{
|
||||
StringBuffer sb = new StringBuffer ("AD_PInstance_ID=")
|
||||
.append(getAD_PInstance_ID());
|
||||
// Parameter
|
||||
ProcessInfoParameter[] para = getParameter();
|
||||
for (int i = 0; i < para.length; i++)
|
||||
|
|
|
@ -80,6 +80,11 @@ import org.compiere.util.Msg;
|
|||
public class VFactReconcile extends CPanel
|
||||
implements FormPanel, ActionListener, TableModelListener, ASyncProcess
|
||||
{
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -4319867865736797328L;
|
||||
|
||||
/**
|
||||
* Initialize Panel
|
||||
* @param WindowNo window
|
||||
|
|
Loading…
Reference in New Issue