FrmOtherIncomeEntry.cs 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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. namespace LYFZ.Software.MainBusiness.FinancialManagement.OtherIncome
  10. {
  11. public partial class FrmOtherIncomeEntry : LYFZ.Software.UI.FinancialManagement.OtherIncome.FrmOtherIncomeEntry
  12. {
  13. LYFZ.BLL.BLL_ErpOtherIncomeAndExpenses oiebll = new BLL.BLL_ErpOtherIncomeAndExpenses();
  14. public FrmOtherIncomeEntry()
  15. {
  16. }
  17. /// <summary>
  18. /// 是否保存
  19. /// </summary>
  20. public bool IsSaveed = false;
  21. /// <summary>
  22. /// 窗体加载事件
  23. /// </summary>
  24. /// <param name="sender"></param>
  25. /// <param name="e"></param>
  26. protected override void FrmOtherIncomeEntry_Load(object sender, EventArgs e)
  27. {
  28. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_PaymentMethod(this.cmbPay_PaymentMethod, IsShowAll: false);
  29. this.txtOiae_IEDatetime.Text = SDateTime.Now.ToString();
  30. this.txtOiae_PersonHandling.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  31. ///控制财务管理扫码支付的版本权
  32. List<Control> hideControl = new List<Control>();
  33. hideControl.Add(cmbPay_PaymentMethod);
  34. LYFZ.Software.MainBusiness.VersionControl.StaticVersion.BindVersionShowHideControl(VersionControl.VersionFunctionEnum.财务管理扫码支付, hideControl, null, null);
  35. }
  36. /// <summary>
  37. /// 设置
  38. /// </summary>
  39. /// <param name="sender"></param>
  40. /// <param name="e"></param>
  41. protected override void btnSet_Click(object sender, EventArgs e)
  42. {
  43. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet set = new InitialSet.FrmSystemSet();
  44. set.TypeName = "BEBACCAFCCEAGAIHH";
  45. set.Version = "Version";
  46. if (set.ShowDialog() == DialogResult.OK)
  47. { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_PaymentMethod(this.cmbPay_PaymentMethod, IsShowAll: false); }
  48. }
  49. /// <summary>
  50. /// 输入框设置
  51. /// </summary>
  52. /// <param name="sender"></param>
  53. /// <param name="e"></param>
  54. protected override void txtOiae_Money_KeyPress(object sender, KeyPressEventArgs e)
  55. {
  56. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  57. { e.Handled = true; }
  58. else if (Char.IsPunctuation(e.KeyChar))
  59. {
  60. if (e.KeyChar == '.')
  61. {
  62. if (((System.Windows.Forms.TextBox)sender).Text.LastIndexOf('.') != -1)
  63. { e.Handled = true; }
  64. }
  65. else
  66. { e.Handled = true; }
  67. }
  68. }
  69. /// <summary>
  70. /// 保存
  71. /// </summary>
  72. /// <param name="sender"></param>
  73. /// <param name="e"></param>
  74. protected override void btnSave_Click(object sender, EventArgs e)
  75. {
  76. try
  77. {
  78. #region 判断不能为空
  79. if (string.IsNullOrEmpty(this.txtOiae_ThePayer.Text))
  80. { MessageBoxCustom.Show("付款人不能为空!"); return; }
  81. if (string.IsNullOrEmpty(this.txtOiae_ProjectName.Text))
  82. { MessageBoxCustom.Show("项目名称不能为空!"); return; }
  83. if (string.IsNullOrEmpty(this.txtOiae_Money.Text))
  84. { MessageBoxCustom.Show("金额不能为空!"); return; }
  85. if (string.IsNullOrEmpty(this.cmbPay_PaymentMethod.Text))
  86. { MessageBoxCustom.Show("支付方式不能为空!"); return; }
  87. if (string.IsNullOrEmpty(this.txtOiae_IEDatetime.DateValue))
  88. { MessageBoxCustom.Show("日期不能为空!"); return; }
  89. if (string.IsNullOrEmpty(this.txtOiae_PersonHandling.Text))
  90. { MessageBoxCustom.Show("经手人不能为空!"); return; }
  91. #endregion
  92. #region 2017-03-24 杨云奕 添加 判断是否接入微信支付宝的接口
  93. FinancialPayApiControl PayApi = new FinancialPayApiControl();
  94. int intCode = PayApi.PayApiControl("其他收入", this.cmbPay_PaymentMethod.Text.Trim(), Convert.ToDecimal(this.txtOiae_Money.Text));
  95. string serialnumber = "";
  96. if (intCode == 1)
  97. {
  98. serialnumber = PayApi.SerialNumber;
  99. }
  100. else if (intCode == -1)
  101. {
  102. //MessageBoxCustom.Show("取消微信刷卡支付,保存取消");
  103. return;
  104. }
  105. #endregion
  106. LYFZ.Model.Model_ErpOtherIncomeAndExpenses model = new Model.Model_ErpOtherIncomeAndExpenses();
  107. model.Oiae_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  108. model.Oiae_Type = "收入";
  109. model.Oiae_SerialNumber = serialnumber;
  110. model.Oiae_ProjectName = this.txtOiae_ProjectName.Text;
  111. model.Oiae_Money = Convert.ToDecimal(this.txtOiae_Money.Text);
  112. model.Oiae_IEDatetime = Convert.ToDateTime(this.txtOiae_IEDatetime.DateTimeValue);
  113. model.Oiae_PersonHandling = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  114. model.Oiae_ThePayer = this.txtOiae_ThePayer.Text;
  115. model.Oiae_Invoice = "";
  116. model.Oiae_SourceType = 0;
  117. model.Oiae_OrderNumber = "";
  118. model.Oiae_Remark = this.txtOiae_Remark.Text;
  119. model.Oiae_CreateDateTime = SDateTime.Now;
  120. model.Oiae_PaymentMethod = this.cmbPay_PaymentMethod.Tag.ToString();
  121. model.Oiae_FinancialAuditState = "未审核";
  122. model.Oiae_ManagerAuditState = "未审核";
  123. model.Oiae_CEOAuditState = "未审核";
  124. if (oiebll.Add(model))
  125. {
  126. MessageBoxCustom.Show("保存成功!可继续录入资料!");
  127. this.txtOiae_ThePayer.Text = "";
  128. this.txtOiae_ProjectName.Text = "";
  129. this.txtOiae_Money.Text = "";
  130. this.cmbPay_PaymentMethod.Text = "";
  131. this.txtOiae_Remark.Text = "";
  132. this.txtOiae_IEDatetime.Text = SDateTime.Now.ToString();
  133. this.txtOiae_PersonHandling.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  134. this.txtOiae_IEDatetime.Enabled = false;
  135. this.IsSaveed = true;
  136. }
  137. else
  138. { MessageBoxCustom.Show("保存失败!"); }
  139. }
  140. catch (Exception ex)
  141. { MessageBoxCustom.Show(ex.Message); }
  142. }
  143. /// <summary>
  144. /// 取消
  145. /// </summary>
  146. /// <param name="sender"></param>
  147. /// <param name="e"></param>
  148. protected override void btnCanle_Click(object sender, EventArgs e)
  149. { this.Close(); }
  150. /// <summary>
  151. /// 修改时间
  152. /// </summary>
  153. /// <param name="sender"></param>
  154. /// <param name="e"></param>
  155. protected override void btnUpdateTime_Click(object sender, EventArgs e)
  156. {
  157. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.UpdatePaymentTime))
  158. { this.txtOiae_IEDatetime.Enabled = true; }
  159. else
  160. {
  161. LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm frm = new DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm("OrdersReceivablesCompetence", CustomAttributes.OperatingAuthority.UpdatePaymentTime);
  162. if (frm.ShowDialog() == DialogResult.OK)
  163. {
  164. if (LYFZ.BLL.BLL_ErpUser.GetRights(frm.CurrentAuthorizeUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.UpdatePaymentTime, frm.User_BelongRoles))
  165. {
  166. frm.SetAuthorizationResult();
  167. this.txtOiae_IEDatetime.Enabled = true;
  168. }
  169. else {
  170. frm.SetAuthorizationResult(String.Format("授权失败,授权人没有'{0}'权限", LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm.ConvertEnumToDescription(CustomAttributes.OperatingAuthority.UpdatePaymentTime).ToString()));
  171. }
  172. }
  173. }
  174. }
  175. }
  176. }