37 lines
790 B
JavaScript
37 lines
790 B
JavaScript
import {
|
|
commonStore
|
|
} from './commonStore';
|
|
import {
|
|
hrmAttendanceMonthReport
|
|
} from './monthReport';
|
|
import {hrmAttendanceMonthReport4Template} from './monthReport4template';
|
|
import {
|
|
hrmAttendanceMonthCalendarReport
|
|
} from './monthCalendar';
|
|
import {
|
|
hrmOriginalPunchRecord
|
|
} from './originalPunchRecord';
|
|
import {
|
|
hrmAttendanceDailyReport
|
|
} from './dailyReport';
|
|
import {
|
|
hrmVacationBalanceReportCopy
|
|
} from './vacationBalanceReportCopy';
|
|
import {
|
|
hrmShift
|
|
} from './shift';
|
|
import {
|
|
HrmChecking
|
|
} from './checking';
|
|
|
|
module.exports = {
|
|
commonStore,
|
|
hrmAttendanceMonthReport,
|
|
hrmAttendanceMonthReport4Template,
|
|
hrmAttendanceMonthCalendarReport,
|
|
hrmOriginalPunchRecord,
|
|
hrmAttendanceDailyReport,
|
|
hrmVacationBalanceReportCopy,
|
|
hrmShift,
|
|
hrmChecking: new HrmChecking(),
|
|
}; |