You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
724 B
Java
28 lines
724 B
Java
package TestAttendanceAllowance;
|
|
|
|
import com.engine.attendance.attendanceanalysis.web.AttendanceanalysisAction;
|
|
import com.engine.common.util.DateUtil;
|
|
import com.google.common.collect.Maps;
|
|
import weaver.hrm.company.SubCompanyComInfo;
|
|
|
|
import java.util.Map;
|
|
|
|
public class
|
|
|
|
Test extends beforlog{
|
|
|
|
@org.junit.Test
|
|
public void testAnalysis() throws Exception{
|
|
Map<String,Object> paramMap = Maps.newHashMap();
|
|
paramMap.put("startDate","2024-04-15");
|
|
paramMap.put("endDate","2024-04-15");
|
|
paramMap.put("userIds","31");
|
|
|
|
beforlog be = new beforlog();
|
|
AttendanceanalysisAction action = new AttendanceanalysisAction();
|
|
action.getSchedulingData(null,null);
|
|
|
|
|
|
}
|
|
}
|