Fix attendances module
This commit is contained in:
@@ -82,6 +82,8 @@ import com.axelor.apps.hr.service.user.UserHrServiceImpl;
|
||||
import com.axelor.apps.project.db.repo.ProjectManagementRepository;
|
||||
import com.axelor.apps.project.db.repo.ProjectPlanningTimeRepository;
|
||||
import com.axelor.apps.project.db.repo.TeamTaskProjectRepository;
|
||||
import com.axelor.apps.hr.service.AuthorizationService;
|
||||
import com.axelor.apps.hr.service.AuthorizationServiceImpl;
|
||||
|
||||
public class HumanResourceModule extends AxelorModule {
|
||||
|
||||
@@ -120,5 +122,7 @@ public class HumanResourceModule extends AxelorModule {
|
||||
bind(BankOrderMergeServiceImpl.class).to(BankOrderMergeHRServiceImpl.class);
|
||||
bind(TimesheetReportService.class).to(TimesheetReportServiceImpl.class);
|
||||
bind(DailyReportService.class).to(DailyReportServiceImpl.class);
|
||||
bind(AuthorizationService.class).to(AuthorizationServiceImpl.class);
|
||||
bind(ExtraHoursService.class).to(ExtraHoursServiceImpl.class);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
<entity name="LeaveRequest" cacheable="true">
|
||||
|
||||
<many-to-one name="user" ref="com.axelor.auth.db.User" title="User" required="true" column="user_id"/>
|
||||
<many-to-one name="user" ref="com.axelor.auth.db.User" title="User" column="user_id"/>
|
||||
<integer name="statusSelect" title="Status" selection="hrs.leave.request.status.select" default="1" readonly="true"/>
|
||||
<date name="requestDate" title="Request date" readonly="true" />
|
||||
<datetime name="fromDateT" title="From" required="true"/>
|
||||
|
||||
Reference in New Issue
Block a user