AddingSendSingle.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. using LYFZ.Software.MainBusiness.CameraControlBook.SmallForm;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Web.UI.WebControls;
  10. using System.Windows.Forms;
  11. namespace LYFZ.Software.MainBusiness.HospitalTrackingSystem
  12. {
  13. public partial class AddingSendSingle : LYFZ.Software.UI.HospitalTrackingSystem.AddingSendSingle
  14. {
  15. BLL.BLL_ErpHospitalDispatchDoor ambll = new BLL.BLL_ErpHospitalDispatchDoor();
  16. public AddingSendSingle()
  17. {
  18. this.Load += AddingSendSingle_Load;
  19. this.Shown += AddingSendSingle_Shown;
  20. this.btnClos.Click += btnClos_Click;
  21. this.btnAdding.Click += btnAdding_Click;
  22. this.mskDoorPeriod.Leave += mskDoorPeriod_Leave;
  23. this.btnSelectTime.Click += BtnSelectTime_Click;
  24. if (LYFZSS.SystemSpecterPossessed.IsNewCameraControlBook())
  25. {
  26. this.btnSelectTime.Show();
  27. }
  28. else {
  29. this.btnSelectTime.Hide();
  30. }
  31. }
  32. private void BtnSelectTime_Click(object sender, EventArgs e)
  33. {
  34. DateTime dayDate = SDateTime.Now;
  35. string shopID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  36. if (!String.IsNullOrWhiteSpace(deteDoorTime.DateValue))
  37. {
  38. dayDate = Convert.ToDateTime(deteDoorTime.DateValue);
  39. }
  40. if (String.IsNullOrWhiteSpace(deteDoorTime.DateValue))
  41. {
  42. MessageBoxCustom.Show("需要先选择拍照日期");
  43. return;
  44. }
  45. Model.CameraTimeTemplate cameraTime = PhotographedReservationSmallForm.GetCameraTime(dayDate, shopID, Model.CameraType.爱婴上门, Model.CameraOrderType.爱婴跟踪);
  46. if (cameraTime != null)
  47. {
  48. this.mskDoorPeriod.Text = cameraTime.CameraTime;
  49. }
  50. }
  51. /// <summary>
  52. /// 是否保存
  53. /// </summary>
  54. public bool IsSaveed = false;
  55. /// <summary>
  56. /// 订单号
  57. /// </summary>
  58. public string StrOrderNumber;
  59. /// <summary>
  60. /// 当前操作人员编号
  61. /// </summary>
  62. string strUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  63. /// <summary>
  64. /// 窗体加载事件
  65. /// </summary>
  66. /// <param name="sender"></param>
  67. /// <param name="e"></param>
  68. void AddingSendSingle_Load(object sender, EventArgs e)
  69. {
  70. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cbxPhotographers);
  71. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cbxBootDivision);
  72. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cbxDriver);
  73. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.comboBoxTreeViewEx1);
  74. this.btnAdding.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.HospitalTrackingSystem, CustomAttributes.OperatingAuthority.AddSendSingleTask);
  75. }
  76. /// <summary>
  77. /// 窗体加载事件
  78. /// </summary>
  79. /// <param name="sender"></param>
  80. /// <param name="e"></param>
  81. void AddingSendSingle_Shown(object sender, EventArgs e)
  82. {
  83. if (TeskRow != null)
  84. {
  85. this.Text = "修改派单";
  86. this.deteDoorTime.DateValue = Convert.ToDateTime(TeskRow.Cells["上门时间"].Value).ToString("yyyy-MM-dd");
  87. this.comboBoxEx1.Text = TeskRow.Cells["上门状态"].Value.ToString().Trim() == "OK" ? "已上门" : "未上门";
  88. this.cbxPhotographers.Text = TeskRow.Cells["上门人员1"].Value.ToString().Trim();
  89. this.cbxBootDivision.Text = TeskRow.Cells["上门人员2"].Value.ToString().Trim();
  90. this.comboBoxTreeViewEx1.Text = TeskRow.Cells["上门人员3"].Value.ToString().Trim();
  91. this.cbxDriver.Text = TeskRow.Cells["上门人员4"].Value.ToString().Trim();
  92. this.txtVehicle.Text = TeskRow.Cells["车辆"].Value.ToString().Trim();
  93. this.txtRemark.Text = TeskRow.Cells["备注"].Value.ToString().Trim();
  94. this.mskDoorPeriod.Text = Convert.ToDateTime(TeskRow.Cells["上门时间"].Value).ToString("HH:mm");
  95. }
  96. else
  97. { this.deteDoorTime.DateValue = SDateTime.Now.ToString("yyyy-MM-dd"); }
  98. }
  99. /// <summary>
  100. /// 检查输入时间
  101. /// </summary>
  102. /// <param name="sender"></param>
  103. /// <param name="e"></param>
  104. void mskDoorPeriod_Leave(object sender, EventArgs e)
  105. {
  106. try
  107. {
  108. string[] strValueTime = this.mskDoorPeriod.Text.Trim().Split(':');
  109. if (strValueTime[0].Trim() != "")
  110. {
  111. if (Convert.ToInt32(strValueTime[0]) <= 0 || Convert.ToInt32(strValueTime[0]) > 24)
  112. { MessageBoxCustom.Show("不是有效的时间格式"); this.mskDoorPeriod.Text = ""; this.mskDoorPeriod.Focus(); return; }
  113. }
  114. if (strValueTime[1].Trim() != "")
  115. {
  116. if (Convert.ToInt32(strValueTime[1]) < 0 || Convert.ToInt32(strValueTime[1]) > 59)
  117. { MessageBoxCustom.Show("不是有效的时间格式"); this.mskDoorPeriod.Text = ""; this.mskDoorPeriod.Focus(); return; }
  118. }
  119. }
  120. catch
  121. { MessageBoxCustom.Show("不是有效的时间格式"); this.mskDoorPeriod.Text = ""; this.mskDoorPeriod.Focus(); return; }
  122. }
  123. DataGridViewRow _teskRow = null;
  124. public DataGridViewRow TeskRow
  125. {
  126. get { return _teskRow; }
  127. set { _teskRow = value; }
  128. }
  129. LYFZ.BLL.ReservationTimeData timeDataBll = new BLL.ReservationTimeData();
  130. /// <summary>
  131. /// 添加按钮
  132. /// </summary>
  133. /// <param name="sender"></param>
  134. /// <param name="e"></param>
  135. void btnAdding_Click(object sender, EventArgs e)
  136. {
  137. DateTime strTime = SDateTime.Now;
  138. LYFZ.Model.Model_ErpHospitalDispatchDoor model = null;
  139. if (TeskRow == null)
  140. {
  141. if (this.comboBoxEx1.Text.Trim() == "")
  142. { MessageBoxCustom.Show("请选择上门状态"); return; }
  143. if (this.comboBoxEx1.Text.Trim() == "已上门")
  144. {
  145. if (this.cbxPhotographers.Text.Trim() == "")
  146. { MessageBoxCustom.Show("请选择一个上门人员!"); return; }
  147. if (this.deteDoorTime.DateValue.Trim() == "")
  148. { MessageBoxCustom.Show("请输入上门日期!"); return; }
  149. if (this.mskDoorPeriod.Text.Trim() != ":")
  150. {
  151. try
  152. { Convert.ToDateTime(this.deteDoorTime.DateValue.Trim() + " " + this.mskDoorPeriod.Text.Trim()); }
  153. catch
  154. { MessageBoxCustom.Show("请输入上门时间!"); return; }
  155. }
  156. }
  157. model = new Model.Model_ErpHospitalDispatchDoor();
  158. model.Hdr_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  159. model.Hdr_ReservationDoorShopID= LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  160. model.Hdr_DoorShopID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  161. model.Hdr_Number = this.StrOrderNumber;
  162. if (this.deteDoorTime.DateValue != "")
  163. { model.Hdr_DoorTime = Convert.ToDateTime(this.deteDoorTime.DateValue.Trim().ToString()); }
  164. else { model.Hdr_DoorTime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime(); }
  165. if (this.mskDoorPeriod.Text.Trim() == ":")
  166. { model.Hdr_DoorPeriod = ""; }
  167. else
  168. { model.Hdr_DoorPeriod = this.mskDoorPeriod.Text.Trim(); }
  169. if (this.comboBoxEx1.Text == "已上门")
  170. {
  171. model.Hdr_HomeState = 1;
  172. model.Hdr_DoorShopID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.CurrentCompanyInfoID;
  173. if (string.IsNullOrEmpty(model.Hdr_ReservationDoorShopID))
  174. {
  175. model.Hdr_ReservationDoorShopID = model.Hdr_DoorShopID;
  176. }
  177. }
  178. else
  179. { model.Hdr_HomeState = 0; }
  180. model.Hdr_DoorPersonOne = this.cbxPhotographers.Text.Trim().ToString();
  181. model.Hdr_DoorPersonTwo = this.cbxBootDivision.Text.Trim().ToString();
  182. model.Hdr_Vehicle = this.txtVehicle.Text.Trim().ToString();
  183. model.Hdr_DoorPersonThree = this.comboBoxTreeViewEx1.Text.Trim().ToString();
  184. model.Hdr_DoorPersonFour = this.cbxDriver.Text.Trim().ToString();
  185. model.Hdr_DispatchDoorRemark = this.txtRemark.Text.Trim();
  186. model.Hdr_CreateDatetime = strTime;
  187. model.Hdr_CreateName = strUserID;
  188. if (ambll.Add(model))
  189. {
  190. this.IsSaveed = true;
  191. MessageBoxCustom.Show("添加成功!");
  192. }
  193. else
  194. { MessageBoxCustom.Show("添加失败!"); }
  195. }
  196. else
  197. {
  198. List<Model.ReservtionParameter> cameraParameterList = new List<Model.ReservtionParameter>();
  199. if (this.comboBoxEx1.Text == "")
  200. { MessageBoxCustom.Show("请选择上门状态"); return; }
  201. if (this.comboBoxEx1.Text == "已上门")
  202. {
  203. if (this.cbxPhotographers.Text == "")
  204. { MessageBoxCustom.Show("请选择一个上门人员!"); return; }
  205. if (this.deteDoorTime.Text == "")
  206. { MessageBoxCustom.Show("请输入上门日期!"); return; }
  207. //if (this.mskDoorPeriod.Text == "")
  208. //{ MessageBoxCustom.Show("请输入上门时间!"); return; }
  209. }
  210. model = ambll.GetModel(Convert.ToInt32(TeskRow.Cells["ID"].Value));
  211. model.Hdr_DoorTime = Convert.ToDateTime(this.deteDoorTime.Text.Trim().ToString());
  212. if (this.mskDoorPeriod.Text.Trim() == ":")
  213. { model.Hdr_DoorPeriod = ""; }
  214. else
  215. { model.Hdr_DoorPeriod = this.mskDoorPeriod.Text.Trim().ToString().Trim(); }
  216. if (this.comboBoxEx1.Text == "已上门")
  217. {
  218. model.Hdr_HomeState = 1;
  219. model.Hdr_DoorShopID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.CurrentCompanyInfoID;
  220. if (string.IsNullOrEmpty(model.Hdr_ReservationDoorShopID))
  221. {
  222. model.Hdr_ReservationDoorShopID = model.Hdr_DoorShopID;
  223. }
  224. }
  225. else { model.Hdr_HomeState = 0; }
  226. model.Hdr_DoorPersonOne = this.cbxPhotographers.Text.Trim().ToString();
  227. model.Hdr_DoorPersonTwo = this.cbxBootDivision.Text.Trim().ToString();
  228. model.Hdr_Vehicle = this.txtVehicle.Text.Trim().ToString();
  229. model.Hdr_DoorPersonThree = this.comboBoxTreeViewEx1.Text.Trim().ToString();
  230. model.Hdr_DoorPersonFour = this.cbxDriver.Text.Trim().ToString();
  231. model.Hdr_DispatchDoorRemark = this.txtRemark.Text.Trim();
  232. model.Hdr_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  233. model.Hdr_ReservationDoorShopID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  234. model.Hdr_DoorShopID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  235. List<LYFZ.Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
  236. #region 设置模板预约
  237. string shopID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  238. cameraParameterList.Add(new Model.ReservtionParameter
  239. {
  240. ShopID = shopID
  241. ,
  242. DayDate = this.deteDoorTime.DateValue.Trim()
  243. ,
  244. Time = this.mskDoorPeriod.Text.Trim()
  245. ,
  246. VID = model.ID.ToString()
  247. });
  248. string retErrorMsg = "";
  249. if (!this.timeDataBll.UpdateReservationTimeDataCommandInfoList(model.Hdr_Number, model.Hdr_Number, Model.CameraType.爱婴上门, Model.CameraOrderType.爱婴跟踪, cameraParameterList, ref clist, ref retErrorMsg))
  250. {
  251. MessageBoxCustom.Show(String.Format("保存预约失败:{0}", retErrorMsg));
  252. return;
  253. }
  254. #endregion
  255. clist.Add(ambll.GetUpdateCommandInfo(model));
  256. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
  257. {
  258. this.IsSaveed = true;
  259. MessageBoxCustom.Show("更新成功!");
  260. }
  261. else
  262. { MessageBoxCustom.Show("更新失败!"); }
  263. }
  264. }
  265. /// <summary>
  266. /// 关闭窗体
  267. /// </summary>
  268. /// <param name="sender"></param>
  269. /// <param name="e"></param>
  270. void btnClos_Click(object sender, EventArgs e)
  271. {
  272. this.Close();
  273. }
  274. }
  275. }