FrmSaleManagement.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  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 FrmSaleManagement : LYFZ.Software.UI.Dresses.DressManagement.Rental.FrmSaleManagement
  13. {
  14. private delegate void UpdateControl();
  15. public FrmSaleManagement()
  16. {
  17. this.ucPagerEx1.EventPaging += ucPagerEx1_EventPaging;
  18. }
  19. #region 加载
  20. protected override void FrmSaleManagement_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;
  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. bind();
  59. }
  60. catch (Exception ex)
  61. {
  62. MessageBoxCustom.Show(ex.Message);
  63. }
  64. }
  65. #endregion
  66. #region 删除
  67. protected override void btnDelete_Click(object sender, EventArgs e)
  68. {
  69. if (this.dgv.SelectedRows.Count == 0)
  70. {
  71. MessageBoxCustom.Show("请选中你要删除的数据!");
  72. return;
  73. }
  74. if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  75. {
  76. LYFZ.BLL.BLL_ErpDressSaleRentalOrder bll = new BLL.BLL_ErpDressSaleRentalOrder();
  77. string Dsro_Number = this.dgv.CurrentRow.Cells["Dsro_Number"].Value.ToString();
  78. if (bll.DeleteLf(Dsro_Number) == 1)
  79. {
  80. #region 写入操作日志
  81. string logsContent = "删除出售礼服编号:" + Dsro_Number;
  82. LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog(LYFZ.EnumPublic.SystemLogsType.删除礼服, logsContent, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name);
  83. //LYFZ.BLL.BLL_ErpSystemLogs systemLogsBll = new BLL.BLL_ErpSystemLogs();
  84. //LYFZ.Model.Model_ErpSystemLogs systemLogsModel = new Model.Model_ErpSystemLogs();
  85. //systemLogsModel.Slogs_Type = "user";
  86. //systemLogsModel.Slogs_Topic = "删除出售礼服";
  87. //systemLogsModel.Slogs_Content = "删除出售礼服编号:" + Dsro_Number;
  88. //systemLogsModel.Slogs_UserName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  89. //systemLogsModel.Slogs_IP = "";
  90. //systemLogsModel.Slogs_CreateDatetime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
  91. //systemLogsModel.Slogs_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  92. //systemLogsBll.Add(systemLogsModel);
  93. #endregion
  94. MessageBoxCustom.Show("删除成功!");
  95. bind();
  96. }
  97. else { MessageBoxCustom.Show("删除失败!"); }
  98. }
  99. }
  100. #endregion
  101. #region 修改
  102. protected override void btnUpdate_Click(object sender, EventArgs e)
  103. {
  104. if (dgv.SelectedRows.Count == 0)
  105. {
  106. MessageBoxCustom.Show("请选择你要修改的礼服订单");
  107. return;
  108. }
  109. LYFZ.Software.MainBusiness.Dresses.DressManagement.FrmPreselectedUpdate set = new FrmPreselectedUpdate();
  110. set.Dsro_Number = dgv.CurrentRow.Cells["Dsro_Number"].Value.ToString();
  111. set.type = "0";
  112. if (set.ShowDialog() == DialogResult.OK)
  113. {
  114. bind();
  115. }
  116. }
  117. #endregion
  118. #region 收款
  119. protected override void btnReceivables_Click(object sender, EventArgs e)
  120. {
  121. try
  122. {
  123. if (dgv.SelectedRows.Count == 0)
  124. {
  125. MessageBoxCustom.Show("请选择你要收款的数据!");
  126. return;
  127. }
  128. LYFZ.Software.MainBusiness.Dresses.DressManagement.Rental.FrmPayment set = new FrmPayment();
  129. set.StrOrderNumber = dgv.CurrentRow.Cells["Dsro_Number"].Value.ToString();
  130. if (set.IsSaveed)
  131. {
  132. bind();
  133. }
  134. }
  135. catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
  136. }
  137. #endregion
  138. #region 打印
  139. protected override void btnPrint_Click(object sender, EventArgs e)
  140. {
  141. try
  142. {
  143. if (dgv.SelectedRows.Count == 0)
  144. {
  145. MessageBoxCustom.Show("请选择你要打印的数据!");
  146. return;
  147. }
  148. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintFixedFormat(LYFZ.EnumPublic.PrintTypeEnum.礼服出售清单, this.dgv.CurrentRow.Cells["Dsro_Number"].Value);
  149. }
  150. catch (Exception ex)
  151. {
  152. MessageBoxCustom.Show(ex.Message);
  153. }
  154. }
  155. #endregion
  156. #region 画分页
  157. /// <summary>
  158. /// 画分页
  159. /// </summary>
  160. /// <param name="e"></param>
  161. /// <returns></returns>
  162. private int ucPagerEx1_EventPaging(UCPager.EventPagingArg e)
  163. {
  164. dgv.Rows.Clear();
  165. DataTable dt = new DataTable();
  166. string StrWhere = "";
  167. if (!string.IsNullOrEmpty(txtkeyword.Text))
  168. {
  169. StrWhere += " 1=1 and (Dsro_Number like '%" + txtkeyword.Text.Trim() + "%' or Cus_Name like '%" + txtkeyword.Text.Trim() + "%' or Cus_Telephone like '%" + txtkeyword.Text.Trim() + "%') and Dsro_Type='1'";
  170. }
  171. else
  172. {
  173. StrWhere = " 1=1 and Dsro_Type='1'";
  174. }
  175. LYFZ.UCPager.PageData pageData = new LYFZ.UCPager.PageData();
  176. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  177. {
  178. pageData.TableName = "View_DressSaleRentalOrder";
  179. pageData.PageIndex = this.ucPagerEx1.PageCurrent;
  180. pageData.PageSize = this.ucPagerEx1.PageSize;
  181. pageData.QueryCondition = StrWhere.ToString();
  182. 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";
  183. pageData.OrderStr = "ID desc";
  184. pageData.OrderType = 1;
  185. DataSet da = pageData.QueryDataTable();
  186. dt = da.Tables[0];
  187. if (dt.Rows.Count > 0)
  188. {
  189. this.Invoke(new UpdateControl(delegate()
  190. {
  191. for (int t = 0; t < dt.Rows.Count; t++)
  192. {
  193. #region
  194. DataGridViewRow dgvr = new DataGridViewRow();
  195. DataGridViewCell cell = null;
  196. cell = new DataGridViewTextBoxCell();
  197. cell.Value = dt.Rows[t]["Dsro_Number"].ToString().Trim();
  198. dgvr.Cells.Add(cell);
  199. cell = new DataGridViewTextBoxCell();
  200. cell.Value = dt.Rows[t]["Dsro_Amount"].ToString().Trim();
  201. dgvr.Cells.Add(cell);
  202. //已付
  203. cell = new DataGridViewTextBoxCell();
  204. decimal Paid;
  205. LYFZ.BLL.BLL_ErpPayment Paymentbll = new BLL.BLL_ErpPayment();
  206. DataTable DaPayment = Paymentbll.GetSum(" Pay_OrdNumber='" + dt.Rows[t]["Dsro_Number"].ToString().Trim() + "'").Tables[0];
  207. if (string.IsNullOrEmpty(DaPayment.Rows[0]["Pay_AmountOf"].ToString()))
  208. {
  209. Paid = 0.00m;
  210. }
  211. else { Paid = Convert.ToDecimal(DaPayment.Rows[0]["Pay_AmountOf"]); }
  212. cell.Value = Paid;
  213. dgvr.Cells.Add(cell);
  214. //欠款
  215. cell = new DataGridViewTextBoxCell();
  216. cell.Value = Convert.ToDecimal(dt.Rows[t]["Dsro_Amount"]) - Convert.ToDecimal(Paid);
  217. dgvr.Cells.Add(cell);
  218. //变色
  219. decimal Arrears = Convert.ToDecimal(cell.Value);
  220. if (Arrears < 0 || Arrears > 0)
  221. { dgvr.DefaultCellStyle.ForeColor = Color.Red; }
  222. else { dgvr.DefaultCellStyle.ForeColor = Color.Blue; }
  223. cell = new DataGridViewTextBoxCell();
  224. cell.Value = dt.Rows[t]["Cus_Name"].ToString().Trim();
  225. dgvr.Cells.Add(cell);
  226. cell = new DataGridViewTextBoxCell();
  227. cell.Value = dt.Rows[t]["Cus_Telephone"].ToString().Trim();
  228. dgvr.Cells.Add(cell);
  229. cell = new DataGridViewTextBoxCell();
  230. cell.Value = Convert.ToDateTime(dt.Rows[t]["Dsro_TakeDressTime"].ToString().Trim()).ToString("yyyy-MM-dd");
  231. dgvr.Cells.Add(cell);
  232. cell = new DataGridViewTextBoxCell();
  233. cell.Value = dt.Rows[t]["Dsro_Remark"].ToString().Trim();
  234. dgvr.Cells.Add(cell);
  235. LYFZ.BLL.BLL_ErpUser UserBll = new BLL.BLL_ErpUser();
  236. cell = new DataGridViewTextBoxCell();
  237. cell.Value = UserBll.GetUserName(dt.Rows[t]["Dsro_CreateName"].ToString().Trim());
  238. dgvr.Cells.Add(cell);
  239. cell = new DataGridViewTextBoxCell();
  240. cell.Value = Convert.ToDateTime(dt.Rows[t]["Dsro_CreateDateTime"].ToString().Trim()).ToString("yyyy-MM-dd");
  241. dgvr.Cells.Add(cell);
  242. this.dgv.Rows.Add(dgvr);
  243. dgv.ClearSelection();
  244. #endregion
  245. }
  246. }));
  247. }
  248. });
  249. try
  250. {
  251. this.ucPagerEx1.TbDataSource = dt;
  252. }
  253. catch { }
  254. return pageData.TotalCount;
  255. }
  256. #endregion
  257. }
  258. }