123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- 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<IGrouping<string, CameraTimeTemplate>> timeTemplateListGroup = camera.TimeTemplateData.TimeTemplateDataList.GroupBy(t => t.CameraTime);
- foreach (IGrouping<string, CameraTimeTemplate> 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<LYFZ.Model.CameraControlTemplate> CameraControlTemplateList = new List<Model.CameraControlTemplate>();
- 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 = "";
- /// <summary>
- /// 确定后的值
- /// </summary>
- public string StrValue
- {
- get { return _strvalue; }
- set { _strvalue = value; }
- }
- private bool _isok = false;
- /// <summary>
- /// 是否选择确定
- /// </summary>
- public bool IsOK
- {
- get { return _isok; }
- set { _isok = value; }
- }
- private object _datasources = null;
- /// <summary>
- /// 数据源
- /// </summary>
- public object DataSources
- {
- get { return _datasources; }
- set { _datasources = value; }
- }
- /// <summary>
- /// 预约的日期
- /// </summary>
- public DateTime DayDate { get => dayDate; set => dayDate = value; }
- /// <summary>
- /// 预约的门店ID
- /// </summary>
- public string ShopID { get => shopID; set => shopID = value; }
- /// <summary>
- /// 预约的门店名
- /// </summary>
- public string ShopName { get {
- if (String.IsNullOrWhiteSpace(this.shopName))
- {
- return LYFZ.DAL.DAL_ErpCompanyInfo.ToShopIDToShopName(this.shopID);
- }
- return this.shopName;
- }
- set => shopName = value; }
- /// <summary>
- /// 选择的摄控时间
- /// </summary>
- public CameraTimeTemplate CameraTime { get => cameraTime; set => cameraTime = value; }
- /// <summary>
- /// 摄控类型
- /// </summary>
- public CameraType CameraType { get => cameraType; set => cameraType = value; }
- /// <summary>
- /// 订单类型
- /// </summary>
- public CameraOrderType OrderType { get => orderType; set => orderType = value; }
- /// <summary>
- /// 是否为公体日
- /// </summary>
- 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.婚纱订单;
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void GetTimeSuperSmallForm_Load(object sender, EventArgs e)
- {
- }
- /// <summary>
- /// 输入后回车
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void txtTime_KeyDown(object sender, KeyEventArgs e)
- {
- if (e.KeyCode == Keys.Enter)
- { this.btnOK_Click(this, null); }
- }
- /// <summary>
- /// 确定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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;
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnCancel_Click(object sender, EventArgs e)
- { this.DialogResult = DialogResult.Cancel; }
- }
- }
|