FrmRentalManagement.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. using LYFZ.ComponentLibrary;
  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.Windows.Forms;
  10. namespace LYFZ.Software.MainBusiness.Dresses.DressManagement.Rental
  11. {
  12. public partial class FrmRentalManagement : LYFZ.Software.UI.Dresses.DressManagement.Rental.FrmRentalManagement
  13. {
  14. private delegate void UpdateControl();
  15. public FrmRentalManagement()
  16. {
  17. this.ucPagerEx1.EventPaging += ucPagerEx1_EventPaging;
  18. }
  19. #region 加载
  20. protected override void FrmRentalManagement_Shown(object sender, EventArgs e)
  21. {
  22. try
  23. {
  24. bind();
  25. #region 收款
  26. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.DressManagement, CustomAttributes.OperatingAuthority.ReceivablesAll))
  27. {
  28. btnReceivables.Enabled = true;
  29. }
  30. else
  31. {
  32. btnReceivables.Enabled = false;
  33. }
  34. #endregion
  35. }
  36. catch (Exception ex)
  37. {
  38. MessageBoxCustom.Show(ex.Message);
  39. }
  40. }
  41. #region 获取礼服订单
  42. /// <summary>
  43. /// 获取礼服订单
  44. /// </summary>
  45. public void bind()
  46. {
  47. this.ucPagerEx1.PageCurrent = 1;
  48. this.ucPagerEx1.PageSize = 100;// LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetPageSize();//3;分页条数
  49. this.ucPagerEx1.Bind();
  50. }
  51. #endregion
  52. #endregion
  53. #region 查询
  54. protected override void btnSlect_Click(object sender, EventArgs e)
  55. {
  56. try
  57. {
  58. if (!string.IsNullOrEmpty(txtTimeStart.DateValue))
  59. {
  60. if (string.IsNullOrEmpty(txtTimeEnd.DateValue))
  61. {
  62. MessageBoxCustom.Show("还衣结束时间不能为空!");
  63. return;
  64. }
  65. }
  66. if (!string.IsNullOrEmpty(txtTimeEnd.DateValue))
  67. {
  68. if (string.IsNullOrEmpty(txtTimeStart.DateValue))
  69. {
  70. MessageBoxCustom.Show("还衣开始时间不能为空!");
  71. return;
  72. }
  73. }
  74. bind();
  75. }
  76. catch (Exception ex)
  77. {
  78. MessageBoxCustom.Show(ex.Message);
  79. }
  80. }
  81. #endregion
  82. #region 删除
  83. protected override void btnDelete_Click(object sender, EventArgs e)
  84. {
  85. if (this.dgv.SelectedRows.Count == 0)
  86. {
  87. MessageBoxCustom.Show("请选中你要删除的数据!");
  88. return;
  89. }
  90. if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  91. {
  92. LYFZ.BLL.BLL_ErpDressSaleRentalOrder bll = new BLL.BLL_ErpDressSaleRentalOrder();
  93. string Dsro_Number = this.dgv.CurrentRow.Cells["Dsro_Number"].Value.ToString();
  94. if (bll.DeleteLf(Dsro_Number) == 1)
  95. {
  96. #region 写入操作日志
  97. string logsContent = "删除出租礼服编号:" + Dsro_Number;
  98. LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog(LYFZ.EnumPublic.SystemLogsType.删除礼服, logsContent, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name);
  99. //LYFZ.BLL.BLL_ErpSystemLogs systemLogsBll = new BLL.BLL_ErpSystemLogs();
  100. //LYFZ.Model.Model_ErpSystemLogs systemLogsModel = new Model.Model_ErpSystemLogs();
  101. //systemLogsModel.Slogs_Type = "user";
  102. //systemLogsModel.Slogs_Topic = "删除出租礼服";
  103. //systemLogsModel.Slogs_Content = "删除出租礼服编号:" + Dsro_Number;
  104. //systemLogsModel.Slogs_UserName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  105. //systemLogsModel.Slogs_IP = "";
  106. //systemLogsModel.Slogs_CreateDatetime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
  107. //systemLogsModel.Slogs_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  108. //systemLogsBll.Add(systemLogsModel);
  109. #endregion
  110. MessageBoxCustom.Show("删除成功!");
  111. bind();
  112. }
  113. else { MessageBoxCustom.Show("删除失败!"); }
  114. }
  115. }
  116. #endregion
  117. #region 修改
  118. protected override void btnUpdate_Click(object sender, EventArgs e)
  119. {
  120. if (dgv.SelectedRows.Count == 0)
  121. {
  122. MessageBoxCustom.Show("请选择你要修改的礼服订单");
  123. return;
  124. }
  125. LYFZ.Software.MainBusiness.Dresses.DressManagement.FrmPreselectedUpdate set = new FrmPreselectedUpdate();
  126. set.Dsro_Number = dgv.CurrentRow.Cells["Dsro_Number"].Value.ToString();
  127. if (set.ShowDialog() == DialogResult.OK)
  128. {
  129. bind();
  130. }
  131. }
  132. #endregion
  133. #region 还回
  134. protected override void btnAlsoback_Click(object sender, EventArgs e)
  135. {
  136. if (dgv.SelectedRows.Count == 0)
  137. {
  138. MessageBoxCustom.Show("选择你要还回的礼服订单");
  139. return;
  140. }
  141. LYFZ.Software.MainBusiness.Dresses.DressManagement.Rental.FrmAlsoBack set = new FrmAlsoBack();
  142. set.StrOrderNumber = dgv.CurrentRow.Cells["Dsro_Number"].Value.ToString();
  143. if (set.ShowDialog() == DialogResult.OK)
  144. {
  145. bind();
  146. }
  147. }
  148. #endregion
  149. #region 打印
  150. protected override void btnPrint_Click(object sender, EventArgs e)
  151. {
  152. try
  153. {
  154. if (dgv.SelectedRows.Count == 0)
  155. {
  156. MessageBoxCustom.Show("请选择你要打印的数据!");
  157. return;
  158. }
  159. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintFixedFormat(LYFZ.EnumPublic.PrintTypeEnum.礼服出租清单, this.dgv.CurrentRow.Cells["Dsro_Number"].Value);
  160. }
  161. catch (Exception ex)
  162. {
  163. MessageBoxCustom.Show(ex.Message);
  164. }
  165. }
  166. #endregion
  167. #region 收款
  168. protected override void btnReceivables_Click(object sender, EventArgs e)
  169. {
  170. try
  171. {
  172. if (dgv.SelectedRows.Count == 0)
  173. {
  174. MessageBoxCustom.Show("请选择你要收款的数据!");
  175. return;
  176. }
  177. LYFZ.Software.MainBusiness.Dresses.DressManagement.Rental.FrmPayment set = new FrmPayment();
  178. set.StrOrderNumber = dgv.CurrentRow.Cells["Dsro_Number"].Value.ToString();
  179. set.ShowDialog();
  180. if (set.IsSaveed)
  181. {
  182. bind();
  183. }
  184. }
  185. catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
  186. }
  187. #endregion
  188. #region 退款
  189. protected override void btnRefund_Click(object sender, EventArgs e)
  190. {
  191. try
  192. {
  193. if (dgv.SelectedRows.Count == 0)
  194. {
  195. MessageBoxCustom.Show("请选择你要退押金的数据!");
  196. return;
  197. }
  198. LYFZ.Software.MainBusiness.Dresses.DressManagement.Rental.FrmRefundRecord set = new FrmRefundRecord();
  199. set.StrOrderNumber = dgv.CurrentRow.Cells["Dsro_Number"].Value.ToString();
  200. set.ShowDialog();
  201. if (set.IsSaveed)
  202. {
  203. bind();
  204. }
  205. }
  206. catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
  207. }
  208. #endregion
  209. #region 画分页
  210. /// <summary>
  211. /// 画分页
  212. /// </summary>
  213. /// <param name="e"></param>
  214. /// <returns></returns>
  215. private int ucPagerEx1_EventPaging(UCPager.EventPagingArg e)
  216. {
  217. dgv.Rows.Clear();
  218. DataTable dt = new DataTable();
  219. string StrWhere = "";
  220. if (!string.IsNullOrEmpty(txtkeyword.Text))
  221. {
  222. StrWhere += " 1=1 and (Dsro_Number like '%" + txtkeyword.Text.Trim() + "%' or Cus_Name like '%" + txtkeyword.Text.Trim() + "%' or Cus_Telephone like '%" + txtkeyword.Text.Trim() + "%' or Py_Cus_Name like '%" + txtkeyword.Text.Trim() + "%') and Dsro_Type='0'";
  223. }
  224. else
  225. {
  226. StrWhere = " 1=1 and Dsro_Type='0'";
  227. }
  228. if (!string.IsNullOrEmpty(txtTimeEnd.DateValue) && !string.IsNullOrEmpty(txtTimeStart.DateValue))
  229. {
  230. StrWhere += " and Dsro_ReservationBackTime>='" + Convert.ToDateTime(txtTimeStart.DateValue).ToString("yyyy-MM-dd") + "' and Dsro_ReservationBackTime<='" + Convert.ToDateTime(txtTimeEnd.DateValue).ToString("yyyy-MM-dd") + "'";
  231. }
  232. //#region 今日
  233. //if (ChkToDay.Checked == true)
  234. //{
  235. // StrWhere += " and Dsro_ReservationBackTime>='" + Convert.ToDateTime(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime()).ToString("yyyy-MM-dd") + "' and Dsro_ReservationBackTime<='" + Convert.ToDateTime(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime()).ToString("yyyy-MM-dd") + "'";
  236. //}
  237. //#endregion
  238. //#region 近三日
  239. //if (ChkThreeDay.Checked == true)
  240. //{
  241. // string TimeStart = Convert.ToDateTime(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime()).ToString("yyyy-MM-dd");
  242. // string TimeEnd = Convert.ToDateTime(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().AddDays(3)).ToString("yyyy-MM-dd");
  243. // StrWhere += " and Dsro_ReservationBackTime>='" + TimeStart + "' and Dsro_ReservationBackTime<='" + TimeEnd + "'";
  244. //}
  245. //#endregion
  246. LYFZ.UCPager.PageData pageData = new LYFZ.UCPager.PageData();
  247. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  248. {
  249. pageData.TableName = "View_DressSaleRentalOrder";
  250. pageData.PageIndex = this.ucPagerEx1.PageCurrent;
  251. pageData.PageSize = this.ucPagerEx1.PageSize;
  252. pageData.QueryCondition = StrWhere.ToString();
  253. pageData.QueryFieldName = " ID,Dsro_Number,Dsro_Type,Dsro_Amount,Dsro_MortgageAmount,Dsro_CustomerNumber,Dsro_TakeDressTime,Dsro_ReservationBackTime,Dsro_Remark,Dsro_CreateDateTime,Dsro_CreateName,Dsro_UpdateDateTime,Dsro_UpdateName,Cus_CustomerNumber,Cus_CustomizeNumber,Cus_Type,Cus_ServiceType,Cus_Grade,Cus_Name,Cus_Sex,Cus_Birthday,Cus_BirthdayLunar,Cus_DayForMarriage,Cus_DayForMarriageLunar,Cus_Relations,Cus_QQ,Cus_MicroSignal,Cus_Telephone,Cus_FixedPhone,Cus_Region,Cus_Address,Py_Cus_Name";
  254. pageData.OrderStr = "ID desc";
  255. pageData.OrderType = 1;
  256. DataSet da = pageData.QueryDataTable();
  257. dt = da.Tables[0];
  258. if (dt.Rows.Count > 0)
  259. {
  260. this.Invoke(new UpdateControl(delegate()
  261. {
  262. for (int t = 0; t < dt.Rows.Count; t++)
  263. {
  264. #region
  265. DataGridViewRow dgvr = new DataGridViewRow();
  266. DataGridViewCell cell = null;
  267. cell = new DataGridViewTextBoxCell();
  268. cell.Value = dt.Rows[t]["Dsro_Number"].ToString().Trim();
  269. dgvr.Cells.Add(cell);
  270. //应付
  271. cell = new DataGridViewTextBoxCell();
  272. cell.Value = dt.Rows[t]["Dsro_Amount"].ToString().Trim();
  273. dgvr.Cells.Add(cell);
  274. //已付
  275. cell = new DataGridViewTextBoxCell();
  276. decimal Paid;
  277. LYFZ.BLL.BLL_ErpPayment Paymentbll = new BLL.BLL_ErpPayment();
  278. DataTable DaPayment = Paymentbll.GetSum(" Pay_OrdNumber='" + dt.Rows[t]["Dsro_Number"].ToString().Trim() + "'").Tables[0];
  279. if (string.IsNullOrEmpty(DaPayment.Rows[0]["Pay_AmountOf"].ToString()))
  280. { Paid = 0.00m; }
  281. else { Paid = Convert.ToDecimal(DaPayment.Rows[0]["Pay_AmountOf"]); }
  282. cell.Value = Paid;
  283. dgvr.Cells.Add(cell);
  284. //欠款
  285. cell = new DataGridViewTextBoxCell();
  286. cell.Value = Convert.ToDecimal(dt.Rows[t]["Dsro_Amount"]) - Convert.ToDecimal(Paid);
  287. if (Convert.ToDecimal(cell.Value) > 0)
  288. { cell.Style.BackColor = Color.Red; }
  289. dgvr.Cells.Add(cell);
  290. //押金
  291. cell = new DataGridViewTextBoxCell();
  292. LYFZ.BLL.BLL_ErpDressRefundRecord DressRefundRecordBll = new BLL.BLL_ErpDressRefundRecord();
  293. DataTable dt_DressRefundRecord = DressRefundRecordBll.GetSun(" and DRR_Number='" + dt.Rows[t]["Dsro_Number"].ToString().Trim() + "'").Tables[0];
  294. if (!string.IsNullOrEmpty(dt_DressRefundRecord.Rows[0]["DRR_Money"].ToString()))
  295. { cell.Value = Convert.ToDecimal(dt.Rows[t]["Dsro_MortgageAmount"].ToString().Trim()) - Convert.ToDecimal(dt_DressRefundRecord.Rows[0]["DRR_Money"].ToString()); }
  296. else
  297. { cell.Value = dt.Rows[t]["Dsro_MortgageAmount"].ToString().Trim(); }
  298. if (Convert.ToDecimal(cell.Value) > 0)
  299. { cell.Style.BackColor = Color.Red; }
  300. dgvr.Cells.Add(cell);
  301. cell = new DataGridViewTextBoxCell();
  302. cell.Value = dt.Rows[t]["Cus_Name"].ToString().Trim();
  303. dgvr.Cells.Add(cell);
  304. cell = new DataGridViewTextBoxCell();
  305. cell.Value = dt.Rows[t]["Cus_Telephone"].ToString().Trim();
  306. dgvr.Cells.Add(cell);
  307. cell = new DataGridViewTextBoxCell();
  308. cell.Value = Convert.ToDateTime(dt.Rows[t]["Dsro_TakeDressTime"].ToString().Trim()).ToString("yyyy-MM-dd");
  309. dgvr.Cells.Add(cell);
  310. cell = new DataGridViewTextBoxCell();
  311. cell.Value = Convert.ToDateTime(dt.Rows[t]["Dsro_ReservationBackTime"].ToString().Trim()).ToString("yyyy-MM-dd");
  312. dgvr.Cells.Add(cell);
  313. cell = new DataGridViewTextBoxCell();
  314. cell.Value = dt.Rows[t]["Dsro_Remark"].ToString().Trim();
  315. dgvr.Cells.Add(cell);
  316. LYFZ.BLL.BLL_ErpUser UserBll = new BLL.BLL_ErpUser();
  317. cell = new DataGridViewTextBoxCell();
  318. cell.Value = UserBll.GetUserName(dt.Rows[t]["Dsro_CreateName"].ToString().Trim());
  319. dgvr.Cells.Add(cell);
  320. cell = new DataGridViewTextBoxCell();
  321. cell.Value = Convert.ToDateTime(dt.Rows[t]["Dsro_CreateDateTime"].ToString().Trim()).ToString("yyyy-MM-dd");
  322. dgvr.Cells.Add(cell);
  323. this.dgv.Rows.Add(dgvr);
  324. dgv.ClearSelection();
  325. #endregion
  326. }
  327. }));
  328. }
  329. #region 单元格变色
  330. //for (int i = 0; i < dgv.Rows.Count; i++)
  331. //{
  332. // string Dsro_Number = dgv.Rows[i].Cells["Dsro_Number"].Value.ToString();
  333. // LYFZ.BLL.BLL_ErpDressSaleRentalDetail DressSaleRentalDetailBll = new BLL.BLL_ErpDressSaleRentalDetail();
  334. // dt = new DataTable();
  335. // dt = DressSaleRentalDetailBll.GetList("Dsrd_Number='" + Dsro_Number + "' and Dsrd_BackStatus='3'").Tables[0];
  336. // if (dt.Rows.Count > 0)
  337. // {
  338. // this.dgv.Rows[i].DefaultCellStyle.ForeColor = Color.Red;
  339. // }
  340. // else { this.dgv.Rows[i].DefaultCellStyle.ForeColor = Color.Blue; }
  341. //}
  342. #endregion
  343. });
  344. try
  345. {
  346. this.ucPagerEx1.TbDataSource = dt;
  347. }
  348. catch { }
  349. return pageData.TotalCount;
  350. }
  351. #endregion
  352. }
  353. }