FrmPrePayment.cs 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759
  1. using LYFZ.ComponentLibrary;
  2. using System;
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. using System.ComponentModel;
  6. using System.Data;
  7. using System.Drawing;
  8. using System.Globalization;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Windows.Forms;
  12. namespace LYFZ.Software.MainBusiness.FinancialManagement.OrdersReceivables
  13. {
  14. public partial class FrmPrePayment : LYFZ.Software.UI.FinancialManagement.OrdersReceivables.FrmPrePayment
  15. {
  16. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  17. LYFZ.BLL.BLL_ErpPayment ptbll = new BLL.BLL_ErpPayment();
  18. LYFZ.BLL.BLL_AllViewSet avsbll = new BLL.BLL_AllViewSet();
  19. LYFZ.BLL.BLL_ErpPlusPickItems ppisbll = new BLL.BLL_ErpPlusPickItems();
  20. LYFZ.BLL.BLL_ErpOrdersPhotography opbll = new BLL.BLL_ErpOrdersPhotography();
  21. LYFZ.BLL.BLL_ErpTwoPinsProjectCommissionProportion TwoPinsProjectCommissionProportionBll = new BLL.BLL_ErpTwoPinsProjectCommissionProportion();
  22. public FrmPrePayment()
  23. {
  24. this.Load += FrmPrePayment_Load;
  25. this.Shown += FrmPrePayment_Shown;
  26. this.dtpCreateDatetime.Enter += dtpCreateDatetime_Enter;
  27. this.dtpCreateDatetime.Leave += dtpCreateDatetime_Leave;
  28. this.txtPaymentAmount.KeyPress += txtPaymentAmount_KeyPress;
  29. this.btnSet.Click += btnSet_Click;
  30. this.txtPaymentAmount.EventTextBoxEx_TextChanged += txtPaymentAmount_EventTextBoxEx_TextChanged;
  31. this.btnSave.Click += btnSave_Click;
  32. this.btnDelete.Click += btnDelete_Click;
  33. this.btnPrint.Click += btnPrint_Click;
  34. this.cmbtreevPaymentMethod.ComboBoxTree_NodeMouseClick += cmbtreevPaymentMethod_ComboBoxTree_NodeMouseClick;
  35. this.btnUpdateTime.Click += btnUpdateTime_Click;
  36. this.btnNotPayment.Click += btnNotPayment_Click;
  37. this.btnPerformance.Click += BtnPerformance_Click;
  38. this.btnDelPerformance.Click += BtnDelPerformance_Click;
  39. this.dgvData.CellDoubleClick += DgvData_CellDoubleClick;
  40. //TestData();
  41. }
  42. private void DgvData_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
  43. {
  44. if (e.RowIndex >= 0 && e.ColumnIndex >= 0)
  45. {
  46. if (e.ColumnIndex == 4)
  47. {
  48. DataGridViewRow gridViewRow = this.dgvData.Rows[e.RowIndex];
  49. if (gridViewRow.Tag != null)
  50. {
  51. DataRow dataRow = (DataRow)gridViewRow.Tag;
  52. decimal Pay_AmountOf =Convert.ToDecimal(dataRow["Pay_AmountOf"].ToString());
  53. string commissionRatioJsonData = "";
  54. if (dataRow["Pay_CommissionRatio"] != null)
  55. {
  56. commissionRatioJsonData = dataRow["Pay_CommissionRatio"].ToString();
  57. }
  58. if (String.IsNullOrWhiteSpace(commissionRatioJsonData))
  59. {
  60. MessageBoxCustom.Show("当前这笔收款项未做自定义业绩分配");
  61. return;
  62. }
  63. else {
  64. LYFZ.Software.MainBusiness.DoorCityProcess.frmCustomPerformance customPerformance = new MainBusiness.DoorCityProcess.frmCustomPerformance();
  65. try
  66. {
  67. customPerformance.CollectionAmount = Pay_AmountOf;
  68. customPerformance.IsReadOnly = true;
  69. customPerformance.PersonCommissionRatioJsonDataInitialization(commissionRatioJsonData);
  70. customPerformance.BindPerformancePersonControls();
  71. customPerformance.ShowDialog();
  72. }
  73. catch (Exception ex)
  74. {
  75. MessageBoxCustom.Show(String.Format("收款金额输入格式不正确:{0}", ex.Message));
  76. return;
  77. }
  78. }
  79. }
  80. else {
  81. MessageBoxCustom.Show("当前收款记录异常");
  82. return;
  83. }
  84. }
  85. }
  86. }
  87. LYFZ.BLL.OrderPersonCommissionRatio currentPersonCommissionRatio = null;
  88. private void BtnDelPerformance_Click(object sender, EventArgs e)
  89. {
  90. this.ClearPerformance();
  91. }
  92. /// <summary>
  93. /// 清除业绩分配
  94. /// </summary>
  95. void ClearPerformance()
  96. {
  97. this.listBoxPerformance.Items.Clear();
  98. this.listBoxPerformance.Tag = null;
  99. this.currentPersonCommissionRatio = null;
  100. }
  101. private void BtnPerformance_Click(object sender, EventArgs e)
  102. {
  103. if (this.erpOrderModel != null)
  104. {
  105. LYFZ.Software.MainBusiness.DoorCityProcess.frmCustomPerformance customPerformance = new MainBusiness.DoorCityProcess.frmCustomPerformance();
  106. try
  107. {
  108. customPerformance.CollectionAmount = Convert.ToDecimal(this.txtPaymentAmount.Text.Trim());
  109. if (this.listBoxPerformance.Items.Count > 0&& this.currentPersonCommissionRatio!=null)
  110. {
  111. customPerformance.PersonCommissionRatio = this.currentPersonCommissionRatio;
  112. }
  113. else
  114. {
  115. if (!String.IsNullOrWhiteSpace(this.erpOrderModel.Ord_CommissionRatio))
  116. {
  117. customPerformance.PersonCommissionRatioJsonDataInitialization(this.erpOrderModel.Ord_CommissionRatio);
  118. }
  119. else
  120. {
  121. customPerformance.OrderPersonInitialization(this.erpOrderModel.Ord_OrderPersonNumber);
  122. }
  123. }
  124. customPerformance.BindPerformancePersonControls();
  125. if (customPerformance.ShowDialog() == DialogResult.OK)
  126. {
  127. this.listBoxPerformance.Items.Clear();
  128. this.currentPersonCommissionRatio = customPerformance.PersonCommissionRatio;
  129. customPerformance.BindListBoxPerformance(this.listBoxPerformance);
  130. }
  131. }
  132. catch (Exception ex)
  133. {
  134. MessageBoxCustom.Show(String.Format("收款金额输入格式不正确:{0}", ex.Message));
  135. }
  136. }
  137. }
  138. /// <summary>
  139. /// 是否保存
  140. /// </summary>
  141. public bool IsSaveed = false;
  142. /// <summary>
  143. /// 订单号
  144. /// </summary>
  145. public string StrOrdNumber;
  146. /// <summary>
  147. /// 主客户编号
  148. /// </summary>
  149. private string StrClientNumber;
  150. private bool _isShowButtonPayment;
  151. public string guid = "";
  152. /// <summary>
  153. /// 是否显示不收款按钮
  154. /// </summary>
  155. public bool IsShowButtonPayment
  156. {
  157. get { return _isShowButtonPayment; }
  158. set
  159. {
  160. _isShowButtonPayment = value;
  161. this.btnNotPayment.Visible = _isShowButtonPayment;
  162. if (!_isShowButtonPayment)
  163. {
  164. this.btnSave.Location = new Point(this.btnSave.Location.X - 40, this.btnSave.Location.Y);
  165. this.btnSave.Width += 10;
  166. }
  167. else
  168. {
  169. this.btnSave.Location = new Point(866, this.btnSave.Location.Y);
  170. this.btnSave.Width = 75;
  171. }
  172. }
  173. }
  174. /// <summary>
  175. /// 窗体加载事件
  176. /// </summary>
  177. /// <param name="sender"></param>
  178. /// <param name="e"></param>
  179. void FrmPrePayment_Load(object sender, EventArgs e)
  180. {
  181. string ExecuteSql = "select Ord_SeriesPrice AS EarlyAmount," +
  182. "isnull((select Sum(Pay_AmountOf) from tb_ErpPayment Where Pay_OrdNumber = Ord_Number And Pay_Category in ('全款','预约收款','预约补款')),0) AS EarlyReceivedAmount," +
  183. "isnull((select Sum(Plu_Amount) from tb_ErpPlusPickItems Where Plu_OrdNumber = Ord_Number),0) AS LateAmount," +
  184. "isnull((select Sum(Pay_AmountOf) from tb_ErpPayment Where Pay_OrdNumber = Ord_Number And Pay_Category = '后期收款'),0) AS LateReceivedAmount " +
  185. "from tb_ErpOrder Where Ord_Number = '" + this.StrOrdNumber + "'";
  186. DataTable dt = orbll.GetView_Custom(ExecuteSql).Tables[0];
  187. if (dt.Rows.Count > 0)
  188. {
  189. this.txtCopeAmount.Text = (Convert.ToDecimal(dt.Rows[0]["EarlyAmount"]) + Convert.ToDecimal(dt.Rows[0]["LateAmount"])).ToString();
  190. this.txtPaidAmount.Text = (Convert.ToDecimal(dt.Rows[0]["EarlyReceivedAmount"]) + Convert.ToDecimal(dt.Rows[0]["LateReceivedAmount"])).ToString();
  191. this.txtEarlyArrearsAmount.Text = (Convert.ToDecimal(dt.Rows[0]["EarlyAmount"]) - Convert.ToDecimal(dt.Rows[0]["EarlyReceivedAmount"])).ToString();
  192. this.txtLateArrearsAmount.Text = (Convert.ToDecimal(dt.Rows[0]["LateAmount"]) - Convert.ToDecimal(dt.Rows[0]["LateReceivedAmount"])).ToString();
  193. if (Convert.ToDecimal(this.txtEarlyArrearsAmount.Text) > 0)
  194. { this.txtPaymentAmount.Text = this.txtEarlyArrearsAmount.Text.Trim(); }
  195. else
  196. { this.txtPaymentAmount.Text = ""; }
  197. }
  198. else
  199. {
  200. this.txtCopeAmount.Text = "0";
  201. this.txtPaidAmount.Text = "0";
  202. this.txtEarlyArrearsAmount.Text = "0";
  203. this.txtLateArrearsAmount.Text = "0";
  204. this.txtPaymentAmount.Text = "";
  205. }
  206. }
  207. LYFZ.Model.Model_ErpOrder erpOrderModel = null;
  208. /// <summary>
  209. /// 加载数据
  210. /// </summary>
  211. /// <param name="sender"></param>
  212. /// <param name="e"></param>
  213. void FrmPrePayment_Shown(object sender, EventArgs e)
  214. {
  215. try
  216. {
  217. this.btnDelete.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.Delete);
  218. this.btnSet.Enabled= LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.OrderPaymentMethodSet);
  219. if (!string.IsNullOrEmpty(this.StrOrdNumber))
  220. {
  221. erpOrderModel = orbll.GetModel(this.StrOrdNumber);
  222. if (erpOrderModel != null && erpOrderModel.ID > 0)
  223. {
  224. DataTable dt = orbll.GetView_Custom("tb_ErpOrder left join tempTB_AggregationCustomer on tb_ErpOrder.Ord_Number = GP_OrderNumber", StrWhere: "Ord_Number = '" + this.StrOrdNumber + "'", ShowColumnName: "Ord_SinceOrderNumber,M_Cus_CustomerNumber,Cus_Name AS 客户姓名,Ord_OrderPersonName as 接单人").Tables[0];
  225. if (dt.Rows.Count > 0)
  226. {
  227. this.txtOrderNumber.Text = dt.Rows[0]["Ord_SinceOrderNumber"].ToString();
  228. this.StrClientNumber = dt.Rows[0]["M_Cus_CustomerNumber"].ToString();
  229. this.txtOrderClinetName.Text = dt.Rows[0]["客户姓名"].ToString();
  230. this.txtOpenOrderPerson.Text = dt.Rows[0]["接单人"].ToString();
  231. this.txtThePayeeName.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  232. this.dtpCreateDatetime.Text = SDateTime.Now.ToString("yyyy-MM-dd");
  233. }
  234. this.FrmPrePayment_Load(this, null);
  235. }
  236. else {
  237. erpOrderModel = null;
  238. MessageBoxCustom.Show("订单数据加载失败,或订单已被删除");
  239. }
  240. }
  241. else {
  242. MessageBoxCustom.Show("缺少收款订单号参数");
  243. return;
  244. }
  245. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_PaymentMethod(this.cmbtreevPaymentMethod);
  246. // 获取全部历史收款
  247. this.PublicFunctionRows();
  248. ///控制财务管理扫码支付的版本权
  249. List<Control> hideControl = new List<Control>();
  250. hideControl.Add(cmbtreevPaymentMethod);
  251. LYFZ.Software.MainBusiness.VersionControl.StaticVersion.BindVersionShowHideControl(VersionControl.VersionFunctionEnum.财务管理扫码支付, hideControl, null, null);
  252. }
  253. catch (Exception ex)
  254. { MessageBoxCustom.Show(ex.Message); }
  255. }
  256. /// <summary>
  257. /// 全部历史收款
  258. /// </summary>
  259. void PublicFunctionRows()
  260. {
  261. this.dgvData.Rows.Clear();
  262. DataTable dt = ptbll.View_ErpPayment("Pay_OrdNumber='" + StrOrdNumber + "'").Tables[0];
  263. if (dt.Rows.Count > 0)
  264. {
  265. for (int t = 0; t < dt.Rows.Count; t++)
  266. {
  267. DataGridViewRow dgvr = new DataGridViewRow();
  268. DataGridViewCell cell = null;
  269. cell = new DataGridViewTextBoxCell();
  270. cell.Value = dt.Rows[t]["ID"].ToString();
  271. dgvr.Cells.Add(cell);
  272. cell = new DataGridViewTextBoxCell();
  273. cell.Value = dt.Rows[t]["Pay_ShootingName"].ToString();
  274. dgvr.Cells.Add(cell);
  275. cell = new DataGridViewTextBoxCell();
  276. cell.Value = Convert.ToDecimal(dt.Rows[t]["Pay_AmountOf"]).ToString();
  277. dgvr.Cells.Add(cell);
  278. cell = new DataGridViewTextBoxCell();
  279. cell.Value = LYFZ.Command.Command_Validate.DateTimeToString(dt.Rows[t]["Pay_CreateDatetime"], "yyyy-MM-dd HH:mm");
  280. dgvr.Cells.Add(cell);
  281. cell = new DataGridViewTextBoxCell();
  282. cell.Value = dt.Rows[t]["Pay_UserName"].ToString().Trim();
  283. dgvr.Cells.Add(cell);
  284. cell = new DataGridViewTextBoxCell();
  285. cell.Value = dt.Rows[t]["Pay_ThePayeeName"].ToString().Trim();
  286. dgvr.Cells.Add(cell);
  287. cell = new DataGridViewTextBoxCell();
  288. cell.Value = dt.Rows[t]["Pay_PaymentMethodName"].ToString().Trim(); ;
  289. dgvr.Cells.Add(cell);
  290. cell = new DataGridViewTextBoxCell();
  291. cell.Value = dt.Rows[t]["Pay_Category"].ToString().Trim();
  292. dgvr.Cells.Add(cell);
  293. cell = new DataGridViewTextBoxCell();
  294. cell.Value = dt.Rows[t]["Pay_ReceivableProject"].ToString().Trim();
  295. dgvr.Cells.Add(cell);
  296. cell = new DataGridViewTextBoxCell();
  297. cell.Value = dt.Rows[t]["Pay_TwoPinsCategoryName"].ToString().Trim();
  298. dgvr.Cells.Add(cell);
  299. cell = new DataGridViewTextBoxCell();
  300. cell.Value = dt.Rows[t]["Pay_PaymentDiscount"].ToString().Trim();
  301. dgvr.Cells.Add(cell);
  302. cell = new DataGridViewTextBoxCell();
  303. cell.Value = dt.Rows[t]["Pay_DiscountAmount"].ToString().Trim();
  304. dgvr.Cells.Add(cell);
  305. cell = new DataGridViewTextBoxCell();
  306. cell.Value = dt.Rows[t]["Pay_Remark"].ToString().Trim();
  307. dgvr.Cells.Add(cell);
  308. dgvr.Tag = dt.Rows[t];
  309. this.dgvData.Rows.Add(dgvr);
  310. }
  311. this.dgvData.ClearSelection();
  312. }
  313. }
  314. /// <summary>
  315. /// 时间控件
  316. /// </summary>
  317. /// <param name="sender"></param>
  318. /// <param name="e"></param>
  319. void dtpCreateDatetime_Enter(object sender, EventArgs e)
  320. {
  321. if (string.IsNullOrEmpty(this.dtpCreateDatetime.DateValue))
  322. { this.dtpCreateDatetime.DateValue = SDateTime.Now.ToString("yyyy-MM-dd"); }
  323. }
  324. /// <summary>
  325. /// 时间控件
  326. /// </summary>
  327. /// <param name="sender"></param>
  328. /// <param name="e"></param>
  329. void dtpCreateDatetime_Leave(object sender, EventArgs e)
  330. {
  331. if (string.IsNullOrEmpty(this.dtpCreateDatetime.DateValue))
  332. {
  333. this.dtpCreateDatetime.Text = "";
  334. MessageBoxCustom.Show("收款时间格式输入错误");
  335. }
  336. }
  337. /// <summary>
  338. /// 输入框设置
  339. /// </summary>
  340. /// <param name="sender"></param>
  341. /// <param name="e"></param>
  342. void txtPaymentAmount_KeyPress(object sender, KeyPressEventArgs e)
  343. {
  344. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  345. { e.Handled = true; }
  346. else if (Char.IsPunctuation(e.KeyChar))
  347. {
  348. if (e.KeyChar == '.' || e.KeyChar == '-')
  349. {
  350. if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('.') != -1)
  351. { e.Handled = true; }
  352. }
  353. else
  354. { e.Handled = true; }
  355. }
  356. }
  357. /// <summary>
  358. /// 支付方式设置
  359. /// </summary>
  360. /// <param name="sender"></param>
  361. /// <param name="e"></param>
  362. void btnSet_Click(object sender, EventArgs e)
  363. {
  364. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
  365. frm.TypeName = "BEBACCAFCCEAGAIHH";
  366. frm.Version = "Version";
  367. if (frm.ShowDialog() == DialogResult.OK)
  368. { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACCAFCCEAGAIHH", this.cmbtreevPaymentMethod); }
  369. }
  370. /// <summary>
  371. /// 获取收款类别
  372. /// </summary>
  373. /// <param name="sender"></param>
  374. /// <param name="e"></param>
  375. void txtPaymentAmount_EventTextBoxEx_TextChanged(object sender, EventArgs e)
  376. {
  377. this.txtPaymentCategory.Text = LYFZ.BLL.BLL_ErpPayment.GetPaymentType(this.StrOrdNumber, this.txtPaymentAmount.Text);
  378. }
  379. /// <summary>
  380. /// 保存
  381. /// </summary>
  382. /// <param name="sender"></param>
  383. /// <param name="e"></param>
  384. void btnSave_Click(object sender, EventArgs e)
  385. {
  386. try
  387. {
  388. if (this.erpOrderModel == null)
  389. {
  390. MessageBoxCustom.Show("订单数据加载不正确,不能收款");
  391. return;
  392. }
  393. if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.OrdersReceivables))
  394. {
  395. LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm frm = new DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm("OrdersReceivablesCompetence", CustomAttributes.OperatingAuthority.OrdersReceivables);
  396. if (frm.ShowDialog() == DialogResult.OK)
  397. {
  398. if (!LYFZ.BLL.BLL_ErpUser.GetRights(frm.CurrentAuthorizeUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.OrdersReceivables, frm.User_BelongRoles))
  399. {
  400. frm.SetAuthorizationResult(String.Format("授权失败,授权人没有'{0}'权限", LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm.ConvertEnumToDescription(CustomAttributes.OperatingAuthority.OrdersReceivables).ToString()));
  401. return; }
  402. else {
  403. frm.SetAuthorizationResult();
  404. }
  405. }
  406. else
  407. { return; }
  408. }
  409. #region 判断不能为空
  410. if (string.IsNullOrEmpty(this.txtOrderNumber.Text))
  411. {
  412. MessageBoxCustom.Show("订单单号不能为空!"); return;
  413. }
  414. if (string.IsNullOrEmpty(this.txtPaymentAmount.Text))
  415. {
  416. MessageBoxCustom.Show("收款金额不能为空!"); return;
  417. }
  418. if (string.IsNullOrEmpty(this.cmbtreevPaymentMethod.Text))
  419. {
  420. MessageBoxCustom.Show("支付方式不能为空!"); return;
  421. }
  422. if (string.IsNullOrEmpty(this.txtOpenOrderPerson.Text))
  423. {
  424. MessageBoxCustom.Show("开单人不能为空!"); return;
  425. }
  426. if (string.IsNullOrEmpty(this.txtThePayeeName.Text))
  427. {
  428. MessageBoxCustom.Show("收款人不能为空!"); return;
  429. }
  430. if (string.IsNullOrEmpty(this.dtpCreateDatetime.DateValue))
  431. {
  432. MessageBoxCustom.Show("收款时间不能为空!"); return;
  433. }
  434. if (Convert.ToDecimal(this.txtEarlyArrearsAmount.Text) < Convert.ToDecimal(txtPaymentAmount.Text))
  435. {
  436. if( MessageBoxCustom.Show("收款金额超过前期欠款金额(" + this.txtEarlyArrearsAmount.Text + ")!\r\n是否继续操作?",
  437. "提示消息",
  438. MessageBoxButtons.YesNo)== DialogResult.No)
  439. {
  440. return;
  441. }
  442. }
  443. #endregion
  444. #region 2017-03-24 杨云奕 添加 判断是否接入微信支付宝的接口
  445. FinancialPayApiControl PayApi = new FinancialPayApiControl();
  446. // int intCode = PayApi.PayApiControl(StrOrdNumber, this.cmbtreevPaymentMethod.SelectedNode.Text, Convert.ToDecimal(this.txtPaymentAmount.Text));
  447. //2017-04-03 刘工修改
  448. int intCode = PayApi.PayApiControl(StrOrdNumber, this.cmbtreevPaymentMethod.Text.Trim(), Convert.ToDecimal(this.txtPaymentAmount.Text));
  449. string serialnumber = "";
  450. if (intCode == 1)
  451. {
  452. serialnumber = PayApi.SerialNumber;
  453. }
  454. else if (intCode == -1)
  455. {
  456. //MessageBoxCustom.Show("取消微信刷卡支付,保存取消");
  457. return;
  458. }
  459. #endregion
  460. //DataTable dt = orbll.GetView_Custom("tb_ErpOrder", StrWhere: " Ord_Number='" + this.StrOrdNumber + "'", ShowColumnName: "Ord_OrderPersonNumber,Ord_CommissionRatio,Ord_SinceOrderNumber").Tables[0];
  461. List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
  462. #region 保存
  463. LYFZ.Model.Model_ErpPayment model = new Model.Model_ErpPayment();
  464. model.Pay_OrdNumber = this.StrOrdNumber.Trim();
  465. model.Pay_ViceNumber = "";
  466. model.pay_SerialNumber = serialnumber;
  467. model.Pay_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  468. model.Pay_AmountOf = Convert.ToDecimal(this.txtPaymentAmount.Text);
  469. model.Pay_OpenSingle = this.erpOrderModel.Ord_OrderPersonNumber;//dt.Rows[0]["Ord_OrderPersonNumber"].ToString();
  470. model.Pay_ThePayee = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  471. model.Pay_PaymentMethod = this.cmbtreevPaymentMethod.Tag.ToString();
  472. model.Pay_OrdersLocation = "";
  473. model.Pay_ReceivableProject = "";
  474. model.Pay_Remark = txtPaymentRemark.Text;
  475. model.Pay_CreateDatetime = Convert.ToDateTime(this.dtpCreateDatetime.DateTimeValue);
  476. model.Pay_Category = txtPaymentCategory.Text;
  477. model.Pay_TwoPinsCategory = "";
  478. model.Pay_Type = 0;
  479. model.Pay_CommissionRatio = this.erpOrderModel.Ord_CommissionRatio;//dt.Rows[0]["Ord_CommissionRatio"].ToString();
  480. if (this.listBoxPerformance.Items.Count>0&&this.currentPersonCommissionRatio != null)
  481. {
  482. model.Pay_OpenSingle = this.currentPersonCommissionRatio.ToOrderPersons();
  483. model.Pay_CommissionRatio = this.currentPersonCommissionRatio.ToString();
  484. }
  485. if (modelpm == null)
  486. {
  487. modelpm = new BLL.MemberCardPaymentModel();
  488. modelpm.PaymentAmount = Convert.ToDecimal(this.txtPaymentAmount.Text);
  489. modelpm.RechargeDiscount = 0;
  490. modelpm.DiscountAmount = 0;
  491. modelpm.StrOrdNumber = this.StrOrdNumber;
  492. modelpm.StrPaymentMethod = "其他";
  493. modelpm.StrReturnType = "clist";
  494. }
  495. model.Pay_PaymentDiscount = modelpm.RechargeDiscount;
  496. model.Pay_DiscountAmount = modelpm.DiscountAmount;
  497. model.Pay_McNumber = modelpm.StrCardNumber;
  498. clist.Add(ptbll.GetAddCommandInfo(model));
  499. clist.AddRange(LYFZ.BLL.OrderPayment_Member.BeforePeriodPayment(StrClientNumber, modelpm, StrSource: "订单前期", strGuid : guid));
  500. if (ptbll.GetRecordCount("Pay_OrdNumber = '" + this.StrOrdNumber + "'") <= 0)
  501. {
  502. LYFZ.Model.Model_ErpOrder modelOrder = orbll.GetModel("Ord_Number", this.StrOrdNumber);
  503. modelOrder.Ord_Price = model.Pay_AmountOf;
  504. modelOrder.Ord_UpdateDateTime = SDateTime.Now;
  505. modelOrder.Ord_UpdateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  506. clist.Add(orbll.GetUpdateCommandInfo(modelOrder));
  507. }
  508. if (clist.Count > 0)
  509. {
  510. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) <= 0)
  511. { MessageBoxCustom.Show("收款失败!"); return; }
  512. this.cmbtreevPaymentMethod.SetTextAndTag_ValueNull();
  513. MessageBoxCustom.Show("收款成功!");
  514. ///付款后短信提醒
  515. LYFZ.BLL.BLL_ErpSMSRecord.SendMsgByPayment(
  516. StrOrdNumber,
  517. this.erpOrderModel.Ord_SinceOrderNumber,//dt.Rows[0]["Ord_SinceOrderNumber"].ToString(),
  518. Convert.ToDecimal(this.txtPaymentAmount.Text).ToString("0.00"),
  519. this.cmbtreevPaymentMethod.Text,
  520. SDateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  521. );
  522. this.ClearPerformance();
  523. this.FrmPrePayment_Load(this, null);
  524. this.PublicFunctionRows();
  525. this.dtpCreateDatetime.Text = SDateTime.Now.ToString();
  526. this.txtPaymentAmount.Text = "";
  527. this.cmbtreevPaymentMethod.Text = "";
  528. this.txtPaymentCategory.Text = "";
  529. this.txtPaymentRemark.Text = "";
  530. this.IsSaveed = true;
  531. }
  532. #endregion
  533. }
  534. catch (Exception ex)
  535. {
  536. if (ex.Message.ToLower().Contains("IX_IX_MacD_ID_tb_ErpMemberCardAmountChangeLOG".ToLower()))
  537. {
  538. MessageBoxCustom.Show("扣款出错,原因:储值卡数据标识重复!");
  539. }
  540. else
  541. {
  542. MessageBoxCustom.Show(ex.Message);
  543. }
  544. }
  545. }
  546. /// <summary>
  547. /// 删除
  548. /// </summary>
  549. /// <param name="sender"></param>
  550. /// <param name="e"></param>
  551. void btnDelete_Click(object sender, EventArgs e)
  552. {
  553. try
  554. {
  555. if (this.dgvData.SelectedRows.Count == 0)
  556. { MessageBoxCustom.Show("请选中你要删除的数据!"); return; }
  557. if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.No)
  558. { return; }
  559. string StrMagess = LYFZ.BLL.BLL_ErpPayment.DeleteOrderPayment(this.dgvData.CurrentRow.Cells["ID"].Value.ToString().Trim());
  560. MessageBoxCustom.Show(StrMagess);
  561. if (StrMagess.IndexOf("成功") != -1)
  562. {
  563. this.FrmPrePayment_Load(this, null);
  564. this.PublicFunctionRows();
  565. this.IsSaveed = true;
  566. }
  567. }
  568. catch (Exception ex)
  569. { MessageBoxCustom.Show(ex.Message); }
  570. }
  571. /// <summary>
  572. /// 打印收据
  573. /// </summary>
  574. /// <param name="sender"></param>
  575. /// <param name="e"></param>
  576. void btnPrint_Click(object sender, EventArgs e)
  577. {
  578. try
  579. {
  580. if (dgvData.SelectedRows.Count == 0)
  581. { MessageBoxCustom.Show("请选择你要打印的数据!"); return; }
  582. #region 获取应付
  583. LYFZ.BLL.BLL_ErpOrder Orderbll = new LYFZ.BLL.BLL_ErpOrder();
  584. DataTable dt = Orderbll.GetView_Custom("tb_ErpPayment", StrWhere: "Pay_OrdNumber='" + StrOrdNumber + "' ", ShowColumnName: "sum(Pay_AmountOf) as Pay_AmountOf, Pay_OrdNumber, Pay_ReceivableProject ", GroupBy: " Pay_OrdNumber, Pay_ReceivableProject").Tables[0];
  585. DataTable dt_PlusPickItems = Orderbll.GetView_Custom("tb_ErpPlusPickItems", StrWhere: "Plu_OrdNumber='" + StrOrdNumber + "' ", ShowColumnName: "sum(Plu_Amount) as Plu_Amount,Plu_OrdNumber,Plu_Goods ", GroupBy: "Plu_OrdNumber,Plu_Goods").Tables[0];
  586. decimal Handle = 0;
  587. decimal PackagesMoney = 0;
  588. string Pay_ReceivableProject = "";
  589. for (int i = 0; i < dgvData.SelectedRows.Count; i++)
  590. {
  591. if (!string.IsNullOrEmpty(dgvData.SelectedRows[i].Cells["Pay_ReceivableProject"].Value.ToString()))
  592. { Pay_ReceivableProject += dgvData.SelectedRows[i].Cells["Pay_ReceivableProject"].Value.ToString().Replace(",", "┳") + ","; }
  593. else
  594. { PackagesMoney = Convert.ToDecimal(Orderbll.GetView_Custom("tb_ErpOrder", StrWhere: "Ord_Number='" + StrOrdNumber + "' ", ShowColumnName: "Ord_SeriesPrice").Tables[0].Rows[0]["Ord_SeriesPrice"]); }
  595. }
  596. if (Pay_ReceivableProject != "")
  597. {
  598. Pay_ReceivableProject = Pay_ReceivableProject.TrimEnd(',');
  599. //筛选重复的数据
  600. string[] sj = Pay_ReceivableProject.Split(',');
  601. List<string> strReturn = new List<string>();
  602. foreach (string name in sj)
  603. {
  604. string name1 = name.Replace("┳", ",");///将特殊符号转换成“,”
  605. if (strReturn.Contains(name1) == false)
  606. { strReturn.Add(name1); }
  607. }
  608. string[] Sx = strReturn.ToArray();
  609. if (Sx.Length > 0)
  610. {
  611. for (int t = 0; t < Sx.Length; t++)
  612. {
  613. DataRow[] row = dt_PlusPickItems.Select("Plu_Goods='" + Sx[t] + "'");
  614. if (row.Length > 0)
  615. { Handle += Convert.ToDecimal(row[0]["Plu_Amount"]); }
  616. else
  617. { Handle = 0; }
  618. }
  619. }
  620. }
  621. #endregion
  622. Hashtable htData = new Hashtable();
  623. htData["dgvData"] = this.dgvData;
  624. htData["strNumber"] = this.StrOrdNumber.Trim();
  625. htData["Arrear"] = (Convert.ToDecimal(this.txtLateArrearsAmount.Text) + Convert.ToDecimal(this.txtEarlyArrearsAmount.Text)).ToString("0.00");
  626. htData["CopeAmount"] = Handle + PackagesMoney;
  627. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintFixedFormat(LYFZ.EnumPublic.PrintTypeEnum.订单收款, htData);
  628. }
  629. catch (Exception ex)
  630. { MessageBoxCustom.Show(ex.Message); }
  631. }
  632. LYFZ.BLL.MemberCardPaymentModel modelpm = null;
  633. /// <summary>
  634. /// 选择支付方式事件
  635. /// </summary>
  636. /// <param name="sender"></param>
  637. /// <param name="e"></param>
  638. void cmbtreevPaymentMethod_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  639. {
  640. guid = Guid.NewGuid().ToString().Replace("-", "").ToUpper();
  641. if (this.cmbtreevPaymentMethod.Text != "")
  642. {
  643. if (this.cmbtreevPaymentMethod.Tag.ToString() == "BEBACCAFEGECFBJFD")
  644. {
  645. if (!string.IsNullOrEmpty(this.txtPaymentAmount.Text))
  646. {
  647. LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.MemberCardDeductAmountSuperSmallForm frm = new DoorCityProcess.SuperSmallForm.MemberCardDeductAmountSuperSmallForm();
  648. frm.strOrdNumber = StrOrdNumber;//订单编号
  649. frm.PaymentAmount = Convert.ToDecimal(txtPaymentAmount.Text);//支付金额
  650. frm.StrReturnType = "clist";
  651. frm.panelPerformance.Show();
  652. frm.btnDelPerformance.Click += BtnDelPerformance_Click;
  653. frm.btnPerformance.Click += BtnPerformance_Click;
  654. frm.ShowDialog();
  655. if (frm.IsSaveed)
  656. {
  657. modelpm = frm.model;
  658. this.btnSave_Click(this, null);
  659. }
  660. else
  661. { this.cmbtreevPaymentMethod.SetTextAndTag_ValueNull(); }
  662. }
  663. else
  664. { this.cmbtreevPaymentMethod.SetTextAndTag_ValueNull(); MessageBoxCustom.Show("请输入金额!"); }
  665. }
  666. else
  667. { modelpm = null; }
  668. }
  669. }
  670. /// <summary>
  671. /// 修改时间
  672. /// </summary>
  673. /// <param name="sender"></param>
  674. /// <param name="e"></param>
  675. void btnUpdateTime_Click(object sender, EventArgs e)
  676. {
  677. // 修改收款时间
  678. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.UpdatePaymentTime))
  679. { dtpCreateDatetime.Enabled = true; }
  680. else
  681. {
  682. LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm frm = new DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm("OrdersReceivablesCompetence", CustomAttributes.OperatingAuthority.UpdatePaymentTime);
  683. if (frm.ShowDialog() == DialogResult.OK)
  684. {
  685. if (LYFZ.BLL.BLL_ErpUser.GetRights(frm.CurrentAuthorizeUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.UpdatePaymentTime, frm.User_BelongRoles))
  686. {
  687. frm.SetAuthorizationResult();
  688. dtpCreateDatetime.Enabled = true;
  689. }
  690. else {
  691. frm.SetAuthorizationResult(String.Format("授权失败,授权人没有'{0}'权限", LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm.ConvertEnumToDescription(CustomAttributes.OperatingAuthority.UpdatePaymentTime).ToString()));
  692. }
  693. }
  694. }
  695. }
  696. /// <summary>
  697. /// 不收款
  698. /// </summary>
  699. /// <param name="sender"></param>
  700. /// <param name="e"></param>
  701. void btnNotPayment_Click(object sender, EventArgs e)
  702. {
  703. this.Close();
  704. }
  705. }
  706. }