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;
|
package org.compiere.process;
|
||||||
|
|
||||||
import java.math.*;
|
import java.sql.PreparedStatement;
|
||||||
import java.sql.*;
|
import java.sql.ResultSet;
|
||||||
import java.util.logging.*;
|
import java.sql.SQLException;
|
||||||
|
import java.util.logging.Level;
|
||||||
|
|
||||||
import org.compiere.model.*;
|
import org.compiere.model.MElementValue;
|
||||||
import org.compiere.util.*;
|
import org.compiere.model.MRule;
|
||||||
|
import org.compiere.util.DB;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Suspense account reconciliation report
|
* Suspense account reconciliation report
|
||||||
|
@ -30,7 +32,6 @@ import org.compiere.util.*;
|
||||||
public class FactReconcile extends SvrProcess
|
public class FactReconcile extends SvrProcess
|
||||||
{
|
{
|
||||||
private MElementValue account;
|
private MElementValue account;
|
||||||
private String type;
|
|
||||||
private int ruleID;
|
private int ruleID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -65,7 +66,6 @@ public class FactReconcile extends SvrProcess
|
||||||
protected String doIt() throws Exception
|
protected String doIt() throws Exception
|
||||||
{
|
{
|
||||||
|
|
||||||
String result;
|
|
||||||
log.info("Reconcile Account: " + account.getName());
|
log.info("Reconcile Account: " + account.getName());
|
||||||
|
|
||||||
String subselect = "null";
|
String subselect = "null";
|
||||||
|
|
|
@ -27,8 +27,6 @@ public class FactReconciliation extends SvrProcess
|
||||||
*/
|
*/
|
||||||
protected void prepare()
|
protected void prepare()
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer ("AD_PInstance_ID=")
|
|
||||||
.append(getAD_PInstance_ID());
|
|
||||||
// Parameter
|
// Parameter
|
||||||
ProcessInfoParameter[] para = getParameter();
|
ProcessInfoParameter[] para = getParameter();
|
||||||
for (int i = 0; i < para.length; i++)
|
for (int i = 0; i < para.length; i++)
|
||||||
|
|
|
@ -80,6 +80,11 @@ import org.compiere.util.Msg;
|
||||||
public class VFactReconcile extends CPanel
|
public class VFactReconcile extends CPanel
|
||||||
implements FormPanel, ActionListener, TableModelListener, ASyncProcess
|
implements FormPanel, ActionListener, TableModelListener, ASyncProcess
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
private static final long serialVersionUID = -4319867865736797328L;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize Panel
|
* Initialize Panel
|
||||||
* @param WindowNo window
|
* @param WindowNo window
|
||||||
|
|
Loading…
Reference in New Issue