GetTimeSuperSmallForm.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using LYFZ.Model;
  10. namespace LYFZ.Software.MainBusiness.CameraControlBook.SuperSmallForm
  11. {
  12. public partial class GetTimeSuperSmallForm : LYFZ.Software.UI.CameraControlBook.SuperSmallForm.GetTimeSuperSmallForm
  13. {
  14. public GetTimeSuperSmallForm()
  15. {
  16. this.checkBoxCusTime.Click += CheckBoxCusTime_Click;
  17. if (LYFZSS.SystemSpecterPossessed.IsNewCameraControlBook())
  18. {
  19. if (LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.IsWithinSchedule)
  20. {
  21. this.txtTime.Enabled = false;
  22. this.checkBoxCusTime.Enabled = true;
  23. }
  24. else
  25. {
  26. this.txtTime.Enabled = false;
  27. this.checkBoxCusTime.Enabled = false;
  28. }
  29. }
  30. this.Shown += GetTimeSuperSmallForm_Shown;
  31. this.comboBoxTime.SelectedIndexChanged += ComboBoxTime_SelectedIndexChanged;
  32. if (LYFZSS.SystemSpecterPossessed.IsNewCameraControlBook())
  33. {
  34. this.comboBoxTime.Show();
  35. this.checkBoxCusTime.Show();
  36. }
  37. else {
  38. this.comboBoxTime.Hide();
  39. this.checkBoxCusTime.Hide();
  40. this.txtTime.Enabled = true;
  41. }
  42. }
  43. private void ComboBoxTime_SelectedIndexChanged(object sender, EventArgs e)
  44. {
  45. this.txtTime.Text = this.comboBoxTime.Text;
  46. }
  47. bool _IsPublicHoliday = false;
  48. private void GetTimeSuperSmallForm_Shown(object sender, EventArgs e)
  49. {
  50. this.lbShopName.Text = String.Format("【{0}】{1}\r\n{2}-{3}", this.dayDate.ToYYYY_MM_dd(), this.ShopName, CameraType.ToString(), this.orderType.ToString());
  51. LoadCameraControlTemplate(this.dayDate, (int)this.cameraType, (int)this.orderType, this.shopID);
  52. if (this.dayDate < SDateTime.Now.ToYYYYMMddDate())
  53. {
  54. MessageBoxCustom.Show("不可以预约客人到已经过去的日期");
  55. this.DialogResult = DialogResult.Cancel;
  56. return;
  57. }
  58. else if (this._IsPublicHoliday)
  59. {
  60. MessageBoxCustom.Show(String.Format("当前预约日期 {0} 为公休日,不能预约客人", this.dayDate.ToYYYY_MM_dd()));
  61. this.DialogResult = DialogResult.Cancel;
  62. return;
  63. }
  64. this.BindComboBoxTime();
  65. }
  66. void BindComboBoxTime()
  67. {
  68. this.comboBoxTime.Items.Clear();
  69. if (LYFZSS.SystemSpecterPossessed.IsNewCameraControlBook())
  70. {
  71. if (this.CameraControlTemplateList.Count > 0)
  72. {
  73. if (this.CameraControlTemplateList.Count > 1)
  74. {
  75. if (!LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.IsWithinSchedule)
  76. {
  77. MessageBoxCustom.Show("档期模板设置不正确,请重新设置模板");
  78. this.DialogResult = DialogResult.Cancel;
  79. }
  80. }
  81. else
  82. {
  83. LYFZ.Model.CameraControlTemplate camera = this.CameraControlTemplateList.First();
  84. if (camera.TimeTemplateData.TimeTemplateDataList.Count > 0)
  85. {
  86. IEnumerable<IGrouping<string, CameraTimeTemplate>> timeTemplateListGroup = camera.TimeTemplateData.TimeTemplateDataList.GroupBy(t => t.CameraTime);
  87. foreach (IGrouping<string, CameraTimeTemplate> itemTime in timeTemplateListGroup)
  88. {
  89. if (itemTime.Count() > 0)
  90. {
  91. if (Convert.ToDateTime(String.Format("{0} {1}", this.dayDate.ToYYYY_MM_dd(), itemTime.Key)) > SDateTime.Now)
  92. {
  93. foreach (CameraTimeTemplate cameraTime in itemTime)
  94. {
  95. cameraTime.DayTemplate = camera;
  96. if (cameraTime.ReservationTime.IsEnable == 1 && String.IsNullOrWhiteSpace(cameraTime.ReservationTime.OrderNumber))
  97. {
  98. this.comboBoxTime.Items.Add(new ItemValue(cameraTime, itemTime.Key));
  99. break;
  100. }
  101. }
  102. }
  103. }
  104. }
  105. }
  106. else
  107. {
  108. if (!LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.IsWithinSchedule)
  109. {
  110. MessageBoxCustom.Show("当前档期模板还没有设置档期时间,请设置模板后再预约");
  111. this.DialogResult = DialogResult.Cancel;
  112. }
  113. }
  114. }
  115. }
  116. else
  117. {
  118. if (!LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.IsWithinSchedule)
  119. {
  120. MessageBoxCustom.Show("你还没有设置当前日期的档期模板,请设置模板后再预约");
  121. this.DialogResult = DialogResult.Cancel;
  122. }
  123. }
  124. }
  125. }
  126. List<LYFZ.Model.CameraControlTemplate> CameraControlTemplateList = new List<Model.CameraControlTemplate>();
  127. LYFZ.BLL.CameraControlTemplate cameraTemplateBll = new BLL.CameraControlTemplate();
  128. void LoadCameraControlTemplate(DateTime day_Date, int camera_Type,int order_Type, string shop_ID)
  129. {
  130. CameraControlTemplateList.Clear();
  131. if (LYFZSS.SystemSpecterPossessed.IsNewCameraControlBook())
  132. {
  133. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate (object obj, BackgroundWorker backgroundWorker)
  134. {
  135. try
  136. {
  137. backgroundWorker.ReportProgress(0, "正在加载数据...");
  138. this._IsPublicHoliday = LYFZ.BLL.ThumbtackRecord.IsPublicHoliday(day_Date, shop_ID);
  139. this.CameraControlTemplateList = cameraTemplateBll.GetCameraControlTemplateList(day_Date, camera_Type, order_Type, shop_ID);
  140. }
  141. catch (Exception ex)
  142. {
  143. MessageBoxCustom.Show(String.Format("加载数据时出错:{0}", ex.Message));
  144. }
  145. });
  146. }
  147. }
  148. private void CheckBoxCusTime_Click(object sender, EventArgs e)
  149. {
  150. if (this.checkBoxCusTime.Checked)
  151. {
  152. this.txtTime.Enabled = true;
  153. }
  154. else {
  155. this.txtTime.Enabled = false;
  156. }
  157. }
  158. private string _strvalue = "";
  159. /// <summary>
  160. /// 确定后的值
  161. /// </summary>
  162. public string StrValue
  163. {
  164. get { return _strvalue; }
  165. set { _strvalue = value; }
  166. }
  167. private bool _isok = false;
  168. /// <summary>
  169. /// 是否选择确定
  170. /// </summary>
  171. public bool IsOK
  172. {
  173. get { return _isok; }
  174. set { _isok = value; }
  175. }
  176. private object _datasources = null;
  177. /// <summary>
  178. /// 数据源
  179. /// </summary>
  180. public object DataSources
  181. {
  182. get { return _datasources; }
  183. set { _datasources = value; }
  184. }
  185. /// <summary>
  186. /// 预约的日期
  187. /// </summary>
  188. public DateTime DayDate { get => dayDate; set => dayDate = value; }
  189. /// <summary>
  190. /// 预约的门店ID
  191. /// </summary>
  192. public string ShopID { get => shopID; set => shopID = value; }
  193. /// <summary>
  194. /// 预约的门店名
  195. /// </summary>
  196. public string ShopName { get {
  197. if (String.IsNullOrWhiteSpace(this.shopName))
  198. {
  199. return LYFZ.DAL.DAL_ErpCompanyInfo.ToShopIDToShopName(this.shopID);
  200. }
  201. return this.shopName;
  202. }
  203. set => shopName = value; }
  204. /// <summary>
  205. /// 选择的摄控时间
  206. /// </summary>
  207. public CameraTimeTemplate CameraTime { get => cameraTime; set => cameraTime = value; }
  208. /// <summary>
  209. /// 摄控类型
  210. /// </summary>
  211. public CameraType CameraType { get => cameraType; set => cameraType = value; }
  212. /// <summary>
  213. /// 订单类型
  214. /// </summary>
  215. public CameraOrderType OrderType { get => orderType; set => orderType = value; }
  216. /// <summary>
  217. /// 是否为公体日
  218. /// </summary>
  219. public bool IsPublicHoliday { get => _IsPublicHoliday; set => _IsPublicHoliday = value; }
  220. Model.CameraTimeTemplate cameraTime = new Model.CameraTimeTemplate();
  221. DateTime dayDate = SDateTime.Now;
  222. string shopID = LYFZ.BLL.BLL_ErpCompanyInfo.CurrentCompanyInfoID;
  223. string shopName = "";
  224. Model.CameraType cameraType = CameraType.拍照客人;
  225. Model.CameraOrderType orderType = CameraOrderType.婚纱订单;
  226. /// <summary>
  227. /// 窗体加载事件
  228. /// </summary>
  229. /// <param name="sender"></param>
  230. /// <param name="e"></param>
  231. protected override void GetTimeSuperSmallForm_Load(object sender, EventArgs e)
  232. {
  233. }
  234. /// <summary>
  235. /// 输入后回车
  236. /// </summary>
  237. /// <param name="sender"></param>
  238. /// <param name="e"></param>
  239. protected override void txtTime_KeyDown(object sender, KeyEventArgs e)
  240. {
  241. if (e.KeyCode == Keys.Enter)
  242. { this.btnOK_Click(this, null); }
  243. }
  244. /// <summary>
  245. /// 确定
  246. /// </summary>
  247. /// <param name="sender"></param>
  248. /// <param name="e"></param>
  249. protected override void btnOK_Click(object sender, EventArgs e)
  250. {
  251. try
  252. {
  253. if (this.checkBoxCusTime.Checked)
  254. {
  255. if (!string.IsNullOrEmpty(this.txtTime.Text.Trim()))
  256. {
  257. Convert.ToDateTime(SDateTime.Now.ToString("yyyy-MM-dd") + " " + this.txtTime.Text.Trim());
  258. }
  259. this.cameraTime = new CameraTimeTemplate();
  260. this.cameraTime.CameraTime = this.txtTime.Text.Trim();
  261. }
  262. else {
  263. ItemValue item = (ItemValue)this.comboBoxTime.SelectedItem;
  264. this.cameraTime = (CameraTimeTemplate)item.Value;
  265. }
  266. }
  267. catch
  268. {
  269. MessageBoxCustom.Show("时间格式出错!");
  270. return;
  271. }
  272. IsOK = true;
  273. StrValue = this.txtTime.Text.Trim();
  274. this.DialogResult= DialogResult.OK;
  275. }
  276. /// <summary>
  277. /// 取消
  278. /// </summary>
  279. /// <param name="sender"></param>
  280. /// <param name="e"></param>
  281. protected override void btnCancel_Click(object sender, EventArgs e)
  282. { this.DialogResult = DialogResult.Cancel; }
  283. }
  284. }