FrmLatePayment.cs 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299
  1. using System;
  2. using System.Collections;
  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. using LYFZ.ComponentLibrary;
  11. namespace LYFZ.Software.MainBusiness.FinancialManagement.OrdersReceivables
  12. {
  13. public partial class FrmLatePayment : LYFZ.Software.UI.FinancialManagement.OrdersReceivables.FrmLatePayment
  14. {
  15. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  16. LYFZ.BLL.BLL_ErpPayment ptbll = new BLL.BLL_ErpPayment();
  17. LYFZ.BLL.BLL_AllViewSet avsbll = new BLL.BLL_AllViewSet();
  18. LYFZ.BLL.BLL_ErpProduct Productbll = new BLL.BLL_ErpProduct();
  19. LYFZ.BLL.BLL_ErpPlusPickItems ppibll = new BLL.BLL_ErpPlusPickItems();
  20. LYFZ.BLL.BLL_ErpSystemCategory scbll = new BLL.BLL_ErpSystemCategory();
  21. LYFZ.BLL.BLL_ErpProductOutStorage ProductOutStoragebll = new BLL.BLL_ErpProductOutStorage();
  22. LYFZ.BLL.BLL_ErpTwoPinsProjectCommissionProportion TwoPinsProjectCommissionProportionBll = new BLL.BLL_ErpTwoPinsProjectCommissionProportion();
  23. public string guid = "";
  24. public FrmLatePayment()
  25. {
  26. this.btnUpdateTime2.Click += btnUpdateTime2_Click;
  27. this.dgvData1.Click += dgvData1_Click;
  28. this.btnPerformance.Click += BtnPerformance_Click;
  29. this.btnDelPerformance.Click += BtnDelPerformance_Click;
  30. this.dgv2.CellDoubleClick += Dgv2_CellDoubleClick;
  31. }
  32. private void Dgv2_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
  33. {
  34. if (e.RowIndex >= 0 && e.ColumnIndex >= 0)
  35. {
  36. if (e.ColumnIndex == 4)
  37. {
  38. DataGridViewRow gridViewRow = this.dgv2.Rows[e.RowIndex];
  39. if (gridViewRow.Tag != null)
  40. {
  41. DataRow dataRow = (DataRow)gridViewRow.Tag;
  42. decimal Pay_AmountOf = Convert.ToDecimal(dataRow["Pay_AmountOf"].ToString());
  43. string commissionRatioJsonData = "";
  44. if (dataRow["Pay_CommissionRatio"] != null)
  45. {
  46. commissionRatioJsonData = dataRow["Pay_CommissionRatio"].ToString();
  47. }
  48. if (String.IsNullOrWhiteSpace(commissionRatioJsonData))
  49. {
  50. MessageBoxCustom.Show("当前这笔收款项未做自定义业绩分配");
  51. return;
  52. }
  53. else
  54. {
  55. LYFZ.Software.MainBusiness.DoorCityProcess.frmCustomPerformance customPerformance = new MainBusiness.DoorCityProcess.frmCustomPerformance();
  56. try
  57. {
  58. customPerformance.CollectionAmount = Pay_AmountOf;
  59. customPerformance.IsReadOnly = true;
  60. customPerformance.PersonCommissionRatioJsonDataInitialization(commissionRatioJsonData);
  61. customPerformance.BindPerformancePersonControls();
  62. customPerformance.ShowDialog();
  63. }
  64. catch (Exception ex)
  65. {
  66. MessageBoxCustom.Show(String.Format("收款金额输入格式不正确:{0}", ex.Message));
  67. return;
  68. }
  69. }
  70. }
  71. else
  72. {
  73. MessageBoxCustom.Show("当前收款记录异常");
  74. return;
  75. }
  76. }
  77. }
  78. }
  79. private void BtnDelPerformance_Click(object sender, EventArgs e)
  80. {
  81. this.ClearPerformance();
  82. }
  83. /// <summary>
  84. /// 清除业绩分配
  85. /// </summary>
  86. void ClearPerformance()
  87. {
  88. this.listBoxPerformance.Items.Clear();
  89. this.listBoxPerformance.Tag = null;
  90. this.currentPersonCommissionRatio = null;
  91. }
  92. LYFZ.BLL.OrderPersonCommissionRatio currentPersonCommissionRatio = null;
  93. private void BtnPerformance_Click(object sender, EventArgs e)
  94. {
  95. if (this.erpOrderModel != null)
  96. {
  97. if (String.IsNullOrWhiteSpace(this.txtPay_ReceivableProject.Text.Trim()))
  98. {
  99. MessageBoxCustom.Show("请选择收款项目");
  100. return;
  101. }
  102. LYFZ.Software.MainBusiness.DoorCityProcess.frmCustomPerformance customPerformance = new MainBusiness.DoorCityProcess.frmCustomPerformance();
  103. try
  104. {
  105. customPerformance.CollectionAmount = Convert.ToDecimal(this.txtPay_AmountOf.Text.Trim());
  106. if (this.listBoxPerformance.Items.Count > 0 && this.currentPersonCommissionRatio != null)
  107. {
  108. customPerformance.PersonCommissionRatio = this.currentPersonCommissionRatio;
  109. }
  110. else
  111. {
  112. customPerformance.OrderPersonInitialization(this.dgvData1.CurrentRow.Cells["接单人编号"].Value.ToString());
  113. }
  114. customPerformance.BindPerformancePersonControls();
  115. if (customPerformance.ShowDialog() == DialogResult.OK)
  116. {
  117. this.listBoxPerformance.Items.Clear();
  118. this.currentPersonCommissionRatio = customPerformance.PersonCommissionRatio;
  119. customPerformance.BindListBoxPerformance(this.listBoxPerformance);
  120. }
  121. }
  122. catch (Exception ex)
  123. {
  124. MessageBoxCustom.Show(String.Format("收款金额输入格式不正确:{0}", ex.Message));
  125. }
  126. }
  127. }
  128. /// <summary>
  129. /// 是否保存
  130. /// </summary>
  131. public bool IsSaveed = false;
  132. /// <summary>
  133. /// 订单号
  134. /// </summary>
  135. public string StrOrdNumber;
  136. /// <summary>
  137. /// 应收款
  138. /// </summary>
  139. public decimal StrCope;
  140. /// <summary>
  141. /// 已收款
  142. /// </summary>
  143. public decimal StrPaid;
  144. /// <summary>
  145. /// 欠款
  146. /// </summary>
  147. public decimal StrArrears;
  148. /// <summary>
  149. /// 主联系人ID
  150. /// </summary>
  151. public string StrClientNumber;
  152. /// <summary>
  153. /// 版本类型
  154. /// </summary>
  155. public string StrOrdType;
  156. /// <summary>
  157. /// 加挑编号
  158. /// </summary>
  159. private string StrPusNumber = "";
  160. /// <summary>
  161. /// 数码编号
  162. /// </summary>
  163. private string StrViceNumber = "";
  164. LYFZ.Model.Model_ErpOrder erpOrderModel = null;
  165. /// <summary>
  166. /// 加载
  167. /// </summary>
  168. /// <param name="sender"></param>
  169. /// <param name="e"></param>
  170. protected override void FrmLatePayment_Shown(object sender, EventArgs e)
  171. {
  172. this.btnSave.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.OrdersLatePayment);
  173. this.btnSaveCP.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.OrdersLatePickGoods);
  174. this.btndeleteSK.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.Delete);
  175. this.btnSet.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.OrderPaymentMethodSet);
  176. this.btndelectCP.Enabled = this.btndeleteSK.Enabled;
  177. #region 获取客户,加挑,收款数据
  178. if (!string.IsNullOrEmpty(this.StrOrdNumber))
  179. {
  180. erpOrderModel = orbll.GetModel(this.StrOrdNumber);
  181. if (erpOrderModel != null && erpOrderModel.ID > 0)
  182. {
  183. 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];
  184. if (dt.Rows.Count > 0)
  185. {
  186. // 客户资料
  187. this.txtOrd_Number.Text = dt.Rows[0]["Ord_SinceOrderNumber"].ToString();
  188. this.txtOrd_CustomerName1.Text = dt.Rows[0]["客户姓名"].ToString();
  189. this.StrClientNumber = dt.Rows[0]["M_Cus_CustomerNumber"].ToString();
  190. //应收款
  191. this.txtCope.Text = this.StrCope.ToString();
  192. //已付款
  193. this.txtPaid.Text = this.StrPaid.ToString();
  194. //欠款
  195. this.txtArrears.Text = this.StrArrears.ToString();
  196. // 加挑详情
  197. this.txtRecordedSinglePerson.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  198. this.txtPlusPickTime.Text = SDateTime.Now.ToString("yyyy-MM-dd");
  199. // 收款详情
  200. this.txtPay_ThePayee.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  201. this.txtPay_CreateDatetime.Text = SDateTime.Now.ToString("yyyy-MM-dd");
  202. this.txtPay_Category.Text = "后期收款";
  203. }
  204. }
  205. else
  206. {
  207. erpOrderModel = null;
  208. MessageBoxCustom.Show("订单数据加载失败,或订单已被删除");
  209. }
  210. }
  211. else
  212. {
  213. MessageBoxCustom.Show("缺少收款订单号参数");
  214. return;
  215. }
  216. #endregion
  217. // 获取支付方式 获取二销类别
  218. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_PaymentMethod(this.cmbPay_PaymentMethod, IsShowAll: true);
  219. this.BindPay_TwoPinsCategory();
  220. // 获取加挑物品
  221. this.PublicFunctionPlusPickItems();
  222. // 获取全部收款
  223. this.PublicFunctionPayment();
  224. this.panelEx2.Size = new Size(1070, this.Size.Height - 80);
  225. if (StrOrdType == "儿童订单")
  226. {
  227. this.btnSaveCP.Location = new Point(241, 214);
  228. this.panelEx11.Visible = true;
  229. this.panelStageName.Visible = true;
  230. this.panel1.Height = 118-20;
  231. this.listBoxPerformance.Height = 89-20;
  232. DataTable tbl = orbll.GetView_Custom("tb_ErpOrdersPhotography", StrWhere: "Ordpg_Number = '" + this.StrOrdNumber + "'", ShowColumnName: "Ordpg_ViceNumber,Ordpg_Sights").Tables[0];
  233. TreeNode root = null;
  234. for (int i = 0; i < tbl.Rows.Count; i++)
  235. {
  236. root = new TreeNode();
  237. root.Text = tbl.Rows[i]["Ordpg_Sights"].ToString().Trim();
  238. root.Tag = tbl.Rows[i]["Ordpg_ViceNumber"].ToString().Trim();
  239. root.Name = tbl.Rows[i]["Ordpg_ViceNumber"].ToString().Trim();
  240. this.cmbtreevStage.TreeView.Nodes.Add(root);
  241. }
  242. if (tbl.Rows.Count == 1)
  243. {
  244. this.cmbtreevStage.TagFindText(tbl.Rows[0]["Ordpg_ViceNumber"].ToString().Trim());
  245. }
  246. }
  247. else
  248. {
  249. this.btnSaveCP.Location = new Point(241, 190);
  250. this.panelEx11.Visible = false;
  251. this.panelStageName.Visible = false;
  252. this.panel1.Height = 118 + 30-10;
  253. this.listBoxPerformance.Height = 89 + 17-10;
  254. }
  255. ///控制财务管理扫码支付的版本权
  256. List<Control> hideControl = new List<Control>();
  257. hideControl.Add(this.cmbPay_PaymentMethod);
  258. LYFZ.Software.MainBusiness.VersionControl.StaticVersion.BindVersionShowHideControl(VersionControl.VersionFunctionEnum.财务管理扫码支付, hideControl, null, null);
  259. }
  260. /// <summary>
  261. /// 获取加挑物品
  262. /// </summary>
  263. void PublicFunctionPlusPickItems()
  264. {
  265. this.dgvData1.Rows.Clear();
  266. this.dgvData1.Columns.Clear();
  267. string StrWhere = "Plu_OrdNumber = '" + this.StrOrdNumber + "'";
  268. string StrTableName = "tb_ErpPlusPickItems Left Join tb_ErpUser AS tbRecordedPerson on tbRecordedPerson.User_EmployeeID = Plu_RecordedPerson Left Join tb_ErpSystemCategory on Sc_ClassCode = Plu_TwoPinsCategory";
  269. string StrColumnsName = "tb_ErpPlusPickItems.ID,Plu_Number AS 加挑编号,isnull(Plu_OrdViceNumber,'') AS 数码编号,(case when Plu_OrdViceNumber is null or Plu_OrdViceNumber = '' then '' else isnull((select top 1 Ordpg_Sights from tb_ErpOrdersPhotography where Ordpg_ViceNumber = Plu_OrdViceNumber),'') end) AS 拍摄名称,Plu_Amount as 加挑金额,(Plu_Amount - isnull((select sum(Pay_AmountOf) from tb_ErpPayment where Pay_PlusPickNumber = Plu_Number),0)) AS 欠款,dbo.fn_CheckDateTimeReturn_Date(dbo.fn_CheckDateTime(Plu_CreateTime)) AS 加挑日期,tbRecordedPerson.User_Name AS 录单人,dbo.fn_CheckUserIDGetUserName(Plu_OpenSingle) AS 接单人,Sc_ClassName AS 收款类别,Plu_OpenSingle as 接单人编号,Plu_TwoPinsCategory as 二销类别编号,Plu_Goods as 加挑商品";
  270. StrColumnsName += ", (select count(*) from tb_ErpPayment where Pay_PlusPickNumber = Plu_Number) as 付款笔数";
  271. DataTable dt = orbll.GetView_Custom(StrTableName, StrWhere: StrWhere, ShowColumnName: StrColumnsName).Tables[0];
  272. string strHideField = "";
  273. if (StrOrdType != "儿童订单")
  274. { strHideField = ",拍摄名称"; }
  275. strHideField += ",付款笔数";
  276. if (dt.Rows.Count > 0)
  277. { this.dgvData1.DataSource(dt, strHideField: "ID,加挑编号,数码编号,接单人编号,二销类别编号" + strHideField); }
  278. else
  279. { this.dgvData1.DataColumns(dt.Columns, strHideField: "ID,加挑编号,数码编号,接单人编号,二销类别编号" + strHideField); }
  280. this.dgvData1.Columns["拍摄名称"].Width = 90;
  281. this.dgvData1.Columns["加挑金额"].Width = 70;
  282. this.dgvData1.Columns["欠款"].Width = 60;
  283. this.dgvData1.Columns["加挑日期"].Width = 90;
  284. this.dgvData1.Columns["录单人"].Width = 50;
  285. this.dgvData1.Columns["收款类别"].Width = 80;
  286. this.dgvData1.Columns["加挑商品"].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
  287. }
  288. /// <summary>
  289. /// 获取全部收款
  290. /// </summary>
  291. void PublicFunctionPayment()
  292. {
  293. this.dgv2.Rows.Clear();
  294. DataTable dt = ptbll.View_ErpPayment("Pay_OrdNumber='" + StrOrdNumber + "'").Tables[0];
  295. if (dt.Rows.Count > 0)
  296. {
  297. for (int t = 0; t < dt.Rows.Count; t++)
  298. {
  299. DataGridViewRow dgvr = new DataGridViewRow();
  300. DataGridViewCell cell = null;
  301. cell = new DataGridViewTextBoxCell();
  302. cell.Value = dt.Rows[t]["ID"].ToString();
  303. dgvr.Cells.Add(cell);
  304. cell = new DataGridViewTextBoxCell();
  305. cell.Value = dt.Rows[t]["Pay_ShootingName"].ToString();
  306. dgvr.Cells.Add(cell);
  307. cell = new DataGridViewTextBoxCell();
  308. cell.Value = Convert.ToDecimal(dt.Rows[t]["Pay_AmountOf"]).ToString();
  309. dgvr.Cells.Add(cell);
  310. cell = new DataGridViewTextBoxCell();
  311. cell.Value = LYFZ.Command.Command_Validate.DateTimeToString(dt.Rows[t]["Pay_CreateDatetime"], "yyyy-MM-dd HH:mm");
  312. dgvr.Cells.Add(cell);
  313. cell = new DataGridViewTextBoxCell();
  314. cell.Value = dt.Rows[t]["Pay_UserName"].ToString().Trim();
  315. dgvr.Cells.Add(cell);
  316. cell = new DataGridViewTextBoxCell();
  317. cell.Value = dt.Rows[t]["Pay_ThePayeeName"].ToString().Trim();
  318. dgvr.Cells.Add(cell);
  319. cell = new DataGridViewTextBoxCell();
  320. cell.Value = dt.Rows[t]["Pay_PaymentMethodName"].ToString().Trim(); ;
  321. dgvr.Cells.Add(cell);
  322. cell = new DataGridViewTextBoxCell();
  323. cell.Value = dt.Rows[t]["Pay_Category"].ToString().Trim();
  324. dgvr.Cells.Add(cell);
  325. cell = new DataGridViewTextBoxCell();
  326. cell.Value = dt.Rows[t]["Pay_ReceivableProject"].ToString().Trim();
  327. dgvr.Cells.Add(cell);
  328. cell = new DataGridViewTextBoxCell();
  329. cell.Value = dt.Rows[t]["Pay_TwoPinsCategoryName"].ToString().Trim();
  330. dgvr.Cells.Add(cell);
  331. cell = new DataGridViewTextBoxCell();
  332. cell.Value = dt.Rows[t]["Pay_PaymentDiscount"].ToString().Trim();
  333. dgvr.Cells.Add(cell);
  334. cell = new DataGridViewTextBoxCell();
  335. cell.Value = dt.Rows[t]["Pay_DiscountAmount"].ToString().Trim();
  336. dgvr.Cells.Add(cell);
  337. cell = new DataGridViewTextBoxCell();
  338. cell.Value = dt.Rows[t]["Pay_Remark"].ToString().Trim();
  339. dgvr.Cells.Add(cell);
  340. dgvr.Tag = dt.Rows[t];
  341. this.dgv2.Rows.Add(dgvr);
  342. }
  343. this.dgv2.ClearSelection();
  344. }
  345. }
  346. /// <summary>
  347. /// 添加行
  348. /// </summary>
  349. /// <param name="sender"></param>
  350. /// <param name="e"></param>
  351. void dgvData1_RowsAdded(object sender, DataGridViewRowsAddedEventArgs e)
  352. {
  353. if (this.dgvData1.Rows[e.RowIndex].Cells["欠款"].Value.ToString().Trim() != "")
  354. { this.dgvData1.Rows[e.RowIndex].Cells["欠款"].Value = LYFZ.BLL.OtherCommonModel.RemoveLastExcessZero(this.dgvData1.Rows[e.RowIndex].Cells["欠款"].Value); }
  355. if (this.dgvData1.Rows[e.RowIndex].Cells["加挑金额"].Value.ToString().Trim() != "")
  356. { this.dgvData1.Rows[e.RowIndex].Cells["加挑金额"].Value = LYFZ.BLL.OtherCommonModel.RemoveLastExcessZero(this.dgvData1.Rows[e.RowIndex].Cells["加挑金额"].Value); }
  357. if (Convert.ToDecimal(this.dgvData1.Rows[e.RowIndex].Cells["欠款"].Value) > 0||
  358. (Convert.ToDecimal(this.dgvData1.CurrentRow.Cells["欠款"].Value) == 0 && Convert.ToDecimal(this.dgvData1.CurrentRow.Cells["付款笔数"].Value) == 0))
  359. { this.dgvData1.Rows[e.RowIndex].DefaultCellStyle.ForeColor = Color.Red; }
  360. }
  361. /// <summary>
  362. /// 增加支付方式
  363. /// </summary>
  364. /// <param name="sender"></param>
  365. /// <param name="e"></param>
  366. protected override void btnSet_Click(object sender, EventArgs e)
  367. {
  368. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
  369. frm.TypeName = "BEBACCAFCCEAGAIHH";
  370. frm.Version = "Version";
  371. if (frm.ShowDialog() == DialogResult.OK)
  372. {
  373. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_PaymentMethod(this.cmbPay_PaymentMethod, IsShowAll: true);
  374. }
  375. }
  376. /// <summary>
  377. /// 增加二销类别
  378. /// </summary>
  379. /// <param name="sender"></param>
  380. /// <param name="e"></param>
  381. protected override void btnSet2_Click(object sender, EventArgs e)
  382. {
  383. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
  384. frm.TypeName = "BEBACDAJDFDDEACGJ";
  385. frm.Version = "Version";
  386. if (frm.ShowDialog() == DialogResult.OK)
  387. {
  388. this.BindPay_TwoPinsCategory();
  389. }
  390. }
  391. /// <summary>
  392. /// 选择开单人
  393. /// </summary>
  394. /// <param name="sender"></param>
  395. /// <param name="e"></param>
  396. protected override void btnSelect2_Click(object sender, EventArgs e)
  397. {
  398. LYFZ.Software.MainBusiness.FinancialManagement.OrdersReceivables.FrmSelectPayOpenSingle frm = new FrmSelectPayOpenSingle();
  399. frm.ShowDialog();
  400. if (!string.IsNullOrEmpty(frm.Str1))
  401. {
  402. this.txtPay_OpenSingle.Text = frm.Str1;
  403. this.txtPay_OpenSingle.Tag = frm.Str3;
  404. }
  405. }
  406. /// <summary>
  407. /// 输入框设置
  408. /// </summary>
  409. /// <param name="sender"></param>
  410. /// <param name="e"></param>
  411. protected override void txtPay_AmountOf_KeyPress(object sender, KeyPressEventArgs e)
  412. {
  413. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  414. { e.Handled = true; }
  415. else if (Char.IsPunctuation(e.KeyChar))
  416. {
  417. if (e.KeyChar == '.')
  418. {
  419. if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('.') != -1)
  420. { e.Handled = true; }
  421. }
  422. else if (e.KeyChar == '-')
  423. {
  424. if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('-') != -1)
  425. { e.Handled = true; }
  426. }
  427. else
  428. { e.Handled = true; }
  429. }
  430. }
  431. /// <summary>
  432. /// 输入框设置
  433. /// </summary>
  434. /// <param name="sender"></param>
  435. /// <param name="e"></param>
  436. protected override void txtPlusPickAmount_KeyPress(object sender, KeyPressEventArgs e)
  437. {
  438. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  439. { e.Handled = true; }
  440. else if (Char.IsPunctuation(e.KeyChar))
  441. {
  442. if (e.KeyChar == '.')
  443. {
  444. if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('.') != -1)
  445. { e.Handled = true; }
  446. }
  447. else if (e.KeyChar == '-')
  448. {
  449. if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('-') != -1)
  450. { e.Handled = true; }
  451. }
  452. else
  453. { e.Handled = true; }
  454. }
  455. }
  456. /// <summary>
  457. /// 时间控件
  458. /// </summary>
  459. /// <param name="sender"></param>
  460. /// <param name="e"></param>
  461. protected override void txtPay_CreateDatetime_Enter(object sender, EventArgs e)
  462. {
  463. if (this.txtPay_CreateDatetime.Text == "")
  464. {
  465. this.txtPay_CreateDatetime.Text = SDateTime.Now.ToString("yyyy-MM-dd");
  466. }
  467. }
  468. /// <summary>
  469. /// 时间控件
  470. /// </summary>
  471. /// <param name="sender"></param>
  472. /// <param name="e"></param>
  473. protected override void txtPay_CreateDatetime_Leave(object sender, EventArgs e)
  474. {
  475. if (this.txtPay_CreateDatetime.Text.Trim() != "")
  476. {
  477. if (LYFZ.Command.Command_Validate.IsDateTime(this.txtPay_CreateDatetime.Text.Trim()) == false)
  478. {
  479. this.txtPay_CreateDatetime.Text = "";
  480. MessageBoxCustom.Show("收款时间格式输入错误");
  481. }
  482. }
  483. }
  484. /// <summary>
  485. /// 文本框赋值
  486. /// </summary>
  487. /// <param name="sender"></param>
  488. /// <param name="e"></param>
  489. protected override void txtPlusPickAmount_TextChanged(object sender, EventArgs e)
  490. {
  491. //txtPay_AmountOf.Text = this.txtPlusPickAmount.Text;
  492. }
  493. /// <summary>
  494. /// 文本框赋值
  495. /// </summary>
  496. /// <param name="sender"></param>
  497. /// <param name="e"></param>
  498. protected override void txtPlusPickItems_TextChanged(object sender, EventArgs e)
  499. {
  500. this.txtLessInventory.Text = this.txtPlusPickItems.Text;
  501. }
  502. /// <summary>
  503. /// 选择产品
  504. /// </summary>
  505. /// <param name="sender"></param>
  506. /// <param name="e"></param>
  507. protected override void btnSelect_Click(object sender, EventArgs e)
  508. {
  509. LYFZ.Software.MainBusiness.DoorCityProcess.SetSmallForm.ToolboxListViewSamllForm frm = new DoorCityProcess.SetSmallForm.ToolboxListViewSamllForm();
  510. frm.LoadType = "套系包含商品";
  511. frm.ShowDialog();
  512. if (frm.IsSaveed)
  513. {
  514. List<LYFZ.Model.Model_ErpProduct> mlist = frm.mlist;
  515. string CP = "";
  516. for (int i = 0; i < mlist.Count; i++)
  517. { CP += mlist[i].Prod_Name.Trim() + ","; }
  518. this.txtLessInventory.Text = CP.TrimEnd(',');
  519. this.txtPlusPickItems.Text = CP.TrimEnd(',');
  520. }
  521. //LYFZ.Software.MainBusiness.DoorCityProcess.SetSmallForm.ToolboxSamllForm frm = new DoorCityProcess.SetSmallForm.ToolboxSamllForm();
  522. //frm.LoadType = "套系包含商品";
  523. //frm.ShowDialog();
  524. //if (frm.IsSaveed)
  525. //{
  526. // List<LYFZ.Model.Model_ErpProduct> mlist = frm.mlist;
  527. // string CP = "";
  528. // for (int i = 0; i < mlist.Count; i++)
  529. // { CP += mlist[i].Prod_Name.Trim() + ","; }
  530. // this.txtLessInventory.Text = CP.TrimEnd(',');
  531. // this.txtPlusPickItems.Text = CP.TrimEnd(',');
  532. //}
  533. }
  534. /// <summary>
  535. /// 保存加挑详情
  536. /// </summary>
  537. /// <param name="sender"></param>
  538. /// <param name="e"></param>
  539. protected override void btnSaveCP_Click(object sender, EventArgs e)
  540. {
  541. try
  542. {
  543. #region 判断不能为空
  544. if (string.IsNullOrEmpty(this.txtPlusPickAmount.Text.Trim()))
  545. {
  546. MessageBoxCustom.Show("加挑金额不能为空!");
  547. return;
  548. }
  549. if (string.IsNullOrEmpty(this.txtRecordedSinglePerson.Text.Trim()))
  550. {
  551. MessageBoxCustom.Show("录单人不能为空!");
  552. return;
  553. }
  554. if (string.IsNullOrEmpty(this.txtPlusPickTime.Text.Trim()))
  555. {
  556. MessageBoxCustom.Show("加挑时间不能为空!");
  557. return;
  558. }
  559. if (string.IsNullOrEmpty(this.txtPlusPickItems.Text.Trim()))
  560. {
  561. MessageBoxCustom.Show("加挑物品不能为空!");
  562. return;
  563. }
  564. if (string.IsNullOrEmpty(this.txtPay_OpenSingle.Text.Trim()))
  565. {
  566. MessageBoxCustom.Show("销售人员不能为空!");
  567. return;
  568. }
  569. if (string.IsNullOrEmpty(this.cmbPay_TwoPinsCategory.Text.Trim()))
  570. {
  571. MessageBoxCustom.Show("二销类别不能为空!");
  572. return;
  573. }
  574. if (this.panelEx11.Visible)
  575. {
  576. if (string.IsNullOrEmpty(this.cmbtreevStage.Text.Trim()))
  577. {
  578. MessageBoxCustom.Show("拍摄名称不能为空!");
  579. return;
  580. }
  581. }
  582. #endregion
  583. #region 增加
  584. LYFZ.Model.Model_ErpPlusPickItems model = new Model.Model_ErpPlusPickItems();
  585. model.Plu_Number = LYFZ.BLL.BLL_ErpCustomer.GetLateStagePlusPickNumber();// "PPI" + LYFZ.BLL.BLL_ErpCustomer.GetClientNumber();
  586. model.Plu_OrdNumber = this.StrOrdNumber.Trim();
  587. if (this.panelEx11.Visible)
  588. { model.Plu_OrdViceNumber = this.cmbtreevStage.Tag.ToString().Trim(); }
  589. else
  590. { model.Plu_OrdViceNumber = ""; }
  591. model.Plu_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  592. model.Plu_Amount = Convert.ToDecimal(this.txtPlusPickAmount.Text);
  593. model.Plu_CreateTime = Convert.ToDateTime(this.txtPlusPickTime.Text);
  594. model.Plu_RecordedPerson = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  595. model.Plu_Goods = this.txtPlusPickItems.Text;
  596. #region 获取成本价
  597. string Plu_GoodsCosts = "";
  598. for (int t = 0; t < this.txtLessInventory.Text.Split(',').Length; t++)
  599. {
  600. string Costs = this.txtLessInventory.Text.Split(',')[t];
  601. DataTable Productdt = Productbll.GetList("Prod_Name='" + Costs + "'").Tables[0];
  602. if (Productdt.Rows.Count > 0)
  603. { Plu_GoodsCosts += Productdt.Rows[0]["Prod_CostPrice"].ToString() + ","; }
  604. else
  605. { Plu_GoodsCosts += "0" + ","; }
  606. }
  607. model.Plu_SourceType = "0";
  608. model.Plu_GoodsCosts = Plu_GoodsCosts.TrimEnd(',');
  609. #endregion
  610. model.Plu_OpenSingle = this.txtPay_OpenSingle.Tag.ToString().Trim();
  611. model.Plu_TwoPinsCategory = this.cmbPay_TwoPinsCategory.SelectedValue.ToString();
  612. if (ppibll.Add(model))
  613. {
  614. #region 减库存
  615. if (!string.IsNullOrEmpty(this.txtLessInventory.Text))
  616. {
  617. string Cp = "";
  618. string[] Sr = this.txtLessInventory.Text.Split(',');
  619. for (int i = 0; i < Sr.Length; i++)
  620. {
  621. Cp = Sr[i];
  622. DataTable Productdt = Productbll.GetList("Prod_Name='" + Cp + "' and Prod_Availability=1").Tables[0];
  623. if (Productdt.Rows.Count > 0)
  624. {
  625. #region 新增入库记录表
  626. LYFZ.Model.Model_ErpProductOutStorage ProductOutStorageModel = new Model.Model_ErpProductOutStorage();
  627. ProductOutStorageModel.Pos_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetCompanyInfoID();
  628. ProductOutStorageModel.Pos_ProductCategory = Productdt.Rows[0]["Prod_Class"].ToString();
  629. ProductOutStorageModel.Pos_ProductNumber = Productdt.Rows[0]["Prod_Number"].ToString();
  630. ProductOutStorageModel.Pos_OutQuantity = 1;
  631. ProductOutStorageModel.Pos_OutTime = Convert.ToDateTime(txtPlusPickTime.Text);
  632. ProductOutStorageModel.Pos_Remark = "订单后期,二销自动减库存";
  633. ProductOutStorageModel.Pos_OutName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  634. ProductOutStoragebll.Add(ProductOutStorageModel);
  635. #endregion
  636. #region 更新商品库存数量
  637. string Prod_Number = ProductOutStorageModel.Pos_ProductNumber;
  638. int Prod_Quantity = ProductOutStorageModel.Pos_OutQuantity;
  639. DataTable dt = Productbll.GetList("Prod_Number='" + Prod_Number + "'").Tables[0];
  640. int Quantity = Convert.ToInt32(dt.Rows[0]["Prod_Quantity"]) - Prod_Quantity;
  641. Productbll.UpdateProduct("Prod_Quantity=" + Quantity + "", Prod_Number);
  642. #endregion
  643. }
  644. }
  645. }
  646. #endregion
  647. MessageBoxCustom.Show("保存成功!");
  648. #region 获取金额
  649. //应收款
  650. DataTable DaPlus = ppibll.GetSum(" Plu_OrdNumber='" + StrOrdNumber + "'").Tables[0];
  651. DataTable DaOr = orbll.GetView_Custom("tb_ErpOrder", StrWhere: "Ord_Number = '" + this.StrOrdNumber + "'", ShowColumnName: "Ord_SeriesPrice").Tables[0];
  652. decimal sum;
  653. if (string.IsNullOrEmpty(DaPlus.Rows[0]["Plu_Amount"].ToString()))
  654. { sum = 0.00m; }
  655. else
  656. { sum = Convert.ToDecimal(DaPlus.Rows[0]["Plu_Amount"]); }
  657. this.txtCope.Text = Convert.ToDecimal(Convert.ToDecimal(DaOr.Rows[0]["Ord_SeriesPrice"]) + Convert.ToDecimal(sum)).ToString();
  658. //已付款
  659. decimal Paid;
  660. DataTable DaPayment = ptbll.GetSum(" Pay_OrdNumber='" + StrOrdNumber + "'").Tables[0];
  661. if (string.IsNullOrEmpty(DaPayment.Rows[0]["Pay_AmountOf"].ToString()))
  662. { Paid = 0.00m; }
  663. else
  664. { Paid = Convert.ToDecimal(DaPayment.Rows[0]["Pay_AmountOf"]); }
  665. this.txtPaid.Text = Paid.ToString();
  666. //欠款
  667. this.txtArrears.Text = Convert.ToDecimal(Convert.ToDecimal(DaOr.Rows[0]["Ord_SeriesPrice"]) + Convert.ToDecimal(sum) - Convert.ToDecimal(Paid)).ToString();
  668. #endregion
  669. this.txtPlusPickAmount.Text = "";
  670. this.txtPlusPickTime.Text = SDateTime.Now.ToString("yyyy-MM-dd");
  671. this.txtLessInventory.Text = "";
  672. this.txtPay_OpenSingle.Text = "";
  673. this.txtPay_OpenSingle.Tag = null;
  674. this.txtPlusPickItems.Text = "";
  675. this.StrPusNumber = "";
  676. this.StrViceNumber = "";
  677. this.cmbPay_TwoPinsCategory.SelectedIndex = 0;
  678. if (this.cmbtreevStage.Nodes.Count > 0)
  679. { this.cmbtreevStage.SetTextAndTag_ValueNull(); }
  680. this.PublicFunctionPlusPickItems();
  681. this.IsSaveed = true;
  682. }
  683. else
  684. { MessageBoxCustom.Show("保存失败"); }
  685. #endregion
  686. }
  687. catch (Exception ex)
  688. { MessageBoxCustom.Show(ex.Message); }
  689. }
  690. /// <summary>
  691. /// 删除加挑详情
  692. /// </summary>
  693. /// <param name="sender"></param>
  694. /// <param name="e"></param>
  695. protected override void btndelectCP_Click(object sender, EventArgs e)
  696. {
  697. try
  698. {
  699. if (this.dgvData1.SelectedRows.Count == 0)
  700. {
  701. MessageBoxCustom.Show("请选中你要删除的数据!");
  702. return;
  703. }
  704. if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  705. {
  706. int id = Convert.ToInt32(this.dgvData1.CurrentRow.Cells["ID"].Value);
  707. LYFZ.Model.Model_ErpPlusPickItems model = ppibll.GetModel(id);
  708. if (model.ID > 0)
  709. {
  710. if (!string.IsNullOrEmpty(model.Plu_Number))
  711. {
  712. DataTable tbl = orbll.GetView_Custom("tb_ErpPayment", StrWhere: "Pay_PlusPickNumber= '" + model.Plu_Number + "'", ShowColumnName: "Count(ID) as CountID").Tables[0];
  713. if (tbl.Rows.Count > 0)
  714. {
  715. if (Convert.ToInt32(tbl.Rows[0]["CountID"]) > 0)
  716. { MessageBoxCustom.Show("详情已经收款,不能删除!"); return; }
  717. }
  718. }
  719. else
  720. {
  721. DataTable tbl = orbll.GetView_Custom("tb_ErpPayment", StrWhere: "Pay_OrdNumber= '" + model.Plu_OrdNumber + "' And Pay_ReceivableProject = '" + model.Plu_Goods + "' And Pay_OpenSingle = '" + model.Plu_OpenSingle + "' And Pay_TwoPinsCategory = '" + model.Plu_TwoPinsCategory + "'", ShowColumnName: "Count(ID) as CountID").Tables[0];
  722. if (tbl.Rows.Count > 0)
  723. {
  724. if (Convert.ToInt32(tbl.Rows[0]["CountID"]) > 0)
  725. { MessageBoxCustom.Show("详情已经收款,不能删除!"); return; }
  726. }
  727. }
  728. if (ppibll.Delete(id) == true)
  729. {
  730. #region 删除出库
  731. string Plu_CreateTime = this.dgvData1.CurrentRow.Cells["加挑日期"].Value.ToString();
  732. string Plu_Goods = this.dgvData1.CurrentRow.Cells["加挑商品"].Value.ToString();
  733. if (!string.IsNullOrEmpty(Plu_Goods))
  734. {
  735. string Cp = "";
  736. string[] Sr = Plu_Goods.Split(',');
  737. for (int i = 0; i < Sr.Length; i++)
  738. {
  739. Cp = Sr[i];
  740. //获取商品编号
  741. DataTable dt = Productbll.GetList("Prod_Name='" + Cp + "' and Prod_Availability=1").Tables[0];
  742. if (dt.Rows.Count > 0)
  743. {
  744. #region 删除出库记录
  745. ProductOutStoragebll.DeleteProductOutStorage(" and Pos_OutTime='" + Plu_CreateTime + "' and Pos_ProductNumber='" + dt.Rows[0]["Prod_Number"].ToString() + "'");
  746. #region 更新商品库存数量
  747. int Quantity = Convert.ToInt32(Convert.ToInt32(dt.Rows[0]["Prod_Quantity"]) + 1);
  748. Productbll.UpdateProduct("Prod_Quantity=" + Quantity + "", dt.Rows[0]["Prod_Number"].ToString());
  749. #endregion
  750. #endregion
  751. }
  752. }
  753. }
  754. #endregion
  755. MessageBoxCustom.Show("删除成功!");
  756. #region 获取金额
  757. //应收款
  758. DataTable DaPlus = ppibll.GetSum(" Plu_OrdNumber='" + StrOrdNumber + "'").Tables[0];
  759. DataTable DaOr = orbll.GetView_Custom("tb_ErpOrder", StrWhere: "Ord_Number = '" + this.StrOrdNumber + "'", ShowColumnName: "Ord_SeriesPrice").Tables[0];
  760. decimal sum;
  761. if (string.IsNullOrEmpty(DaPlus.Rows[0]["Plu_Amount"].ToString()))
  762. { sum = 0.00m; }
  763. else
  764. { sum = Convert.ToDecimal(DaPlus.Rows[0]["Plu_Amount"]); }
  765. this.txtCope.Text = (Convert.ToDecimal(DaOr.Rows[0]["Ord_SeriesPrice"]) + Convert.ToDecimal(sum)).ToString();
  766. //已付款
  767. decimal Paid;
  768. DataTable DaPayment = ptbll.GetSum(" Pay_OrdNumber='" + StrOrdNumber + "'").Tables[0];
  769. if (string.IsNullOrEmpty(DaPayment.Rows[0]["Pay_AmountOf"].ToString()))
  770. { Paid = 0.00m; }
  771. else
  772. { Paid = Convert.ToDecimal(DaPayment.Rows[0]["Pay_AmountOf"]); }
  773. this.txtPaid.Text = Paid.ToString();
  774. //欠款
  775. this.txtArrears.Text = (Convert.ToDecimal(DaOr.Rows[0]["Ord_SeriesPrice"]) + Convert.ToDecimal(sum) - Convert.ToDecimal(Paid)).ToString();
  776. #endregion
  777. this.PublicFunctionPlusPickItems();
  778. this.IsSaveed = true;
  779. }
  780. else
  781. { MessageBoxCustom.Show("删除失败!"); }
  782. }
  783. }
  784. }
  785. catch (Exception ex)
  786. { MessageBoxCustom.Show(ex.Message); }
  787. }
  788. /// <summary>
  789. /// 获取收款项目
  790. /// </summary>
  791. /// <param name="sender"></param>
  792. /// <param name="e"></param>
  793. void dgvData1_Click(object sender, EventArgs e)
  794. {
  795. if (this.dgvData1.Rows.Count > 0)
  796. {
  797. this.ClearPerformance();
  798. if (Convert.ToDecimal(this.dgvData1.CurrentRow.Cells["欠款"].Value) != 0)
  799. {
  800. if (this.panelStageName.Visible)
  801. { this.txtStageName.Text = this.dgvData1.CurrentRow.Cells["拍摄名称"].Value.ToString().Trim(); }
  802. this.txtPay_ReceivableProject.Text = this.dgvData1.CurrentRow.Cells["加挑商品"].Value.ToString();
  803. this.txtPay_AmountOf.Text = this.dgvData1.CurrentRow.Cells["欠款"].Value.ToString();
  804. this.txtSalesperson.Text = this.dgvData1.CurrentRow.Cells["接单人"].Value.ToString();
  805. this.txtSecondPin.Text = this.dgvData1.CurrentRow.Cells["收款类别"].Value.ToString();
  806. this.StrPusNumber = this.dgvData1.CurrentRow.Cells["加挑编号"].Value.ToString();
  807. this.StrViceNumber = this.dgvData1.CurrentRow.Cells["数码编号"].Value.ToString();
  808. }
  809. else if (Convert.ToDecimal(this.dgvData1.CurrentRow.Cells["欠款"].Value) == 0 && Convert.ToDecimal(this.dgvData1.CurrentRow.Cells["付款笔数"].Value)==0)
  810. {
  811. if (this.panelStageName.Visible)
  812. { this.txtStageName.Text = this.dgvData1.CurrentRow.Cells["拍摄名称"].Value.ToString().Trim(); }
  813. this.txtPay_ReceivableProject.Text = this.dgvData1.CurrentRow.Cells["加挑商品"].Value.ToString();
  814. this.txtPay_AmountOf.Text = this.dgvData1.CurrentRow.Cells["欠款"].Value.ToString();
  815. this.txtSalesperson.Text = this.dgvData1.CurrentRow.Cells["接单人"].Value.ToString();
  816. this.txtSecondPin.Text = this.dgvData1.CurrentRow.Cells["收款类别"].Value.ToString();
  817. this.StrPusNumber = this.dgvData1.CurrentRow.Cells["加挑编号"].Value.ToString();
  818. this.StrViceNumber = this.dgvData1.CurrentRow.Cells["数码编号"].Value.ToString();
  819. }
  820. else
  821. { this.ClearPaymentDetails(); }
  822. }
  823. }
  824. /// <summary>
  825. /// 清空付款详情
  826. /// </summary>
  827. void ClearPaymentDetails()
  828. {
  829. this.txtStageName.Text = "";
  830. this.txtPay_ReceivableProject.Text = "";
  831. this.txtPay_AmountOf.Text = "";
  832. this.txtSalesperson.Text = "";
  833. this.txtSecondPin.Text = "";
  834. this.StrPusNumber = "";
  835. this.StrViceNumber = "";
  836. }
  837. /// <summary>
  838. /// 保存收款详情
  839. /// </summary>
  840. /// <param name="sender"></param>
  841. /// <param name="e"></param>
  842. protected override void btnSave_Click(object sender, EventArgs e)
  843. {
  844. try
  845. {
  846. #region 判断不能为空
  847. if (StrOrdType == "儿童订单")
  848. {
  849. if (string.IsNullOrEmpty(this.txtStageName.Text.Trim()))
  850. { MessageBoxCustom.Show("拍摄阶段不能为空!"); return; }
  851. }
  852. if (string.IsNullOrEmpty(this.txtPay_ReceivableProject.Text))
  853. { MessageBoxCustom.Show("收款项目不能为空!请点击你要收款的加挑物品!"); return; }
  854. if (string.IsNullOrEmpty(this.txtPay_AmountOf.Text.Trim()))
  855. { MessageBoxCustom.Show("收款金额不能为空!"); return; }
  856. if (string.IsNullOrEmpty(this.cmbPay_PaymentMethod.Text.Trim()))
  857. { MessageBoxCustom.Show("支付方式不能为空!"); return; }
  858. if (string.IsNullOrEmpty(this.txtPay_ThePayee.Text.Trim()))
  859. { MessageBoxCustom.Show("收款人不能为空!"); return; }
  860. if (string.IsNullOrEmpty(this.txtPay_CreateDatetime.DateValue.Trim()))
  861. { MessageBoxCustom.Show("收款时间不能为空!"); return; }
  862. if (string.IsNullOrEmpty(this.txtSalesperson.Text.Trim()))
  863. { MessageBoxCustom.Show("销售人员不能为空!"); return; }
  864. if (string.IsNullOrEmpty(this.txtSecondPin.Text.Trim()))
  865. { MessageBoxCustom.Show("二销类别不能为空!"); return; }
  866. if (Convert.ToDecimal(this.dgvData1.SelectedRows[0].Cells["欠款"].Value) > 0)
  867. {
  868. if (Convert.ToDecimal(this.dgvData1.SelectedRows[0].Cells["欠款"].Value) < Convert.ToDecimal(this.txtPay_AmountOf.Text))
  869. {
  870. MessageBoxCustom.Show("本次收款不能大于欠款金额:" + this.dgvData1.SelectedRows[0].Cells["欠款"].Value.ToString().Trim() + "!");
  871. cmbPay_PaymentMethod.SetTextAndTag_ValueNull();
  872. return;
  873. }
  874. }
  875. else if (Convert.ToDecimal(this.dgvData1.SelectedRows[0].Cells["欠款"].Value) < 0)
  876. {
  877. if (Convert.ToDecimal(this.txtPay_AmountOf.Text) >= 0)
  878. {
  879. MessageBoxCustom.Show("退款金额不能大于0!");
  880. cmbPay_PaymentMethod.SetTextAndTag_ValueNull();
  881. return;
  882. }
  883. else if (Convert.ToDecimal(this.dgvData1.SelectedRows[0].Cells["欠款"].Value) > Convert.ToDecimal(this.txtPay_AmountOf.Text))
  884. {
  885. MessageBoxCustom.Show("本次收款不能小于于欠款金额:" + this.dgvData1.SelectedRows[0].Cells["欠款"].Value.ToString().Trim() + "!");
  886. cmbPay_PaymentMethod.SetTextAndTag_ValueNull();
  887. return;
  888. }
  889. }
  890. else if (Convert.ToDecimal(this.dgvData1.SelectedRows[0].Cells["欠款"].Value) == 0 && Convert.ToDecimal(this.dgvData1.CurrentRow.Cells["付款笔数"].Value) > 0)
  891. {
  892. MessageBoxCustom.Show("欠款金额为0不能再收款!");
  893. cmbPay_PaymentMethod.SetTextAndTag_ValueNull();
  894. return;
  895. }
  896. #endregion
  897. #region 2017-03-24 杨云奕 添加 判断是否接入微信支付宝的接口
  898. FinancialPayApiControl PayApi = new FinancialPayApiControl();
  899. //int intCode = PayApi.PayApiControl(StrOrdNumber, this.cmbPay_PaymentMethod.SelectedNode.Text, Convert.ToDecimal(this.txtPay_AmountOf.Text));
  900. //2017-04-03 刘工修改
  901. int intCode = PayApi.PayApiControl(StrOrdNumber, this.cmbPay_PaymentMethod.Text.Trim(), Convert.ToDecimal(this.txtPay_AmountOf.Text));
  902. string serialnumber = "";
  903. if (intCode == 1)
  904. {
  905. serialnumber = PayApi.SerialNumber;
  906. }
  907. else if (intCode == -1)
  908. {
  909. //MessageBoxCustom.Show("取消微信刷卡支付,保存取消");
  910. return;
  911. }
  912. #endregion
  913. #region 保存
  914. List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
  915. LYFZ.Model.Model_ErpPayment model = new Model.Model_ErpPayment();
  916. if (StrOrdType == "儿童订单")
  917. { model.Pay_ShootingName = this.txtStageName.Text.ToString(); }
  918. model.Pay_OrdNumber = this.StrOrdNumber.Trim();
  919. model.Pay_ViceNumber = this.StrViceNumber.Trim();
  920. model.Pay_PlusPickNumber = this.StrPusNumber;
  921. model.pay_SerialNumber = serialnumber;
  922. model.Pay_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  923. model.Pay_AmountOf = Convert.ToDecimal(this.txtPay_AmountOf.Text);
  924. model.Pay_OpenSingle = this.dgvData1.CurrentRow.Cells["接单人编号"].Value.ToString();
  925. model.Pay_ThePayee = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  926. model.Pay_PaymentMethod = this.cmbPay_PaymentMethod.Tag.ToString();
  927. model.Pay_OrdersLocation = "";
  928. model.Pay_ReceivableProject = this.txtPay_ReceivableProject.Text;
  929. model.Pay_Remark = this.txtPay_Remark.Text;
  930. model.Pay_CreateDatetime = Convert.ToDateTime(this.txtPay_CreateDatetime.DateTimeValue.Trim());
  931. model.Pay_Category = this.txtPay_Category.Text;
  932. model.Pay_TwoPinsCategory = this.dgvData1.CurrentRow.Cells["二销类别编号"].Value.ToString(); ;
  933. model.Pay_Type = 0;
  934. model.Pay_CommissionRatio = "";
  935. if (this.listBoxPerformance.Items.Count > 0 && this.currentPersonCommissionRatio != null)
  936. {
  937. model.Pay_OpenSingle = this.currentPersonCommissionRatio.ToOrderPersons();
  938. model.Pay_CommissionRatio = this.currentPersonCommissionRatio.ToString();
  939. }
  940. if (modelpm == null)
  941. {
  942. modelpm = new BLL.MemberCardPaymentModel();
  943. modelpm.PaymentAmount = Convert.ToDecimal(this.txtPay_AmountOf.Text);
  944. modelpm.RechargeDiscount = 0;
  945. modelpm.DiscountAmount = 0;
  946. modelpm.StrOrdNumber = this.StrOrdNumber;
  947. modelpm.StrPaymentMethod = "其他";
  948. modelpm.StrReturnType = "clist";
  949. }
  950. //if (modelpm.RechargeDiscount>0)
  951. //{
  952. // model.Pay_AmountOf = model.Pay_AmountOf * modelpm.RechargeDiscount;
  953. //}
  954. //if (modelpm.PaymentAmount != model.Pay_AmountOf)
  955. //{
  956. // MessageBoxCustom.Show("储值卡扣款金额:“" + modelpm.PaymentAmount + "”和订单收款金额:“" + model.Pay_AmountOf + "”不一致,请重新收款!");
  957. // cmbPay_PaymentMethod.Text = "";
  958. // return;
  959. //}
  960. model.Pay_PaymentDiscount = modelpm.RechargeDiscount;
  961. model.Pay_DiscountAmount = modelpm.DiscountAmount;
  962. model.Pay_McNumber = modelpm.StrCardNumber;
  963. clist.Add(ptbll.GetAddCommandInfo(model));
  964. clist.AddRange(LYFZ.BLL.OrderPayment_Member.LaterPeriodPayment(StrClientNumber, modelpm, StrSource: "订单后期", strGuid : guid));
  965. if (clist.Count > 0)
  966. {
  967. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) <= 0)
  968. { MessageBoxCustom.Show("保存失败!"); return; }
  969. this.IsSaveed = true;
  970. this.cmbPay_PaymentMethod.SetTextAndTag_ValueNull();
  971. MessageBoxCustom.Show("保存成功!");
  972. this.ClearPerformance();
  973. DataTable DaOr = orbll.GetView_Custom("tb_ErpOrder", StrWhere: "Ord_Number = '" + this.StrOrdNumber + "'", ShowColumnName: "Ord_SeriesPrice,Ord_SinceOrderNumber").Tables[0];
  974. ///付款后短信提醒
  975. LYFZ.BLL.BLL_ErpSMSRecord.SendMsgByPayment(
  976. StrOrdNumber,
  977. DaOr.Rows[0]["Ord_SinceOrderNumber"].ToString(),
  978. Convert.ToDecimal(this.txtPay_AmountOf.Text).ToString("0.00"),
  979. this.cmbPay_PaymentMethod.Text,
  980. SDateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
  981. );
  982. this.ClearPaymentDetails();
  983. #region 获取金额
  984. //应收款
  985. DataTable DaPlus = ppibll.GetSum(" Plu_OrdNumber='" + this.StrOrdNumber + "'").Tables[0];
  986. decimal sum = 0;
  987. if (!string.IsNullOrEmpty(DaPlus.Rows[0]["Plu_Amount"].ToString()))
  988. { sum = Convert.ToDecimal(DaPlus.Rows[0]["Plu_Amount"]); }
  989. this.txtCope.Text = Convert.ToDecimal(Convert.ToDecimal(DaOr.Rows[0]["Ord_SeriesPrice"]) + Convert.ToDecimal(sum)).ToString();
  990. //已付款
  991. decimal Paid = 0;
  992. DataTable DaPayment = ptbll.GetSum(" Pay_OrdNumber='" + this.StrOrdNumber + "'").Tables[0];
  993. if (!string.IsNullOrEmpty(DaPayment.Rows[0]["Pay_AmountOf"].ToString()))
  994. { Paid = Convert.ToDecimal(DaPayment.Rows[0]["Pay_AmountOf"]); }
  995. this.txtPaid.Text = Paid.ToString();
  996. //欠款
  997. this.txtArrears.Text = Convert.ToDecimal(Convert.ToDecimal(DaOr.Rows[0]["Ord_SeriesPrice"]) + Convert.ToDecimal(sum) - Convert.ToDecimal(Paid)).ToString();
  998. #endregion
  999. this.PublicFunctionPlusPickItems();
  1000. this.PublicFunctionPayment();
  1001. this.txtPay_CreateDatetime.Text = SDateTime.Now.ToString();
  1002. this.txtPay_CreateDatetime.Enabled = false;
  1003. }
  1004. #endregion
  1005. }
  1006. catch (Exception ex)
  1007. { MessageBoxCustom.Show(ex.Message); }
  1008. }
  1009. /// <summary>
  1010. /// 删除收款详情
  1011. /// </summary>
  1012. /// <param name="sender"></param>
  1013. /// <param name="e"></param>
  1014. protected override void btndeleteSK_Click(object sender, EventArgs e)
  1015. {
  1016. try
  1017. {
  1018. if (this.dgv2.SelectedRows.Count == 0)
  1019. { MessageBoxCustom.Show("请选中你要删除的数据!"); return; }
  1020. List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
  1021. int id = Convert.ToInt32(this.dgv2.CurrentRow.Cells["ID"].Value);
  1022. DataTable dt = ptbll.GetList("Id=" + id + "").Tables[0];
  1023. if (dt.Rows.Count > 0)
  1024. {
  1025. if (dt.Rows[0]["Pay_FinancialAudit"].ToString().Trim() == "已审核")
  1026. { MessageBoxCustom.Show("收款已审核,不能删除!"); return; }
  1027. clist.Add(ptbll.GetDeleteCommandInfo("ID", "=", id));
  1028. // 写入操作日志
  1029. string logsContent = "删除订单号为:" + this.txtOrd_Number.Text.Trim() + " 金额为:" + this.dgv2.CurrentRow.Cells["Pay_AmountOf"].Value.ToString();
  1030. LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog(LYFZ.EnumPublic.SystemLogsType.删除收款记录, logsContent, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name);
  1031. // 删除二销(后期)项目提成比例设置
  1032. if (!string.IsNullOrEmpty(dt.Rows[0]["Pay_CustomNumber"].ToString().Trim()))
  1033. { clist.Add(TwoPinsProjectCommissionProportionBll.GetDeleteCommandInfo("Tpc_CustomNumber", "=", dt.Rows[0]["Pay_CustomNumber"].ToString().Trim())); }
  1034. decimal RefundAmount = Convert.ToDecimal(this.dgv2.CurrentRow.Cells["Pay_AmountOf"].Value) - Convert.ToDecimal(this.dgv2.CurrentRow.Cells["DiscountAmount"].Value);
  1035. if (this.dgv2.CurrentRow.Cells["Pay_Category"].Value.ToString().Trim() == LYFZ.EnumPublic.PaymentCategoryEnum.全款.ToString().Trim() || this.dgv2.CurrentRow.Cells["Pay_Category"].Value.ToString().Trim() == LYFZ.EnumPublic.PaymentCategoryEnum.预约收款.ToString().Trim() || this.dgv2.CurrentRow.Cells["Pay_Category"].Value.ToString().Trim() == LYFZ.EnumPublic.PaymentCategoryEnum.预约补款.ToString().Trim())
  1036. { clist.AddRange(LYFZ.BLL.OrderPayment_Member.BeforePeriodPayment_DeleteRefund(this.StrOrdNumber.Trim(), dt.Rows[0]["Pay_McNumber"].ToString().Trim(), this.StrClientNumber, RefundAmount)); }
  1037. else
  1038. { clist.AddRange(LYFZ.BLL.OrderPayment_Member.LaterPeriodPayment_DeleteRefund(this.StrOrdNumber.Trim(), dt.Rows[0]["Pay_McNumber"].ToString().Trim(), this.StrClientNumber, RefundAmount, StrStoreNumber: LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID())); }
  1039. if (clist.Count > 0)
  1040. {
  1041. if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.No)
  1042. { return; }
  1043. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
  1044. {
  1045. MessageBoxCustom.Show("删除成功!");
  1046. #region 获取金额
  1047. //应收款
  1048. DataTable DaPlus = ppibll.GetSum(" Plu_OrdNumber='" + this.StrOrdNumber + "'").Tables[0];
  1049. DataTable DaOr = orbll.GetView_Custom("tb_ErpOrder", StrWhere: "Ord_Number = '" + this.StrOrdNumber + "'", ShowColumnName: "Ord_SeriesPrice").Tables[0];
  1050. decimal sum = 0;
  1051. if (!string.IsNullOrEmpty(DaPlus.Rows[0]["Plu_Amount"].ToString()))
  1052. { sum = Convert.ToDecimal(DaPlus.Rows[0]["Plu_Amount"]); }
  1053. this.txtCope.Text = Convert.ToDecimal(Convert.ToDecimal(DaOr.Rows[0]["Ord_SeriesPrice"]) + Convert.ToDecimal(sum)).ToString();
  1054. //已付款
  1055. decimal Paid = 0;
  1056. DataTable DaPayment = ptbll.GetSum(" Pay_OrdNumber='" + this.StrOrdNumber + "'").Tables[0];
  1057. if (!string.IsNullOrEmpty(DaPayment.Rows[0]["Pay_AmountOf"].ToString()))
  1058. { Paid = Convert.ToDecimal(DaPayment.Rows[0]["Pay_AmountOf"]); }
  1059. this.txtPaid.Text = this.StrPaid.ToString();
  1060. //欠款
  1061. this.txtArrears.Text = Convert.ToDecimal(Convert.ToDecimal(DaOr.Rows[0]["Ord_SeriesPrice"]) + Convert.ToDecimal(sum) - Convert.ToDecimal(Paid)).ToString();
  1062. #endregion
  1063. this.PublicFunctionPlusPickItems();
  1064. this.PublicFunctionPayment();
  1065. this.IsSaveed = true;
  1066. }
  1067. }
  1068. else
  1069. { MessageBoxCustom.Show("删除失败!"); }
  1070. }
  1071. else
  1072. { MessageBoxCustom.Show("收款记录不存在!"); }
  1073. }
  1074. catch (Exception ex)
  1075. { MessageBoxCustom.Show(ex.Message); }
  1076. }
  1077. /// <summary>
  1078. /// 打印收据
  1079. /// </summary>
  1080. /// <param name="sender"></param>
  1081. /// <param name="e"></param>
  1082. protected override void btnPrint_Click(object sender, EventArgs e)
  1083. {
  1084. try
  1085. {
  1086. if (this.dgv2.SelectedRows.Count == 0)
  1087. {
  1088. MessageBoxCustom.Show("请选择你要打印的数据!");
  1089. return;
  1090. }
  1091. #region 获取应付
  1092. DataTable dt = orbll.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];
  1093. DataTable dt_PlusPickItems = orbll.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];
  1094. decimal Handle = 0;
  1095. decimal PackagesMoney = 0;
  1096. string Pay_ReceivableProject = "";
  1097. for (int i = 0; i < dgv2.SelectedRows.Count; i++)
  1098. {
  1099. if (!string.IsNullOrEmpty(dgv2.SelectedRows[i].Cells["Pay_ReceivableProject"].Value.ToString()))
  1100. { Pay_ReceivableProject += dgv2.SelectedRows[i].Cells["Pay_ReceivableProject"].Value.ToString().Replace(",", "┳") + ","; } ///传入的数据带有 ",",影响数据判断。将","转换成特殊符号,然后在逻辑处理中再转换回来
  1101. else
  1102. { PackagesMoney = Convert.ToDecimal(orbll.GetView_Custom("tb_ErpOrder", StrWhere: "Ord_Number='" + StrOrdNumber + "' ", ShowColumnName: "Ord_SeriesPrice").Tables[0].Rows[0]["Ord_SeriesPrice"]); }
  1103. }
  1104. if (Pay_ReceivableProject != "")
  1105. {
  1106. Pay_ReceivableProject = Pay_ReceivableProject.TrimEnd(',');
  1107. //筛选重复的数据
  1108. string[] sj = Pay_ReceivableProject.Split(',');
  1109. List<string> strReturn = new List<string>();
  1110. foreach (string name in sj)
  1111. {
  1112. string name1 = name.Replace("┳", ",");///将特殊符号转换成“,”
  1113. if (strReturn.Contains(name1) == false) strReturn.Add(name1);
  1114. }
  1115. string[] Sx = strReturn.ToArray();
  1116. if (Sx.Length > 0)
  1117. {
  1118. for (int t = 0; t < Sx.Length; t++)
  1119. {
  1120. DataRow[] row = dt_PlusPickItems.Select("Plu_Goods='" + Sx[t] + "'");
  1121. if (row.Length > 0)
  1122. { Handle += Convert.ToDecimal(row[0]["Plu_Amount"]); }
  1123. else
  1124. { Handle = 0; }
  1125. }
  1126. }
  1127. }
  1128. #endregion
  1129. Hashtable htData = new Hashtable();
  1130. htData["dgvData"] = this.dgv2;
  1131. htData["strNumber"] = this.StrOrdNumber.Trim();
  1132. htData["Arrear"] = this.txtArrears.Text.Trim();
  1133. htData["CopeAmount"] = Handle + PackagesMoney;
  1134. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintFixedFormat(LYFZ.EnumPublic.PrintTypeEnum.订单收款, htData);
  1135. }
  1136. catch (Exception ex)
  1137. { MessageBoxCustom.Show(ex.Message); }
  1138. }
  1139. /// <summary>
  1140. /// 绑定二销类别
  1141. /// </summary>
  1142. public void BindPay_TwoPinsCategory()
  1143. {
  1144. DataTable dt = new DataTable();
  1145. DataTable dt2 = scbll.GetList("Sc_ClassCode='BEBACDAJDFDDEACGJ'").Tables[0];
  1146. dt = scbll.GetList("Sc_ClassParentID=" + dt2.Rows[0]["ID"] + " And Sc_ClassCode != 'AAAAABZ' and Sc_ClassCode!='BEBCADBFBCDFBGJHC' and Sc_ClassCode!='BEBCADBFBDDEGGABF' and Sc_ClassCode!='BEBCBFBICGDHCGBEJ' and Sc_ClassCode!='BEBCABBAAICBDHDHI' and Sc_ClassCode!='BEBCABBAAICJAAGDG' and Sc_ClassCode!='BEBCBFBICFCECBHFF' ").Tables[0];
  1147. this.cmbPay_TwoPinsCategory.DataSource = dt;
  1148. this.cmbPay_TwoPinsCategory.ValueMember = "Sc_ClassCode";
  1149. this.cmbPay_TwoPinsCategory.DisplayMember = "Sc_ClassName";
  1150. DataRow dr = dt.NewRow();
  1151. dr["Sc_ClassCode"] = "-1";
  1152. dr["Sc_ClassName"] = "";
  1153. dt.Rows.InsertAt(dr, 0);
  1154. this.cmbPay_TwoPinsCategory.SelectedIndex = 0;
  1155. }
  1156. /// <summary>
  1157. /// 修改收款时间
  1158. /// </summary>
  1159. /// <param name="sender"></param>
  1160. /// <param name="e"></param>
  1161. protected override void btnUpdateTime_Click(object sender, EventArgs e)
  1162. {
  1163. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.UpdatePaymentTime))
  1164. { this.txtPay_CreateDatetime.Enabled = true; }
  1165. else
  1166. {
  1167. LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm frm = new DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm("OrdersReceivablesCompetence", CustomAttributes.OperatingAuthority.UpdatePaymentTime);
  1168. if (frm.ShowDialog() == DialogResult.OK)
  1169. {
  1170. if (LYFZ.BLL.BLL_ErpUser.GetRights(frm.CurrentAuthorizeUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.UpdatePaymentTime, frm.User_BelongRoles))
  1171. {
  1172. frm.SetAuthorizationResult();
  1173. this.txtPay_CreateDatetime.Enabled = true; }
  1174. else {
  1175. frm.SetAuthorizationResult(String.Format("授权失败,授权人没有'{0}'权限", LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm.ConvertEnumToDescription(CustomAttributes.OperatingAuthority.UpdatePaymentTime).ToString()));
  1176. }
  1177. }
  1178. }
  1179. }
  1180. /// <summary>
  1181. /// 修改加挑时间
  1182. /// </summary>
  1183. /// <param name="sender"></param>
  1184. /// <param name="e"></param>
  1185. void btnUpdateTime2_Click(object sender, EventArgs e)
  1186. {
  1187. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.UpdatePaymentTime))
  1188. { this.txtPlusPickTime.Enabled = true; }
  1189. else
  1190. {
  1191. LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm frm = new DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm("OrdersReceivablesCompetence", CustomAttributes.OperatingAuthority.UpdatePaymentTime);
  1192. if (frm.ShowDialog() == DialogResult.OK)
  1193. {
  1194. if (LYFZ.BLL.BLL_ErpUser.GetRights(frm.CurrentAuthorizeUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.UpdatePaymentTime, frm.User_BelongRoles))
  1195. {
  1196. frm.SetAuthorizationResult();
  1197. this.txtPlusPickTime.Enabled = true; }
  1198. else {
  1199. frm.SetAuthorizationResult(String.Format("授权失败,授权人没有'{0}'权限", LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm.ConvertEnumToDescription(CustomAttributes.OperatingAuthority.UpdatePaymentTime).ToString()));
  1200. }
  1201. }
  1202. }
  1203. }
  1204. LYFZ.BLL.MemberCardPaymentModel modelpm = null;
  1205. /// <summary>
  1206. /// 选择支付方式事件
  1207. /// </summary>
  1208. /// <param name="sender"></param>
  1209. /// <param name="e"></param>
  1210. protected override void cmbPay_PaymentMethod_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  1211. {
  1212. guid = Guid.NewGuid().ToString().Replace("-", "").ToUpper();
  1213. if (this.cmbPay_PaymentMethod.Text != "")
  1214. {
  1215. if (this.cmbPay_PaymentMethod.Tag.ToString() == "BEBACCAFEGECFBJFD")
  1216. {
  1217. if (!string.IsNullOrEmpty(this.txtPay_AmountOf.Text))
  1218. {
  1219. LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.MemberCardDeductAmountSuperSmallForm frm = new DoorCityProcess.SuperSmallForm.MemberCardDeductAmountSuperSmallForm();
  1220. frm.strOrdNumber = StrOrdNumber;//订单编号
  1221. frm.PaymentAmount = Convert.ToDecimal(txtPay_AmountOf.Text);//支付金额
  1222. frm.StrReturnType = "clist";
  1223. frm.panelPerformance.Show();
  1224. frm.btnDelPerformance.Click += BtnDelPerformance_Click;
  1225. frm.btnPerformance.Click += BtnPerformance_Click;
  1226. frm.ShowDialog();
  1227. if (frm.IsSaveed)
  1228. {
  1229. modelpm = frm.model;
  1230. if (modelpm.PaymentAmount > Convert.ToDecimal(txtPay_AmountOf.Text))
  1231. {
  1232. MessageBoxCustom.Show("系统检查出会员卡扣款金额: " + modelpm.PaymentAmount + " 大于实际扣款金额: " + txtPay_AmountOf.Text + " ,请重新点击收款条目进行收款操作!");
  1233. return;
  1234. }
  1235. this.btnSave_Click(this, null);
  1236. }
  1237. else
  1238. { this.cmbPay_PaymentMethod.SetTextAndTag_ValueNull(); }
  1239. }
  1240. else
  1241. { this.cmbPay_PaymentMethod.SetTextAndTag_ValueNull(); MessageBoxCustom.Show("请输入金额!"); }
  1242. }
  1243. else
  1244. { modelpm = null; }
  1245. }
  1246. }
  1247. }
  1248. }