using LYFZ.ComponentLibrary; using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Globalization; using System.Linq; using System.Text; using System.Windows.Forms; namespace LYFZ.Software.MainBusiness.FinancialManagement.OrdersReceivables { public partial class FrmPrePayment : LYFZ.Software.UI.FinancialManagement.OrdersReceivables.FrmPrePayment { LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder(); LYFZ.BLL.BLL_ErpPayment ptbll = new BLL.BLL_ErpPayment(); LYFZ.BLL.BLL_AllViewSet avsbll = new BLL.BLL_AllViewSet(); LYFZ.BLL.BLL_ErpPlusPickItems ppisbll = new BLL.BLL_ErpPlusPickItems(); LYFZ.BLL.BLL_ErpOrdersPhotography opbll = new BLL.BLL_ErpOrdersPhotography(); LYFZ.BLL.BLL_ErpTwoPinsProjectCommissionProportion TwoPinsProjectCommissionProportionBll = new BLL.BLL_ErpTwoPinsProjectCommissionProportion(); public FrmPrePayment() { this.Load += FrmPrePayment_Load; this.Shown += FrmPrePayment_Shown; this.dtpCreateDatetime.Enter += dtpCreateDatetime_Enter; this.dtpCreateDatetime.Leave += dtpCreateDatetime_Leave; this.txtPaymentAmount.KeyPress += txtPaymentAmount_KeyPress; this.btnSet.Click += btnSet_Click; this.txtPaymentAmount.EventTextBoxEx_TextChanged += txtPaymentAmount_EventTextBoxEx_TextChanged; this.btnSave.Click += btnSave_Click; this.btnDelete.Click += btnDelete_Click; this.btnPrint.Click += btnPrint_Click; this.cmbtreevPaymentMethod.ComboBoxTree_NodeMouseClick += cmbtreevPaymentMethod_ComboBoxTree_NodeMouseClick; this.btnUpdateTime.Click += btnUpdateTime_Click; this.btnNotPayment.Click += btnNotPayment_Click; this.btnPerformance.Click += BtnPerformance_Click; this.btnDelPerformance.Click += BtnDelPerformance_Click; this.dgvData.CellDoubleClick += DgvData_CellDoubleClick; //TestData(); } private void DgvData_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { if (e.RowIndex >= 0 && e.ColumnIndex >= 0) { if (e.ColumnIndex == 4) { DataGridViewRow gridViewRow = this.dgvData.Rows[e.RowIndex]; if (gridViewRow.Tag != null) { DataRow dataRow = (DataRow)gridViewRow.Tag; decimal Pay_AmountOf =Convert.ToDecimal(dataRow["Pay_AmountOf"].ToString()); string commissionRatioJsonData = ""; if (dataRow["Pay_CommissionRatio"] != null) { commissionRatioJsonData = dataRow["Pay_CommissionRatio"].ToString(); } if (String.IsNullOrWhiteSpace(commissionRatioJsonData)) { MessageBoxCustom.Show("当前这笔收款项未做自定义业绩分配"); return; } else { LYFZ.Software.MainBusiness.DoorCityProcess.frmCustomPerformance customPerformance = new MainBusiness.DoorCityProcess.frmCustomPerformance(); try { customPerformance.CollectionAmount = Pay_AmountOf; customPerformance.IsReadOnly = true; customPerformance.PersonCommissionRatioJsonDataInitialization(commissionRatioJsonData); customPerformance.BindPerformancePersonControls(); customPerformance.ShowDialog(); } catch (Exception ex) { MessageBoxCustom.Show(String.Format("收款金额输入格式不正确:{0}", ex.Message)); return; } } } else { MessageBoxCustom.Show("当前收款记录异常"); return; } } } } LYFZ.BLL.OrderPersonCommissionRatio currentPersonCommissionRatio = null; private void BtnDelPerformance_Click(object sender, EventArgs e) { this.ClearPerformance(); } /// /// 清除业绩分配 /// void ClearPerformance() { this.listBoxPerformance.Items.Clear(); this.listBoxPerformance.Tag = null; this.currentPersonCommissionRatio = null; } private void BtnPerformance_Click(object sender, EventArgs e) { if (this.erpOrderModel != null) { LYFZ.Software.MainBusiness.DoorCityProcess.frmCustomPerformance customPerformance = new MainBusiness.DoorCityProcess.frmCustomPerformance(); try { customPerformance.CollectionAmount = Convert.ToDecimal(this.txtPaymentAmount.Text.Trim()); if (this.listBoxPerformance.Items.Count > 0&& this.currentPersonCommissionRatio!=null) { customPerformance.PersonCommissionRatio = this.currentPersonCommissionRatio; } else { if (!String.IsNullOrWhiteSpace(this.erpOrderModel.Ord_CommissionRatio)) { customPerformance.PersonCommissionRatioJsonDataInitialization(this.erpOrderModel.Ord_CommissionRatio); } else { customPerformance.OrderPersonInitialization(this.erpOrderModel.Ord_OrderPersonNumber); } } customPerformance.BindPerformancePersonControls(); if (customPerformance.ShowDialog() == DialogResult.OK) { this.listBoxPerformance.Items.Clear(); this.currentPersonCommissionRatio = customPerformance.PersonCommissionRatio; customPerformance.BindListBoxPerformance(this.listBoxPerformance); } } catch (Exception ex) { MessageBoxCustom.Show(String.Format("收款金额输入格式不正确:{0}", ex.Message)); } } } /// /// 是否保存 /// public bool IsSaveed = false; /// /// 订单号 /// public string StrOrdNumber; /// /// 主客户编号 /// private string StrClientNumber; private bool _isShowButtonPayment; public string guid = ""; /// /// 是否显示不收款按钮 /// public bool IsShowButtonPayment { get { return _isShowButtonPayment; } set { _isShowButtonPayment = value; this.btnNotPayment.Visible = _isShowButtonPayment; if (!_isShowButtonPayment) { this.btnSave.Location = new Point(this.btnSave.Location.X - 40, this.btnSave.Location.Y); this.btnSave.Width += 10; } else { this.btnSave.Location = new Point(866, this.btnSave.Location.Y); this.btnSave.Width = 75; } } } /// /// 窗体加载事件 /// /// /// void FrmPrePayment_Load(object sender, EventArgs e) { string ExecuteSql = "select Ord_SeriesPrice AS EarlyAmount," + "isnull((select Sum(Pay_AmountOf) from tb_ErpPayment Where Pay_OrdNumber = Ord_Number And Pay_Category in ('全款','预约收款','预约补款')),0) AS EarlyReceivedAmount," + "isnull((select Sum(Plu_Amount) from tb_ErpPlusPickItems Where Plu_OrdNumber = Ord_Number),0) AS LateAmount," + "isnull((select Sum(Pay_AmountOf) from tb_ErpPayment Where Pay_OrdNumber = Ord_Number And Pay_Category = '后期收款'),0) AS LateReceivedAmount " + "from tb_ErpOrder Where Ord_Number = '" + this.StrOrdNumber + "'"; DataTable dt = orbll.GetView_Custom(ExecuteSql).Tables[0]; if (dt.Rows.Count > 0) { this.txtCopeAmount.Text = (Convert.ToDecimal(dt.Rows[0]["EarlyAmount"]) + Convert.ToDecimal(dt.Rows[0]["LateAmount"])).ToString(); this.txtPaidAmount.Text = (Convert.ToDecimal(dt.Rows[0]["EarlyReceivedAmount"]) + Convert.ToDecimal(dt.Rows[0]["LateReceivedAmount"])).ToString(); this.txtEarlyArrearsAmount.Text = (Convert.ToDecimal(dt.Rows[0]["EarlyAmount"]) - Convert.ToDecimal(dt.Rows[0]["EarlyReceivedAmount"])).ToString(); this.txtLateArrearsAmount.Text = (Convert.ToDecimal(dt.Rows[0]["LateAmount"]) - Convert.ToDecimal(dt.Rows[0]["LateReceivedAmount"])).ToString(); if (Convert.ToDecimal(this.txtEarlyArrearsAmount.Text) > 0) { this.txtPaymentAmount.Text = this.txtEarlyArrearsAmount.Text.Trim(); } else { this.txtPaymentAmount.Text = ""; } } else { this.txtCopeAmount.Text = "0"; this.txtPaidAmount.Text = "0"; this.txtEarlyArrearsAmount.Text = "0"; this.txtLateArrearsAmount.Text = "0"; this.txtPaymentAmount.Text = ""; } } LYFZ.Model.Model_ErpOrder erpOrderModel = null; /// /// 加载数据 /// /// /// void FrmPrePayment_Shown(object sender, EventArgs e) { try { this.btnDelete.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.Delete); this.btnSet.Enabled= LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.OrderPaymentMethodSet); if (!string.IsNullOrEmpty(this.StrOrdNumber)) { erpOrderModel = orbll.GetModel(this.StrOrdNumber); if (erpOrderModel != null && erpOrderModel.ID > 0) { 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]; if (dt.Rows.Count > 0) { this.txtOrderNumber.Text = dt.Rows[0]["Ord_SinceOrderNumber"].ToString(); this.StrClientNumber = dt.Rows[0]["M_Cus_CustomerNumber"].ToString(); this.txtOrderClinetName.Text = dt.Rows[0]["客户姓名"].ToString(); this.txtOpenOrderPerson.Text = dt.Rows[0]["接单人"].ToString(); this.txtThePayeeName.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name; this.dtpCreateDatetime.Text = SDateTime.Now.ToString("yyyy-MM-dd"); } this.FrmPrePayment_Load(this, null); } else { erpOrderModel = null; MessageBoxCustom.Show("订单数据加载失败,或订单已被删除"); } } else { MessageBoxCustom.Show("缺少收款订单号参数"); return; } LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_PaymentMethod(this.cmbtreevPaymentMethod); // 获取全部历史收款 this.PublicFunctionRows(); ///控制财务管理扫码支付的版本权 List hideControl = new List(); hideControl.Add(cmbtreevPaymentMethod); LYFZ.Software.MainBusiness.VersionControl.StaticVersion.BindVersionShowHideControl(VersionControl.VersionFunctionEnum.财务管理扫码支付, hideControl, null, null); } catch (Exception ex) { MessageBoxCustom.Show(ex.Message); } } /// /// 全部历史收款 /// void PublicFunctionRows() { this.dgvData.Rows.Clear(); DataTable dt = ptbll.View_ErpPayment("Pay_OrdNumber='" + StrOrdNumber + "'").Tables[0]; if (dt.Rows.Count > 0) { for (int t = 0; t < dt.Rows.Count; t++) { DataGridViewRow dgvr = new DataGridViewRow(); DataGridViewCell cell = null; cell = new DataGridViewTextBoxCell(); cell.Value = dt.Rows[t]["ID"].ToString(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = dt.Rows[t]["Pay_ShootingName"].ToString(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = Convert.ToDecimal(dt.Rows[t]["Pay_AmountOf"]).ToString(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = LYFZ.Command.Command_Validate.DateTimeToString(dt.Rows[t]["Pay_CreateDatetime"], "yyyy-MM-dd HH:mm"); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = dt.Rows[t]["Pay_UserName"].ToString().Trim(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = dt.Rows[t]["Pay_ThePayeeName"].ToString().Trim(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = dt.Rows[t]["Pay_PaymentMethodName"].ToString().Trim(); ; dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = dt.Rows[t]["Pay_Category"].ToString().Trim(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = dt.Rows[t]["Pay_ReceivableProject"].ToString().Trim(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = dt.Rows[t]["Pay_TwoPinsCategoryName"].ToString().Trim(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = dt.Rows[t]["Pay_PaymentDiscount"].ToString().Trim(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = dt.Rows[t]["Pay_DiscountAmount"].ToString().Trim(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = dt.Rows[t]["Pay_Remark"].ToString().Trim(); dgvr.Cells.Add(cell); dgvr.Tag = dt.Rows[t]; this.dgvData.Rows.Add(dgvr); } this.dgvData.ClearSelection(); } } /// /// 时间控件 /// /// /// void dtpCreateDatetime_Enter(object sender, EventArgs e) { if (string.IsNullOrEmpty(this.dtpCreateDatetime.DateValue)) { this.dtpCreateDatetime.DateValue = SDateTime.Now.ToString("yyyy-MM-dd"); } } /// /// 时间控件 /// /// /// void dtpCreateDatetime_Leave(object sender, EventArgs e) { if (string.IsNullOrEmpty(this.dtpCreateDatetime.DateValue)) { this.dtpCreateDatetime.Text = ""; MessageBoxCustom.Show("收款时间格式输入错误"); } } /// /// 输入框设置 /// /// /// void txtPaymentAmount_KeyPress(object sender, KeyPressEventArgs e) { if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar)) { e.Handled = true; } else if (Char.IsPunctuation(e.KeyChar)) { if (e.KeyChar == '.' || e.KeyChar == '-') { if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('.') != -1) { e.Handled = true; } } else { e.Handled = true; } } } /// /// 支付方式设置 /// /// /// void btnSet_Click(object sender, EventArgs e) { LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet(); frm.TypeName = "BEBACCAFCCEAGAIHH"; frm.Version = "Version"; if (frm.ShowDialog() == DialogResult.OK) { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACCAFCCEAGAIHH", this.cmbtreevPaymentMethod); } } /// /// 获取收款类别 /// /// /// void txtPaymentAmount_EventTextBoxEx_TextChanged(object sender, EventArgs e) { this.txtPaymentCategory.Text = LYFZ.BLL.BLL_ErpPayment.GetPaymentType(this.StrOrdNumber, this.txtPaymentAmount.Text); } /// /// 保存 /// /// /// void btnSave_Click(object sender, EventArgs e) { try { if (this.erpOrderModel == null) { MessageBoxCustom.Show("订单数据加载不正确,不能收款"); return; } if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.OrdersReceivables)) { LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm frm = new DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm("OrdersReceivablesCompetence", CustomAttributes.OperatingAuthority.OrdersReceivables); if (frm.ShowDialog() == DialogResult.OK) { if (!LYFZ.BLL.BLL_ErpUser.GetRights(frm.CurrentAuthorizeUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.OrdersReceivables, frm.User_BelongRoles)) { frm.SetAuthorizationResult(String.Format("授权失败,授权人没有'{0}'权限", LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm.ConvertEnumToDescription(CustomAttributes.OperatingAuthority.OrdersReceivables).ToString())); return; } else { frm.SetAuthorizationResult(); } } else { return; } } #region 判断不能为空 if (string.IsNullOrEmpty(this.txtOrderNumber.Text)) { MessageBoxCustom.Show("订单单号不能为空!"); return; } if (string.IsNullOrEmpty(this.txtPaymentAmount.Text)) { MessageBoxCustom.Show("收款金额不能为空!"); return; } if (string.IsNullOrEmpty(this.cmbtreevPaymentMethod.Text)) { MessageBoxCustom.Show("支付方式不能为空!"); return; } if (string.IsNullOrEmpty(this.txtOpenOrderPerson.Text)) { MessageBoxCustom.Show("开单人不能为空!"); return; } if (string.IsNullOrEmpty(this.txtThePayeeName.Text)) { MessageBoxCustom.Show("收款人不能为空!"); return; } if (string.IsNullOrEmpty(this.dtpCreateDatetime.DateValue)) { MessageBoxCustom.Show("收款时间不能为空!"); return; } if (Convert.ToDecimal(this.txtEarlyArrearsAmount.Text) < Convert.ToDecimal(txtPaymentAmount.Text)) { if( MessageBoxCustom.Show("收款金额超过前期欠款金额(" + this.txtEarlyArrearsAmount.Text + ")!\r\n是否继续操作?", "提示消息", MessageBoxButtons.YesNo)== DialogResult.No) { return; } } #endregion #region 2017-03-24 杨云奕 添加 判断是否接入微信支付宝的接口 FinancialPayApiControl PayApi = new FinancialPayApiControl(); // int intCode = PayApi.PayApiControl(StrOrdNumber, this.cmbtreevPaymentMethod.SelectedNode.Text, Convert.ToDecimal(this.txtPaymentAmount.Text)); //2017-04-03 刘工修改 int intCode = PayApi.PayApiControl(StrOrdNumber, this.cmbtreevPaymentMethod.Text.Trim(), Convert.ToDecimal(this.txtPaymentAmount.Text)); string serialnumber = ""; if (intCode == 1) { serialnumber = PayApi.SerialNumber; } else if (intCode == -1) { //MessageBoxCustom.Show("取消微信刷卡支付,保存取消"); return; } #endregion //DataTable dt = orbll.GetView_Custom("tb_ErpOrder", StrWhere: " Ord_Number='" + this.StrOrdNumber + "'", ShowColumnName: "Ord_OrderPersonNumber,Ord_CommissionRatio,Ord_SinceOrderNumber").Tables[0]; List clist = new List(); #region 保存 LYFZ.Model.Model_ErpPayment model = new Model.Model_ErpPayment(); model.Pay_OrdNumber = this.StrOrdNumber.Trim(); model.Pay_ViceNumber = ""; model.pay_SerialNumber = serialnumber; model.Pay_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); model.Pay_AmountOf = Convert.ToDecimal(this.txtPaymentAmount.Text); model.Pay_OpenSingle = this.erpOrderModel.Ord_OrderPersonNumber;//dt.Rows[0]["Ord_OrderPersonNumber"].ToString(); model.Pay_ThePayee = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID; model.Pay_PaymentMethod = this.cmbtreevPaymentMethod.Tag.ToString(); model.Pay_OrdersLocation = ""; model.Pay_ReceivableProject = ""; model.Pay_Remark = txtPaymentRemark.Text; model.Pay_CreateDatetime = Convert.ToDateTime(this.dtpCreateDatetime.DateTimeValue); model.Pay_Category = txtPaymentCategory.Text; model.Pay_TwoPinsCategory = ""; model.Pay_Type = 0; model.Pay_CommissionRatio = this.erpOrderModel.Ord_CommissionRatio;//dt.Rows[0]["Ord_CommissionRatio"].ToString(); if (this.listBoxPerformance.Items.Count>0&&this.currentPersonCommissionRatio != null) { model.Pay_OpenSingle = this.currentPersonCommissionRatio.ToOrderPersons(); model.Pay_CommissionRatio = this.currentPersonCommissionRatio.ToString(); } if (modelpm == null) { modelpm = new BLL.MemberCardPaymentModel(); modelpm.PaymentAmount = Convert.ToDecimal(this.txtPaymentAmount.Text); modelpm.RechargeDiscount = 0; modelpm.DiscountAmount = 0; modelpm.StrOrdNumber = this.StrOrdNumber; modelpm.StrPaymentMethod = "其他"; modelpm.StrReturnType = "clist"; } model.Pay_PaymentDiscount = modelpm.RechargeDiscount; model.Pay_DiscountAmount = modelpm.DiscountAmount; model.Pay_McNumber = modelpm.StrCardNumber; clist.Add(ptbll.GetAddCommandInfo(model)); clist.AddRange(LYFZ.BLL.OrderPayment_Member.BeforePeriodPayment(StrClientNumber, modelpm, StrSource: "订单前期", strGuid : guid)); if (ptbll.GetRecordCount("Pay_OrdNumber = '" + this.StrOrdNumber + "'") <= 0) { LYFZ.Model.Model_ErpOrder modelOrder = orbll.GetModel("Ord_Number", this.StrOrdNumber); modelOrder.Ord_Price = model.Pay_AmountOf; modelOrder.Ord_UpdateDateTime = SDateTime.Now; modelOrder.Ord_UpdateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID; clist.Add(orbll.GetUpdateCommandInfo(modelOrder)); } if (clist.Count > 0) { if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) <= 0) { MessageBoxCustom.Show("收款失败!"); return; } this.cmbtreevPaymentMethod.SetTextAndTag_ValueNull(); MessageBoxCustom.Show("收款成功!"); ///付款后短信提醒 LYFZ.BLL.BLL_ErpSMSRecord.SendMsgByPayment( StrOrdNumber, this.erpOrderModel.Ord_SinceOrderNumber,//dt.Rows[0]["Ord_SinceOrderNumber"].ToString(), Convert.ToDecimal(this.txtPaymentAmount.Text).ToString("0.00"), this.cmbtreevPaymentMethod.Text, SDateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") ); this.ClearPerformance(); this.FrmPrePayment_Load(this, null); this.PublicFunctionRows(); this.dtpCreateDatetime.Text = SDateTime.Now.ToString(); this.txtPaymentAmount.Text = ""; this.cmbtreevPaymentMethod.Text = ""; this.txtPaymentCategory.Text = ""; this.txtPaymentRemark.Text = ""; this.IsSaveed = true; } #endregion } catch (Exception ex) { if (ex.Message.ToLower().Contains("IX_IX_MacD_ID_tb_ErpMemberCardAmountChangeLOG".ToLower())) { MessageBoxCustom.Show("扣款出错,原因:储值卡数据标识重复!"); } else { MessageBoxCustom.Show(ex.Message); } } } /// /// 删除 /// /// /// void btnDelete_Click(object sender, EventArgs e) { try { if (this.dgvData.SelectedRows.Count == 0) { MessageBoxCustom.Show("请选中你要删除的数据!"); return; } if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.No) { return; } string StrMagess = LYFZ.BLL.BLL_ErpPayment.DeleteOrderPayment(this.dgvData.CurrentRow.Cells["ID"].Value.ToString().Trim()); MessageBoxCustom.Show(StrMagess); if (StrMagess.IndexOf("成功") != -1) { this.FrmPrePayment_Load(this, null); this.PublicFunctionRows(); this.IsSaveed = true; } } catch (Exception ex) { MessageBoxCustom.Show(ex.Message); } } /// /// 打印收据 /// /// /// void btnPrint_Click(object sender, EventArgs e) { try { if (dgvData.SelectedRows.Count == 0) { MessageBoxCustom.Show("请选择你要打印的数据!"); return; } #region 获取应付 LYFZ.BLL.BLL_ErpOrder Orderbll = new LYFZ.BLL.BLL_ErpOrder(); 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]; 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]; decimal Handle = 0; decimal PackagesMoney = 0; string Pay_ReceivableProject = ""; for (int i = 0; i < dgvData.SelectedRows.Count; i++) { if (!string.IsNullOrEmpty(dgvData.SelectedRows[i].Cells["Pay_ReceivableProject"].Value.ToString())) { Pay_ReceivableProject += dgvData.SelectedRows[i].Cells["Pay_ReceivableProject"].Value.ToString().Replace(",", "┳") + ","; } else { PackagesMoney = Convert.ToDecimal(Orderbll.GetView_Custom("tb_ErpOrder", StrWhere: "Ord_Number='" + StrOrdNumber + "' ", ShowColumnName: "Ord_SeriesPrice").Tables[0].Rows[0]["Ord_SeriesPrice"]); } } if (Pay_ReceivableProject != "") { Pay_ReceivableProject = Pay_ReceivableProject.TrimEnd(','); //筛选重复的数据 string[] sj = Pay_ReceivableProject.Split(','); List strReturn = new List(); foreach (string name in sj) { string name1 = name.Replace("┳", ",");///将特殊符号转换成“,” if (strReturn.Contains(name1) == false) { strReturn.Add(name1); } } string[] Sx = strReturn.ToArray(); if (Sx.Length > 0) { for (int t = 0; t < Sx.Length; t++) { DataRow[] row = dt_PlusPickItems.Select("Plu_Goods='" + Sx[t] + "'"); if (row.Length > 0) { Handle += Convert.ToDecimal(row[0]["Plu_Amount"]); } else { Handle = 0; } } } } #endregion Hashtable htData = new Hashtable(); htData["dgvData"] = this.dgvData; htData["strNumber"] = this.StrOrdNumber.Trim(); htData["Arrear"] = (Convert.ToDecimal(this.txtLateArrearsAmount.Text) + Convert.ToDecimal(this.txtEarlyArrearsAmount.Text)).ToString("0.00"); htData["CopeAmount"] = Handle + PackagesMoney; LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintFixedFormat(LYFZ.EnumPublic.PrintTypeEnum.订单收款, htData); } catch (Exception ex) { MessageBoxCustom.Show(ex.Message); } } LYFZ.BLL.MemberCardPaymentModel modelpm = null; /// /// 选择支付方式事件 /// /// /// void cmbtreevPaymentMethod_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e) { guid = Guid.NewGuid().ToString().Replace("-", "").ToUpper(); if (this.cmbtreevPaymentMethod.Text != "") { if (this.cmbtreevPaymentMethod.Tag.ToString() == "BEBACCAFEGECFBJFD") { if (!string.IsNullOrEmpty(this.txtPaymentAmount.Text)) { LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.MemberCardDeductAmountSuperSmallForm frm = new DoorCityProcess.SuperSmallForm.MemberCardDeductAmountSuperSmallForm(); frm.strOrdNumber = StrOrdNumber;//订单编号 frm.PaymentAmount = Convert.ToDecimal(txtPaymentAmount.Text);//支付金额 frm.StrReturnType = "clist"; frm.panelPerformance.Show(); frm.btnDelPerformance.Click += BtnDelPerformance_Click; frm.btnPerformance.Click += BtnPerformance_Click; frm.ShowDialog(); if (frm.IsSaveed) { modelpm = frm.model; this.btnSave_Click(this, null); } else { this.cmbtreevPaymentMethod.SetTextAndTag_ValueNull(); } } else { this.cmbtreevPaymentMethod.SetTextAndTag_ValueNull(); MessageBoxCustom.Show("请输入金额!"); } } else { modelpm = null; } } } /// /// 修改时间 /// /// /// void btnUpdateTime_Click(object sender, EventArgs e) { // 修改收款时间 if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.UpdatePaymentTime)) { dtpCreateDatetime.Enabled = true; } else { LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm frm = new DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm("OrdersReceivablesCompetence", CustomAttributes.OperatingAuthority.UpdatePaymentTime); if (frm.ShowDialog() == DialogResult.OK) { if (LYFZ.BLL.BLL_ErpUser.GetRights(frm.CurrentAuthorizeUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.UpdatePaymentTime, frm.User_BelongRoles)) { frm.SetAuthorizationResult(); dtpCreateDatetime.Enabled = true; } else { frm.SetAuthorizationResult(String.Format("授权失败,授权人没有'{0}'权限", LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm.ConvertEnumToDescription(CustomAttributes.OperatingAuthority.UpdatePaymentTime).ToString())); } } } } /// /// 不收款 /// /// /// void btnNotPayment_Click(object sender, EventArgs e) { this.Close(); } } }