public void ShowCmdWindow(string cmd, int lscId, int id) { try { StaIncludedField.Clear(); DevIncludedField.Clear(); StartTimeTextField.Clear(); EndTimeTextField.Clear(); BookingUserNameTextField.Clear(); BookingUserPhoneTextField.Clear(); LscCheckbox.Checked = false; ProjStatusBox.Checked = false; WLscsComboBox.Disabled = false; WProjectComboBox.Disabled = false; StaIncludedField.Disabled = false; DevIncludedField.Disabled = false; StartTimeTextField.Disabled = false; EndTimeTextField.Disabled = false; BookingUserPhoneTextField.Disabled = false; LscCheckbox.Disabled = false; ProjStatusBox.Disabled = false; JsonValueHF.Clear(); AppointmentStatusBar.ClearStatus(); var bt = DateTime.Now.AddMinutes(30); var et = bt.AddDays(1); StartTimeTextField.Text = WebUtility.GetDateString(bt); EndTimeTextField.Text = WebUtility.GetDateString(et); switch (cmd) { case "Add": AppointmentWindow.Title = "新增预约"; AppointmentWindow.Icon = Icon.TagBlueAdd; ProjStatusBox.Hide(); WLscsComboBox.GetStore().DataBind(); AppointmentWindow.Show(); break; case "Edit": AppointmentWindow.Title = "编辑预约"; AppointmentWindow.Icon = Icon.TagBlueEdit; ProjStatusBox.Show(); var lsc = new BLsc().GetLsc(lscId); if (lsc == null) { WebUtility.ShowMessage(EnmErrType.Warning, "无法获取Lsc信息"); return; } var connectionString = WebUtility.CreateLscConnectionString(lsc); var appt = new BAppointment().GetAppointment(lsc.LscID, lsc.LscName, id, connectionString); if (appt == null) { WebUtility.ShowMessage(EnmErrType.Warning, "无法获取预约信息"); return; } if (!UserData.LscUsers.Any(lu => lu.LscID == appt.LscID && lu.UserID == appt.CreaterId)) { WebUtility.ShowMessage(EnmErrType.Warning, "无编辑权限,仅预约设置人有此权限。"); return; } WLscsComboBox.Disabled = true; WProjectComboBox.Disabled = true; if (appt.Status == EnmProjStatus.Using) { StaIncludedField.Disabled = true; DevIncludedField.Disabled = true; StartTimeTextField.Disabled = true; EndTimeTextField.Disabled = true; BookingUserPhoneTextField.Disabled = true; LscCheckbox.Disabled = true; } JsonValueHF.Text = JsonConvert.SerializeObject(appt); WLscsComboBox.SetValueAndFireSelect(appt.LscID); AppointmentWindow.Show(); break; default: break; } } catch (Exception err) { WebUtility.WriteLog(EnmSysLogLevel.Error, EnmSysLogType.Exception, err.ToString(), Page.User.Identity.Name); WebUtility.ShowMessage(EnmErrType.Error, err.Message); } }
public void ShowCmdWindow(string cmd, int lscId, string projId) { try { WLscsComboBox.Disabled = false; ProjectIdField.Disabled = false; ProjectIdField.Clear(); ProjNameField.Clear(); StartTimeField.Clear(); EndTimeField.Clear(); ResponsibleField.Clear(); PhoneField.Clear(); CompanyField.Clear(); CommentField.Clear(); EnabledCheckbox.Checked = true; TipsStatusBar.ClearStatus(); switch (cmd) { case "Add": ProjectWindow.Title = "新增工程"; ProjectWindow.Icon = Icon.TagBlueAdd; WLscsComboBox.GetStore().DataBind(); ProjectIdField.Text = Guid.NewGuid().ToString("D").ToUpper(); StartTimeField.Text = WebUtility.GetDateString(DateTime.Today); EndTimeField.Text = WebUtility.GetDateString(DateTime.Today.AddMonths(1).AddSeconds(-1)); OperationWindowHF.Text = "Add"; ProjectWindow.Show(); break; case "Edit": ProjectWindow.Title = "编辑工程"; ProjectWindow.Icon = Icon.TagBlueEdit; WLscsComboBox.Disabled = true; ProjectIdField.Disabled = true; OperationWindowHF.Text = "Edit"; var lsc = new BLsc().GetLsc(lscId); if (lsc == null) { WebUtility.ShowMessage(EnmErrType.Warning, "无法获取Lsc信息"); return; } var connectionString = WebUtility.CreateLscConnectionString(lsc); var project = new BAppointment().GetProject(lsc.LscID, lsc.LscName, projId, connectionString); if (project == null) { WebUtility.ShowMessage(EnmErrType.Warning, "无法获取工程信息"); return; } WLscsComboBox.SetValueAndFireSelect(lsc.LscID); ProjectIdField.Text = project.ProjectId; ProjNameField.Text = project.ProjectName; StartTimeField.Text = WebUtility.GetDateString(project.BeginTime); EndTimeField.Text = WebUtility.GetDateString(project.EndTime); ResponsibleField.Text = project.Responsible; PhoneField.Text = project.ContactPhone; CompanyField.Text = project.Company; CommentField.Text = project.Comment; EnabledCheckbox.Checked = project.Enabled; ProjectWindow.Show(); break; case "Del": X.Msg.Confirm("确认对话框", "您确定要删除吗?", new MessageBoxButtonsConfig { Yes = new MessageBoxButtonConfig { Handler = String.Format(@" X.ProjectManager.Delete({0},'{1}',{{ success: function(result) {{ MainGridPagingToolbar.doRefresh(); }}, eventMask: {{ showMask: true, target: 'customtarget', msg: '正在删除中...', customTarget: MainGridPanel.body.up('div') }}}});", lscId, projId), Text = "确定" }, No = new MessageBoxButtonConfig { Text = "取消" } }).Show(); break; default: break; } } catch (Exception err) { WebUtility.WriteLog(EnmSysLogLevel.Error, EnmSysLogType.Exception, err.ToString(), Page.User.Identity.Name); WebUtility.ShowMessage(EnmErrType.Error, err.Message); } }