Commit 3097efda authored by arawankar's avatar arawankar

-Changes made in below component to cancel approved leave encashment entries

EmpLeaveCancel.java

-Created new componet for cancel arrears cancellation which calculated on leave encashment.

LveEncArrCanc.java
LveEncArrCancLocal.java
LveEncArrCancRemote.java

-Created new component to generate reversal voucher 
HRVoucherReversal.java


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@189265 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 9f1d46b7
This diff is collapsed.
This diff is collapsed.
package ibase.webitm.ejb.adm.adv;
import java.rmi.RemoteException;
import java.sql.Connection;
import java.sql.SQLException;
import javax.ejb.Local;
import ibase.webitm.ejb.ActionHandlerLocal;
import ibase.webitm.utility.ITMException;
@Local
public interface LveEncArrCancLocal extends ActionHandlerLocal
{
public String actionHandler() throws RemoteException,ITMException;
public String actionHandler(String tranID, String xtraParams, String forcedFlag) throws RemoteException,ITMException;
public String actionHandler(String tranID, String xtraParams, String forcedFlag, Connection conn) throws SQLException, ITMException;
}
package ibase.webitm.ejb.adm.adv;
import java.rmi.RemoteException;
import java.sql.Connection;
import java.sql.SQLException;
import javax.ejb.Local;
import ibase.webitm.ejb.ActionHandlerRemote;
import ibase.webitm.utility.ITMException;
@Local
public interface LveEncArrCancRemote extends ActionHandlerRemote
{
public String actionHandler() throws RemoteException,ITMException;
public String actionHandler(String tranID, String xtraParams, String forcedFlag) throws RemoteException,ITMException;
public String actionHandler(String tranID, String xtraParams, String forcedFlag, Connection conn) throws SQLException, ITMException;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment