Exemple #1
0
        //人员考勤明细
        private void MenuAttendanceParticulars_Click(object sender, EventArgs e)
        {
            ILogger.Write(EnumLogType.OperateLog, strLogPath + DateTime.Now.ToString("yyyy-MM-dd") + ".xml", LoginBLL.user, "打开人员考勤明细菜单");

            AttendanceParticulars ap = new AttendanceParticulars();
            ap.Show();

        }
Exemple #2
0
        //人员考勤明细
        private void MenuAttendanceParticulars_Click(object sender, EventArgs e)
        {
            if (Searcher.FindFormByName("AttendanceParticulars"))
            {
                return;
            }

            ILogger.Write(EnumLogType.OperateLog, strLogPath + DateTime.Now.ToString("yyyy-MM-dd") + ".xml", LoginBLL.user, "打开人员考勤明细菜单");

            AttendanceParticulars ap = new AttendanceParticulars();
            ap.Show(dockPanel1, DockState.Document);

        }
Exemple #3
0
        //考勤明细
        private void tsmiAttendanceParticulars_Click_1(object sender, EventArgs e)
        {
            if (Searcher.FindFormByName("AttendanceParticulars"))
            {
                return;
            }
            ILogger.Write(EnumLogType.OperateLog, strLogPath + DateTime.Now.ToString("yyyy-MM-dd") + ".xml", LoginBLL.user, "打开考勤明细菜单");

            KJ128NInterfaceShow.AttendanceParticulars frmE = new AttendanceParticulars();
            frmE.Show(dockPanel1, DockState.Document);
        }