using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using LYFZ.Model; namespace LYFZ.Software.MainBusiness.CameraControlBook.SuperSmallForm { public partial class GetTimeSuperSmallForm : LYFZ.Software.UI.CameraControlBook.SuperSmallForm.GetTimeSuperSmallForm { public GetTimeSuperSmallForm() { this.checkBoxCusTime.Click += CheckBoxCusTime_Click; if (LYFZSS.SystemSpecterPossessed.IsNewCameraControlBook()) { if (LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.IsWithinSchedule) { this.txtTime.Enabled = false; this.checkBoxCusTime.Enabled = true; } else { this.txtTime.Enabled = false; this.checkBoxCusTime.Enabled = false; } } this.Shown += GetTimeSuperSmallForm_Shown; this.comboBoxTime.SelectedIndexChanged += ComboBoxTime_SelectedIndexChanged; if (LYFZSS.SystemSpecterPossessed.IsNewCameraControlBook()) { this.comboBoxTime.Show(); this.checkBoxCusTime.Show(); } else { this.comboBoxTime.Hide(); this.checkBoxCusTime.Hide(); this.txtTime.Enabled = true; } } private void ComboBoxTime_SelectedIndexChanged(object sender, EventArgs e) { this.txtTime.Text = this.comboBoxTime.Text; } bool _IsPublicHoliday = false; private void GetTimeSuperSmallForm_Shown(object sender, EventArgs e) { this.lbShopName.Text = String.Format("【{0}】{1}\r\n{2}-{3}", this.dayDate.ToYYYY_MM_dd(), this.ShopName, CameraType.ToString(), this.orderType.ToString()); LoadCameraControlTemplate(this.dayDate, (int)this.cameraType, (int)this.orderType, this.shopID); if (this.dayDate < SDateTime.Now.ToYYYYMMddDate()) { MessageBoxCustom.Show("不可以预约客人到已经过去的日期"); this.DialogResult = DialogResult.Cancel; return; } else if (this._IsPublicHoliday) { MessageBoxCustom.Show(String.Format("当前预约日期 {0} 为公休日,不能预约客人", this.dayDate.ToYYYY_MM_dd())); this.DialogResult = DialogResult.Cancel; return; } this.BindComboBoxTime(); } void BindComboBoxTime() { this.comboBoxTime.Items.Clear(); if (LYFZSS.SystemSpecterPossessed.IsNewCameraControlBook()) { if (this.CameraControlTemplateList.Count > 0) { if (this.CameraControlTemplateList.Count > 1) { if (!LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.IsWithinSchedule) { MessageBoxCustom.Show("档期模板设置不正确,请重新设置模板"); this.DialogResult = DialogResult.Cancel; } } else { LYFZ.Model.CameraControlTemplate camera = this.CameraControlTemplateList.First(); if (camera.TimeTemplateData.TimeTemplateDataList.Count > 0) { IEnumerable> timeTemplateListGroup = camera.TimeTemplateData.TimeTemplateDataList.GroupBy(t => t.CameraTime); foreach (IGrouping itemTime in timeTemplateListGroup) { if (itemTime.Count() > 0) { if (Convert.ToDateTime(String.Format("{0} {1}", this.dayDate.ToYYYY_MM_dd(), itemTime.Key)) > SDateTime.Now) { foreach (CameraTimeTemplate cameraTime in itemTime) { cameraTime.DayTemplate = camera; if (cameraTime.ReservationTime.IsEnable == 1 && String.IsNullOrWhiteSpace(cameraTime.ReservationTime.OrderNumber)) { this.comboBoxTime.Items.Add(new ItemValue(cameraTime, itemTime.Key)); break; } } } } } } else { if (!LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.IsWithinSchedule) { MessageBoxCustom.Show("当前档期模板还没有设置档期时间,请设置模板后再预约"); this.DialogResult = DialogResult.Cancel; } } } } else { if (!LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.IsWithinSchedule) { MessageBoxCustom.Show("你还没有设置当前日期的档期模板,请设置模板后再预约"); this.DialogResult = DialogResult.Cancel; } } } } List CameraControlTemplateList = new List(); LYFZ.BLL.CameraControlTemplate cameraTemplateBll = new BLL.CameraControlTemplate(); void LoadCameraControlTemplate(DateTime day_Date, int camera_Type,int order_Type, string shop_ID) { CameraControlTemplateList.Clear(); if (LYFZSS.SystemSpecterPossessed.IsNewCameraControlBook()) { LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate (object obj, BackgroundWorker backgroundWorker) { try { backgroundWorker.ReportProgress(0, "正在加载数据..."); this._IsPublicHoliday = LYFZ.BLL.ThumbtackRecord.IsPublicHoliday(day_Date, shop_ID); this.CameraControlTemplateList = cameraTemplateBll.GetCameraControlTemplateList(day_Date, camera_Type, order_Type, shop_ID); } catch (Exception ex) { MessageBoxCustom.Show(String.Format("加载数据时出错:{0}", ex.Message)); } }); } } private void CheckBoxCusTime_Click(object sender, EventArgs e) { if (this.checkBoxCusTime.Checked) { this.txtTime.Enabled = true; } else { this.txtTime.Enabled = false; } } private string _strvalue = ""; /// /// 确定后的值 /// public string StrValue { get { return _strvalue; } set { _strvalue = value; } } private bool _isok = false; /// /// 是否选择确定 /// public bool IsOK { get { return _isok; } set { _isok = value; } } private object _datasources = null; /// /// 数据源 /// public object DataSources { get { return _datasources; } set { _datasources = value; } } /// /// 预约的日期 /// public DateTime DayDate { get => dayDate; set => dayDate = value; } /// /// 预约的门店ID /// public string ShopID { get => shopID; set => shopID = value; } /// /// 预约的门店名 /// public string ShopName { get { if (String.IsNullOrWhiteSpace(this.shopName)) { return LYFZ.DAL.DAL_ErpCompanyInfo.ToShopIDToShopName(this.shopID); } return this.shopName; } set => shopName = value; } /// /// 选择的摄控时间 /// public CameraTimeTemplate CameraTime { get => cameraTime; set => cameraTime = value; } /// /// 摄控类型 /// public CameraType CameraType { get => cameraType; set => cameraType = value; } /// /// 订单类型 /// public CameraOrderType OrderType { get => orderType; set => orderType = value; } /// /// 是否为公体日 /// public bool IsPublicHoliday { get => _IsPublicHoliday; set => _IsPublicHoliday = value; } Model.CameraTimeTemplate cameraTime = new Model.CameraTimeTemplate(); DateTime dayDate = SDateTime.Now; string shopID = LYFZ.BLL.BLL_ErpCompanyInfo.CurrentCompanyInfoID; string shopName = ""; Model.CameraType cameraType = CameraType.拍照客人; Model.CameraOrderType orderType = CameraOrderType.婚纱订单; /// /// 窗体加载事件 /// /// /// protected override void GetTimeSuperSmallForm_Load(object sender, EventArgs e) { } /// /// 输入后回车 /// /// /// protected override void txtTime_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) { this.btnOK_Click(this, null); } } /// /// 确定 /// /// /// protected override void btnOK_Click(object sender, EventArgs e) { try { if (this.checkBoxCusTime.Checked) { if (!string.IsNullOrEmpty(this.txtTime.Text.Trim())) { Convert.ToDateTime(SDateTime.Now.ToString("yyyy-MM-dd") + " " + this.txtTime.Text.Trim()); } this.cameraTime = new CameraTimeTemplate(); this.cameraTime.CameraTime = this.txtTime.Text.Trim(); } else { ItemValue item = (ItemValue)this.comboBoxTime.SelectedItem; this.cameraTime = (CameraTimeTemplate)item.Value; } } catch { MessageBoxCustom.Show("时间格式出错!"); return; } IsOK = true; StrValue = this.txtTime.Text.Trim(); this.DialogResult= DialogResult.OK; } /// /// 取消 /// /// /// protected override void btnCancel_Click(object sender, EventArgs e) { this.DialogResult = DialogResult.Cancel; } } }