FrmWeddingEntry.cs 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. using LYFZ.Software.MainBusiness.DoorCityProcess;
  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.FinancialManagement.PieceCommissionRecords
  11. {
  12. public partial class FrmWeddingEntry : LYFZ.Software.UI.FinancialManagement.PieceCommissionRecords.FrmWeddingEntry
  13. {
  14. LYFZ.BLL.BLL_ErpSystemCategory csbll = new BLL.BLL_ErpSystemCategory();
  15. LYFZ.BLL.BLL_ErpPieceCommissionRecords pcrsbll = new BLL.BLL_ErpPieceCommissionRecords();
  16. public FrmWeddingEntry()
  17. { this.FormClosed += FrmWeddingEntry_FormClosed; }
  18. bool bl = false;
  19. /// <summary>
  20. ///
  21. /// </summary>
  22. /// <param name="sender"></param>
  23. /// <param name="e"></param>
  24. void FrmWeddingEntry_FormClosed(object sender, FormClosedEventArgs e)
  25. {
  26. if (this.bl == true)
  27. { this.DialogResult = DialogResult.OK; }
  28. }
  29. /// <summary>
  30. /// 窗体加载事件
  31. /// </summary>
  32. /// <param name="sender"></param>
  33. /// <param name="e"></param>
  34. protected override void FrmWeddingEntry_Shown(object sender, EventArgs e)
  35. {
  36. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbPcr_DigitalDivision);
  37. this.txtPcr_Date.Text = SDateTime.Now.ToString();
  38. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBBBABBEBAIHGDCB", this.cmbtreevCompletionContents, IsFirstNodeNull: true);
  39. }
  40. /// <summary>
  41. /// 关闭
  42. /// </summary>
  43. /// <param name="sender"></param>
  44. /// <param name="e"></param>
  45. protected override void btnClose_Click(object sender, EventArgs e)
  46. {
  47. this.Close();
  48. if (this.bl == true)
  49. { this.DialogResult = DialogResult.OK; }
  50. }
  51. /// <summary>
  52. /// 保存
  53. /// </summary>
  54. /// <param name="sender"></param>
  55. /// <param name="e"></param>
  56. protected override void btnSave_Click(object sender, EventArgs e)
  57. {
  58. try
  59. {
  60. if (string.IsNullOrEmpty(this.txtOrd_Number.Text))
  61. { MessageBoxCustom.Show("订单号不能为空!请查找客户!"); return; }
  62. if (string.IsNullOrEmpty(this.txtPcr_Date.DateValue))
  63. { MessageBoxCustom.Show("日期不能为空!"); return; }
  64. if (string.IsNullOrEmpty(this.cmbPcr_DigitalDivision.Text.Trim()))
  65. { MessageBoxCustom.Show("提成人不能为空!"); return; }
  66. if (string.IsNullOrEmpty(this.cmbtreevCompletionContents.Text.Trim()))
  67. { MessageBoxCustom.Show("工作内容不能为空!"); return; }
  68. if (string.IsNullOrEmpty(this.txtPcr_Quantity.Text))
  69. { MessageBoxCustom.Show("数量不能为空!"); return; }
  70. LYFZ.Model.Model_ErpPieceCommissionRecords model = new Model.Model_ErpPieceCommissionRecords();
  71. model.Pcr_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  72. model.Pcr_OrderNumber = this.txtOrd_Number.Text;
  73. model.Pcr_DigitalDivision = this.cmbPcr_DigitalDivision.Tag.ToString();
  74. model.Pcr_Date = Convert.ToDateTime(this.txtPcr_Date.DateTimeValue);
  75. model.Pcr_CompletionContents = this.cmbtreevCompletionContents.Tag.ToString().Trim();
  76. model.Pcr_Quantity = Convert.ToDecimal(this.txtPcr_Quantity.Text);
  77. model.Pcr_CreateTime = SDateTime.Now;
  78. model.Pcr_EntryPeople = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  79. model.Pcr_Type = 0;
  80. model.Pcr_OrderSource = StrOrdType;
  81. if (pcrsbll.Add(model))
  82. {
  83. MessageBoxCustom.Show("保存成功!可继续录入资料!");
  84. this.cmbtreevCompletionContents.SetTextAndTag_ValueNull();
  85. this.txtPcr_Quantity.Text = "";
  86. this.bl = true;
  87. }
  88. else
  89. { MessageBoxCustom.Show("保存失败!"); }
  90. }
  91. catch (Exception ex)
  92. { MessageBoxCustom.Show(ex.Message); }
  93. }
  94. /// <summary>
  95. /// 设置
  96. /// </summary>
  97. /// <param name="sender"></param>
  98. /// <param name="e"></param>
  99. protected override void btnSet_Click(object sender, EventArgs e)
  100. {
  101. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
  102. frm.TypeName = "BEBBBABBEBAIHGDCB";
  103. frm.Version = "Version";
  104. if (frm.ShowDialog() == DialogResult.OK)
  105. { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBBBABBEBAIHGDCB", this.cmbtreevCompletionContents, IsFirstNodeNull: true); }
  106. }
  107. /// <summary>
  108. /// 文本框设置
  109. /// </summary>
  110. /// <param name="sender"></param>
  111. /// <param name="e"></param>
  112. protected override void txtPcr_Quantity_KeyPress(object sender, KeyPressEventArgs e)
  113. {
  114. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  115. { e.Handled = true; }
  116. else if (Char.IsPunctuation(e.KeyChar))
  117. {
  118. if (e.KeyChar == '.')
  119. {
  120. if (((System.Windows.Forms.TextBox)sender).Text.LastIndexOf('.') != -1)
  121. { e.Handled = true; }
  122. }
  123. else
  124. { e.Handled = true; }
  125. }
  126. }
  127. string StrOrdType = "";
  128. /// <summary>
  129. /// 选择订单
  130. /// </summary>
  131. /// <param name="sender"></param>
  132. /// <param name="e"></param>
  133. protected override void btnSelect_Click(object sender, EventArgs e)
  134. {
  135. LYFZ.Software.MainBusiness.FinancialManagement.PieceCommissionRecords.FrmSelectCustomer frm = new FrmSelectCustomer();
  136. frm.ShowDialog();
  137. if (!string.IsNullOrEmpty(frm.Ord_Number))
  138. {
  139. this.StrOrdType = frm.Ord_Type;
  140. this.txtOrd_Number.Text = frm.Ord_Number;
  141. this.txtOrd_SeriesName.Text = frm.Ord_SeriesName;
  142. this.txtOrd_CustomerName1.Text = frm.Ord_CustomerName1;
  143. this.txtOrd_OrdersPerson.Text = frm.Ord_OrdersPerson;
  144. }
  145. }
  146. }
  147. }