using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using LYFZ.ComponentLibrary;
namespace LYFZ.Software.MainBusiness.FinancialManagement.OrdersReceivables
{
public partial class FrmLatePayment : LYFZ.Software.UI.FinancialManagement.OrdersReceivables.FrmLatePayment
{
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_ErpProduct Productbll = new BLL.BLL_ErpProduct();
LYFZ.BLL.BLL_ErpPlusPickItems ppibll = new BLL.BLL_ErpPlusPickItems();
LYFZ.BLL.BLL_ErpSystemCategory scbll = new BLL.BLL_ErpSystemCategory();
LYFZ.BLL.BLL_ErpProductOutStorage ProductOutStoragebll = new BLL.BLL_ErpProductOutStorage();
LYFZ.BLL.BLL_ErpTwoPinsProjectCommissionProportion TwoPinsProjectCommissionProportionBll = new BLL.BLL_ErpTwoPinsProjectCommissionProportion();
public string guid = "";
public FrmLatePayment()
{
this.btnUpdateTime2.Click += btnUpdateTime2_Click;
this.dgvData1.Click += dgvData1_Click;
this.btnPerformance.Click += BtnPerformance_Click;
this.btnDelPerformance.Click += BtnDelPerformance_Click;
this.dgv2.CellDoubleClick += Dgv2_CellDoubleClick;
}
private void Dgv2_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
{
if (e.RowIndex >= 0 && e.ColumnIndex >= 0)
{
if (e.ColumnIndex == 4)
{
DataGridViewRow gridViewRow = this.dgv2.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;
}
}
}
}
private void BtnDelPerformance_Click(object sender, EventArgs e)
{
this.ClearPerformance();
}
///
/// 清除业绩分配
///
void ClearPerformance()
{
this.listBoxPerformance.Items.Clear();
this.listBoxPerformance.Tag = null;
this.currentPersonCommissionRatio = null;
}
LYFZ.BLL.OrderPersonCommissionRatio currentPersonCommissionRatio = null;
private void BtnPerformance_Click(object sender, EventArgs e)
{
if (this.erpOrderModel != null)
{
if (String.IsNullOrWhiteSpace(this.txtPay_ReceivableProject.Text.Trim()))
{
MessageBoxCustom.Show("请选择收款项目");
return;
}
LYFZ.Software.MainBusiness.DoorCityProcess.frmCustomPerformance customPerformance = new MainBusiness.DoorCityProcess.frmCustomPerformance();
try
{
customPerformance.CollectionAmount = Convert.ToDecimal(this.txtPay_AmountOf.Text.Trim());
if (this.listBoxPerformance.Items.Count > 0 && this.currentPersonCommissionRatio != null)
{
customPerformance.PersonCommissionRatio = this.currentPersonCommissionRatio;
}
else
{
customPerformance.OrderPersonInitialization(this.dgvData1.CurrentRow.Cells["接单人编号"].Value.ToString());
}
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;
///
/// 应收款
///
public decimal StrCope;
///
/// 已收款
///
public decimal StrPaid;
///
/// 欠款
///
public decimal StrArrears;
///
/// 主联系人ID
///
public string StrClientNumber;
///
/// 版本类型
///
public string StrOrdType;
///
/// 加挑编号
///
private string StrPusNumber = "";
///
/// 数码编号
///
private string StrViceNumber = "";
LYFZ.Model.Model_ErpOrder erpOrderModel = null;
///
/// 加载
///
///
///
protected override void FrmLatePayment_Shown(object sender, EventArgs e)
{
this.btnSave.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.OrdersLatePayment);
this.btnSaveCP.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.OrdersLatePickGoods);
this.btndeleteSK.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);
this.btndelectCP.Enabled = this.btndeleteSK.Enabled;
#region 获取客户,加挑,收款数据
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.txtOrd_Number.Text = dt.Rows[0]["Ord_SinceOrderNumber"].ToString();
this.txtOrd_CustomerName1.Text = dt.Rows[0]["客户姓名"].ToString();
this.StrClientNumber = dt.Rows[0]["M_Cus_CustomerNumber"].ToString();
//应收款
this.txtCope.Text = this.StrCope.ToString();
//已付款
this.txtPaid.Text = this.StrPaid.ToString();
//欠款
this.txtArrears.Text = this.StrArrears.ToString();
// 加挑详情
this.txtRecordedSinglePerson.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
this.txtPlusPickTime.Text = SDateTime.Now.ToString("yyyy-MM-dd");
// 收款详情
this.txtPay_ThePayee.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
this.txtPay_CreateDatetime.Text = SDateTime.Now.ToString("yyyy-MM-dd");
this.txtPay_Category.Text = "后期收款";
}
}
else
{
erpOrderModel = null;
MessageBoxCustom.Show("订单数据加载失败,或订单已被删除");
}
}
else
{
MessageBoxCustom.Show("缺少收款订单号参数");
return;
}
#endregion
// 获取支付方式 获取二销类别
LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_PaymentMethod(this.cmbPay_PaymentMethod, IsShowAll: true);
this.BindPay_TwoPinsCategory();
// 获取加挑物品
this.PublicFunctionPlusPickItems();
// 获取全部收款
this.PublicFunctionPayment();
this.panelEx2.Size = new Size(1070, this.Size.Height - 80);
if (StrOrdType == "儿童订单")
{
this.btnSaveCP.Location = new Point(241, 214);
this.panelEx11.Visible = true;
this.panelStageName.Visible = true;
this.panel1.Height = 118-20;
this.listBoxPerformance.Height = 89-20;
DataTable tbl = orbll.GetView_Custom("tb_ErpOrdersPhotography", StrWhere: "Ordpg_Number = '" + this.StrOrdNumber + "'", ShowColumnName: "Ordpg_ViceNumber,Ordpg_Sights").Tables[0];
TreeNode root = null;
for (int i = 0; i < tbl.Rows.Count; i++)
{
root = new TreeNode();
root.Text = tbl.Rows[i]["Ordpg_Sights"].ToString().Trim();
root.Tag = tbl.Rows[i]["Ordpg_ViceNumber"].ToString().Trim();
root.Name = tbl.Rows[i]["Ordpg_ViceNumber"].ToString().Trim();
this.cmbtreevStage.TreeView.Nodes.Add(root);
}
if (tbl.Rows.Count == 1)
{
this.cmbtreevStage.TagFindText(tbl.Rows[0]["Ordpg_ViceNumber"].ToString().Trim());
}
}
else
{
this.btnSaveCP.Location = new Point(241, 190);
this.panelEx11.Visible = false;
this.panelStageName.Visible = false;
this.panel1.Height = 118 + 30-10;
this.listBoxPerformance.Height = 89 + 17-10;
}
///控制财务管理扫码支付的版本权
List hideControl = new List();
hideControl.Add(this.cmbPay_PaymentMethod);
LYFZ.Software.MainBusiness.VersionControl.StaticVersion.BindVersionShowHideControl(VersionControl.VersionFunctionEnum.财务管理扫码支付, hideControl, null, null);
}
///
/// 获取加挑物品
///
void PublicFunctionPlusPickItems()
{
this.dgvData1.Rows.Clear();
this.dgvData1.Columns.Clear();
string StrWhere = "Plu_OrdNumber = '" + this.StrOrdNumber + "'";
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";
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 加挑商品";
StrColumnsName += ", (select count(*) from tb_ErpPayment where Pay_PlusPickNumber = Plu_Number) as 付款笔数";
DataTable dt = orbll.GetView_Custom(StrTableName, StrWhere: StrWhere, ShowColumnName: StrColumnsName).Tables[0];
string strHideField = "";
if (StrOrdType != "儿童订单")
{ strHideField = ",拍摄名称"; }
strHideField += ",付款笔数";
if (dt.Rows.Count > 0)
{ this.dgvData1.DataSource(dt, strHideField: "ID,加挑编号,数码编号,接单人编号,二销类别编号" + strHideField); }
else
{ this.dgvData1.DataColumns(dt.Columns, strHideField: "ID,加挑编号,数码编号,接单人编号,二销类别编号" + strHideField); }
this.dgvData1.Columns["拍摄名称"].Width = 90;
this.dgvData1.Columns["加挑金额"].Width = 70;
this.dgvData1.Columns["欠款"].Width = 60;
this.dgvData1.Columns["加挑日期"].Width = 90;
this.dgvData1.Columns["录单人"].Width = 50;
this.dgvData1.Columns["收款类别"].Width = 80;
this.dgvData1.Columns["加挑商品"].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
}
///
/// 获取全部收款
///
void PublicFunctionPayment()
{
this.dgv2.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.dgv2.Rows.Add(dgvr);
}
this.dgv2.ClearSelection();
}
}
///
/// 添加行
///
///
///
void dgvData1_RowsAdded(object sender, DataGridViewRowsAddedEventArgs e)
{
if (this.dgvData1.Rows[e.RowIndex].Cells["欠款"].Value.ToString().Trim() != "")
{ this.dgvData1.Rows[e.RowIndex].Cells["欠款"].Value = LYFZ.BLL.OtherCommonModel.RemoveLastExcessZero(this.dgvData1.Rows[e.RowIndex].Cells["欠款"].Value); }
if (this.dgvData1.Rows[e.RowIndex].Cells["加挑金额"].Value.ToString().Trim() != "")
{ this.dgvData1.Rows[e.RowIndex].Cells["加挑金额"].Value = LYFZ.BLL.OtherCommonModel.RemoveLastExcessZero(this.dgvData1.Rows[e.RowIndex].Cells["加挑金额"].Value); }
if (Convert.ToDecimal(this.dgvData1.Rows[e.RowIndex].Cells["欠款"].Value) > 0||
(Convert.ToDecimal(this.dgvData1.CurrentRow.Cells["欠款"].Value) == 0 && Convert.ToDecimal(this.dgvData1.CurrentRow.Cells["付款笔数"].Value) == 0))
{ this.dgvData1.Rows[e.RowIndex].DefaultCellStyle.ForeColor = Color.Red; }
}
///
/// 增加支付方式
///
///
///
protected override 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_PaymentMethod(this.cmbPay_PaymentMethod, IsShowAll: true);
}
}
///
/// 增加二销类别
///
///
///
protected override void btnSet2_Click(object sender, EventArgs e)
{
LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
frm.TypeName = "BEBACDAJDFDDEACGJ";
frm.Version = "Version";
if (frm.ShowDialog() == DialogResult.OK)
{
this.BindPay_TwoPinsCategory();
}
}
///
/// 选择开单人
///
///
///
protected override void btnSelect2_Click(object sender, EventArgs e)
{
LYFZ.Software.MainBusiness.FinancialManagement.OrdersReceivables.FrmSelectPayOpenSingle frm = new FrmSelectPayOpenSingle();
frm.ShowDialog();
if (!string.IsNullOrEmpty(frm.Str1))
{
this.txtPay_OpenSingle.Text = frm.Str1;
this.txtPay_OpenSingle.Tag = frm.Str3;
}
}
///
/// 输入框设置
///
///
///
protected override void txtPay_AmountOf_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 == '.')
{
if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('.') != -1)
{ e.Handled = true; }
}
else if (e.KeyChar == '-')
{
if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('-') != -1)
{ e.Handled = true; }
}
else
{ e.Handled = true; }
}
}
///
/// 输入框设置
///
///
///
protected override void txtPlusPickAmount_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 == '.')
{
if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('.') != -1)
{ e.Handled = true; }
}
else if (e.KeyChar == '-')
{
if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('-') != -1)
{ e.Handled = true; }
}
else
{ e.Handled = true; }
}
}
///
/// 时间控件
///
///
///
protected override void txtPay_CreateDatetime_Enter(object sender, EventArgs e)
{
if (this.txtPay_CreateDatetime.Text == "")
{
this.txtPay_CreateDatetime.Text = SDateTime.Now.ToString("yyyy-MM-dd");
}
}
///
/// 时间控件
///
///
///
protected override void txtPay_CreateDatetime_Leave(object sender, EventArgs e)
{
if (this.txtPay_CreateDatetime.Text.Trim() != "")
{
if (LYFZ.Command.Command_Validate.IsDateTime(this.txtPay_CreateDatetime.Text.Trim()) == false)
{
this.txtPay_CreateDatetime.Text = "";
MessageBoxCustom.Show("收款时间格式输入错误");
}
}
}
///
/// 文本框赋值
///
///
///
protected override void txtPlusPickAmount_TextChanged(object sender, EventArgs e)
{
//txtPay_AmountOf.Text = this.txtPlusPickAmount.Text;
}
///
/// 文本框赋值
///
///
///
protected override void txtPlusPickItems_TextChanged(object sender, EventArgs e)
{
this.txtLessInventory.Text = this.txtPlusPickItems.Text;
}
///
/// 选择产品
///
///
///
protected override void btnSelect_Click(object sender, EventArgs e)
{
LYFZ.Software.MainBusiness.DoorCityProcess.SetSmallForm.ToolboxListViewSamllForm frm = new DoorCityProcess.SetSmallForm.ToolboxListViewSamllForm();
frm.LoadType = "套系包含商品";
frm.ShowDialog();
if (frm.IsSaveed)
{
List mlist = frm.mlist;
string CP = "";
for (int i = 0; i < mlist.Count; i++)
{ CP += mlist[i].Prod_Name.Trim() + ","; }
this.txtLessInventory.Text = CP.TrimEnd(',');
this.txtPlusPickItems.Text = CP.TrimEnd(',');
}
//LYFZ.Software.MainBusiness.DoorCityProcess.SetSmallForm.ToolboxSamllForm frm = new DoorCityProcess.SetSmallForm.ToolboxSamllForm();
//frm.LoadType = "套系包含商品";
//frm.ShowDialog();
//if (frm.IsSaveed)
//{
// List mlist = frm.mlist;
// string CP = "";
// for (int i = 0; i < mlist.Count; i++)
// { CP += mlist[i].Prod_Name.Trim() + ","; }
// this.txtLessInventory.Text = CP.TrimEnd(',');
// this.txtPlusPickItems.Text = CP.TrimEnd(',');
//}
}
///
/// 保存加挑详情
///
///
///
protected override void btnSaveCP_Click(object sender, EventArgs e)
{
try
{
#region 判断不能为空
if (string.IsNullOrEmpty(this.txtPlusPickAmount.Text.Trim()))
{
MessageBoxCustom.Show("加挑金额不能为空!");
return;
}
if (string.IsNullOrEmpty(this.txtRecordedSinglePerson.Text.Trim()))
{
MessageBoxCustom.Show("录单人不能为空!");
return;
}
if (string.IsNullOrEmpty(this.txtPlusPickTime.Text.Trim()))
{
MessageBoxCustom.Show("加挑时间不能为空!");
return;
}
if (string.IsNullOrEmpty(this.txtPlusPickItems.Text.Trim()))
{
MessageBoxCustom.Show("加挑物品不能为空!");
return;
}
if (string.IsNullOrEmpty(this.txtPay_OpenSingle.Text.Trim()))
{
MessageBoxCustom.Show("销售人员不能为空!");
return;
}
if (string.IsNullOrEmpty(this.cmbPay_TwoPinsCategory.Text.Trim()))
{
MessageBoxCustom.Show("二销类别不能为空!");
return;
}
if (this.panelEx11.Visible)
{
if (string.IsNullOrEmpty(this.cmbtreevStage.Text.Trim()))
{
MessageBoxCustom.Show("拍摄名称不能为空!");
return;
}
}
#endregion
#region 增加
LYFZ.Model.Model_ErpPlusPickItems model = new Model.Model_ErpPlusPickItems();
model.Plu_Number = LYFZ.BLL.BLL_ErpCustomer.GetLateStagePlusPickNumber();// "PPI" + LYFZ.BLL.BLL_ErpCustomer.GetClientNumber();
model.Plu_OrdNumber = this.StrOrdNumber.Trim();
if (this.panelEx11.Visible)
{ model.Plu_OrdViceNumber = this.cmbtreevStage.Tag.ToString().Trim(); }
else
{ model.Plu_OrdViceNumber = ""; }
model.Plu_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
model.Plu_Amount = Convert.ToDecimal(this.txtPlusPickAmount.Text);
model.Plu_CreateTime = Convert.ToDateTime(this.txtPlusPickTime.Text);
model.Plu_RecordedPerson = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
model.Plu_Goods = this.txtPlusPickItems.Text;
#region 获取成本价
string Plu_GoodsCosts = "";
for (int t = 0; t < this.txtLessInventory.Text.Split(',').Length; t++)
{
string Costs = this.txtLessInventory.Text.Split(',')[t];
DataTable Productdt = Productbll.GetList("Prod_Name='" + Costs + "'").Tables[0];
if (Productdt.Rows.Count > 0)
{ Plu_GoodsCosts += Productdt.Rows[0]["Prod_CostPrice"].ToString() + ","; }
else
{ Plu_GoodsCosts += "0" + ","; }
}
model.Plu_SourceType = "0";
model.Plu_GoodsCosts = Plu_GoodsCosts.TrimEnd(',');
#endregion
model.Plu_OpenSingle = this.txtPay_OpenSingle.Tag.ToString().Trim();
model.Plu_TwoPinsCategory = this.cmbPay_TwoPinsCategory.SelectedValue.ToString();
if (ppibll.Add(model))
{
#region 减库存
if (!string.IsNullOrEmpty(this.txtLessInventory.Text))
{
string Cp = "";
string[] Sr = this.txtLessInventory.Text.Split(',');
for (int i = 0; i < Sr.Length; i++)
{
Cp = Sr[i];
DataTable Productdt = Productbll.GetList("Prod_Name='" + Cp + "' and Prod_Availability=1").Tables[0];
if (Productdt.Rows.Count > 0)
{
#region 新增入库记录表
LYFZ.Model.Model_ErpProductOutStorage ProductOutStorageModel = new Model.Model_ErpProductOutStorage();
ProductOutStorageModel.Pos_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetCompanyInfoID();
ProductOutStorageModel.Pos_ProductCategory = Productdt.Rows[0]["Prod_Class"].ToString();
ProductOutStorageModel.Pos_ProductNumber = Productdt.Rows[0]["Prod_Number"].ToString();
ProductOutStorageModel.Pos_OutQuantity = 1;
ProductOutStorageModel.Pos_OutTime = Convert.ToDateTime(txtPlusPickTime.Text);
ProductOutStorageModel.Pos_Remark = "订单后期,二销自动减库存";
ProductOutStorageModel.Pos_OutName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
ProductOutStoragebll.Add(ProductOutStorageModel);
#endregion
#region 更新商品库存数量
string Prod_Number = ProductOutStorageModel.Pos_ProductNumber;
int Prod_Quantity = ProductOutStorageModel.Pos_OutQuantity;
DataTable dt = Productbll.GetList("Prod_Number='" + Prod_Number + "'").Tables[0];
int Quantity = Convert.ToInt32(dt.Rows[0]["Prod_Quantity"]) - Prod_Quantity;
Productbll.UpdateProduct("Prod_Quantity=" + Quantity + "", Prod_Number);
#endregion
}
}
}
#endregion
MessageBoxCustom.Show("保存成功!");
#region 获取金额
//应收款
DataTable DaPlus = ppibll.GetSum(" Plu_OrdNumber='" + StrOrdNumber + "'").Tables[0];
DataTable DaOr = orbll.GetView_Custom("tb_ErpOrder", StrWhere: "Ord_Number = '" + this.StrOrdNumber + "'", ShowColumnName: "Ord_SeriesPrice").Tables[0];
decimal sum;
if (string.IsNullOrEmpty(DaPlus.Rows[0]["Plu_Amount"].ToString()))
{ sum = 0.00m; }
else
{ sum = Convert.ToDecimal(DaPlus.Rows[0]["Plu_Amount"]); }
this.txtCope.Text = Convert.ToDecimal(Convert.ToDecimal(DaOr.Rows[0]["Ord_SeriesPrice"]) + Convert.ToDecimal(sum)).ToString();
//已付款
decimal Paid;
DataTable DaPayment = ptbll.GetSum(" Pay_OrdNumber='" + StrOrdNumber + "'").Tables[0];
if (string.IsNullOrEmpty(DaPayment.Rows[0]["Pay_AmountOf"].ToString()))
{ Paid = 0.00m; }
else
{ Paid = Convert.ToDecimal(DaPayment.Rows[0]["Pay_AmountOf"]); }
this.txtPaid.Text = Paid.ToString();
//欠款
this.txtArrears.Text = Convert.ToDecimal(Convert.ToDecimal(DaOr.Rows[0]["Ord_SeriesPrice"]) + Convert.ToDecimal(sum) - Convert.ToDecimal(Paid)).ToString();
#endregion
this.txtPlusPickAmount.Text = "";
this.txtPlusPickTime.Text = SDateTime.Now.ToString("yyyy-MM-dd");
this.txtLessInventory.Text = "";
this.txtPay_OpenSingle.Text = "";
this.txtPay_OpenSingle.Tag = null;
this.txtPlusPickItems.Text = "";
this.StrPusNumber = "";
this.StrViceNumber = "";
this.cmbPay_TwoPinsCategory.SelectedIndex = 0;
if (this.cmbtreevStage.Nodes.Count > 0)
{ this.cmbtreevStage.SetTextAndTag_ValueNull(); }
this.PublicFunctionPlusPickItems();
this.IsSaveed = true;
}
else
{ MessageBoxCustom.Show("保存失败"); }
#endregion
}
catch (Exception ex)
{ MessageBoxCustom.Show(ex.Message); }
}
///
/// 删除加挑详情
///
///
///
protected override void btndelectCP_Click(object sender, EventArgs e)
{
try
{
if (this.dgvData1.SelectedRows.Count == 0)
{
MessageBoxCustom.Show("请选中你要删除的数据!");
return;
}
if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
int id = Convert.ToInt32(this.dgvData1.CurrentRow.Cells["ID"].Value);
LYFZ.Model.Model_ErpPlusPickItems model = ppibll.GetModel(id);
if (model.ID > 0)
{
if (!string.IsNullOrEmpty(model.Plu_Number))
{
DataTable tbl = orbll.GetView_Custom("tb_ErpPayment", StrWhere: "Pay_PlusPickNumber= '" + model.Plu_Number + "'", ShowColumnName: "Count(ID) as CountID").Tables[0];
if (tbl.Rows.Count > 0)
{
if (Convert.ToInt32(tbl.Rows[0]["CountID"]) > 0)
{ MessageBoxCustom.Show("详情已经收款,不能删除!"); return; }
}
}
else
{
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];
if (tbl.Rows.Count > 0)
{
if (Convert.ToInt32(tbl.Rows[0]["CountID"]) > 0)
{ MessageBoxCustom.Show("详情已经收款,不能删除!"); return; }
}
}
if (ppibll.Delete(id) == true)
{
#region 删除出库
string Plu_CreateTime = this.dgvData1.CurrentRow.Cells["加挑日期"].Value.ToString();
string Plu_Goods = this.dgvData1.CurrentRow.Cells["加挑商品"].Value.ToString();
if (!string.IsNullOrEmpty(Plu_Goods))
{
string Cp = "";
string[] Sr = Plu_Goods.Split(',');
for (int i = 0; i < Sr.Length; i++)
{
Cp = Sr[i];
//获取商品编号
DataTable dt = Productbll.GetList("Prod_Name='" + Cp + "' and Prod_Availability=1").Tables[0];
if (dt.Rows.Count > 0)
{
#region 删除出库记录
ProductOutStoragebll.DeleteProductOutStorage(" and Pos_OutTime='" + Plu_CreateTime + "' and Pos_ProductNumber='" + dt.Rows[0]["Prod_Number"].ToString() + "'");
#region 更新商品库存数量
int Quantity = Convert.ToInt32(Convert.ToInt32(dt.Rows[0]["Prod_Quantity"]) + 1);
Productbll.UpdateProduct("Prod_Quantity=" + Quantity + "", dt.Rows[0]["Prod_Number"].ToString());
#endregion
#endregion
}
}
}
#endregion
MessageBoxCustom.Show("删除成功!");
#region 获取金额
//应收款
DataTable DaPlus = ppibll.GetSum(" Plu_OrdNumber='" + StrOrdNumber + "'").Tables[0];
DataTable DaOr = orbll.GetView_Custom("tb_ErpOrder", StrWhere: "Ord_Number = '" + this.StrOrdNumber + "'", ShowColumnName: "Ord_SeriesPrice").Tables[0];
decimal sum;
if (string.IsNullOrEmpty(DaPlus.Rows[0]["Plu_Amount"].ToString()))
{ sum = 0.00m; }
else
{ sum = Convert.ToDecimal(DaPlus.Rows[0]["Plu_Amount"]); }
this.txtCope.Text = (Convert.ToDecimal(DaOr.Rows[0]["Ord_SeriesPrice"]) + Convert.ToDecimal(sum)).ToString();
//已付款
decimal Paid;
DataTable DaPayment = ptbll.GetSum(" Pay_OrdNumber='" + StrOrdNumber + "'").Tables[0];
if (string.IsNullOrEmpty(DaPayment.Rows[0]["Pay_AmountOf"].ToString()))
{ Paid = 0.00m; }
else
{ Paid = Convert.ToDecimal(DaPayment.Rows[0]["Pay_AmountOf"]); }
this.txtPaid.Text = Paid.ToString();
//欠款
this.txtArrears.Text = (Convert.ToDecimal(DaOr.Rows[0]["Ord_SeriesPrice"]) + Convert.ToDecimal(sum) - Convert.ToDecimal(Paid)).ToString();
#endregion
this.PublicFunctionPlusPickItems();
this.IsSaveed = true;
}
else
{ MessageBoxCustom.Show("删除失败!"); }
}
}
}
catch (Exception ex)
{ MessageBoxCustom.Show(ex.Message); }
}
///
/// 获取收款项目
///
///
///
void dgvData1_Click(object sender, EventArgs e)
{
if (this.dgvData1.Rows.Count > 0)
{
this.ClearPerformance();
if (Convert.ToDecimal(this.dgvData1.CurrentRow.Cells["欠款"].Value) != 0)
{
if (this.panelStageName.Visible)
{ this.txtStageName.Text = this.dgvData1.CurrentRow.Cells["拍摄名称"].Value.ToString().Trim(); }
this.txtPay_ReceivableProject.Text = this.dgvData1.CurrentRow.Cells["加挑商品"].Value.ToString();
this.txtPay_AmountOf.Text = this.dgvData1.CurrentRow.Cells["欠款"].Value.ToString();
this.txtSalesperson.Text = this.dgvData1.CurrentRow.Cells["接单人"].Value.ToString();
this.txtSecondPin.Text = this.dgvData1.CurrentRow.Cells["收款类别"].Value.ToString();
this.StrPusNumber = this.dgvData1.CurrentRow.Cells["加挑编号"].Value.ToString();
this.StrViceNumber = this.dgvData1.CurrentRow.Cells["数码编号"].Value.ToString();
}
else if (Convert.ToDecimal(this.dgvData1.CurrentRow.Cells["欠款"].Value) == 0 && Convert.ToDecimal(this.dgvData1.CurrentRow.Cells["付款笔数"].Value)==0)
{
if (this.panelStageName.Visible)
{ this.txtStageName.Text = this.dgvData1.CurrentRow.Cells["拍摄名称"].Value.ToString().Trim(); }
this.txtPay_ReceivableProject.Text = this.dgvData1.CurrentRow.Cells["加挑商品"].Value.ToString();
this.txtPay_AmountOf.Text = this.dgvData1.CurrentRow.Cells["欠款"].Value.ToString();
this.txtSalesperson.Text = this.dgvData1.CurrentRow.Cells["接单人"].Value.ToString();
this.txtSecondPin.Text = this.dgvData1.CurrentRow.Cells["收款类别"].Value.ToString();
this.StrPusNumber = this.dgvData1.CurrentRow.Cells["加挑编号"].Value.ToString();
this.StrViceNumber = this.dgvData1.CurrentRow.Cells["数码编号"].Value.ToString();
}
else
{ this.ClearPaymentDetails(); }
}
}
///
/// 清空付款详情
///
void ClearPaymentDetails()
{
this.txtStageName.Text = "";
this.txtPay_ReceivableProject.Text = "";
this.txtPay_AmountOf.Text = "";
this.txtSalesperson.Text = "";
this.txtSecondPin.Text = "";
this.StrPusNumber = "";
this.StrViceNumber = "";
}
///
/// 保存收款详情
///
///
///
protected override void btnSave_Click(object sender, EventArgs e)
{
try
{
#region 判断不能为空
if (StrOrdType == "儿童订单")
{
if (string.IsNullOrEmpty(this.txtStageName.Text.Trim()))
{ MessageBoxCustom.Show("拍摄阶段不能为空!"); return; }
}
if (string.IsNullOrEmpty(this.txtPay_ReceivableProject.Text))
{ MessageBoxCustom.Show("收款项目不能为空!请点击你要收款的加挑物品!"); return; }
if (string.IsNullOrEmpty(this.txtPay_AmountOf.Text.Trim()))
{ MessageBoxCustom.Show("收款金额不能为空!"); return; }
if (string.IsNullOrEmpty(this.cmbPay_PaymentMethod.Text.Trim()))
{ MessageBoxCustom.Show("支付方式不能为空!"); return; }
if (string.IsNullOrEmpty(this.txtPay_ThePayee.Text.Trim()))
{ MessageBoxCustom.Show("收款人不能为空!"); return; }
if (string.IsNullOrEmpty(this.txtPay_CreateDatetime.DateValue.Trim()))
{ MessageBoxCustom.Show("收款时间不能为空!"); return; }
if (string.IsNullOrEmpty(this.txtSalesperson.Text.Trim()))
{ MessageBoxCustom.Show("销售人员不能为空!"); return; }
if (string.IsNullOrEmpty(this.txtSecondPin.Text.Trim()))
{ MessageBoxCustom.Show("二销类别不能为空!"); return; }
if (Convert.ToDecimal(this.dgvData1.SelectedRows[0].Cells["欠款"].Value) > 0)
{
if (Convert.ToDecimal(this.dgvData1.SelectedRows[0].Cells["欠款"].Value) < Convert.ToDecimal(this.txtPay_AmountOf.Text))
{
MessageBoxCustom.Show("本次收款不能大于欠款金额:" + this.dgvData1.SelectedRows[0].Cells["欠款"].Value.ToString().Trim() + "!");
cmbPay_PaymentMethod.SetTextAndTag_ValueNull();
return;
}
}
else if (Convert.ToDecimal(this.dgvData1.SelectedRows[0].Cells["欠款"].Value) < 0)
{
if (Convert.ToDecimal(this.txtPay_AmountOf.Text) >= 0)
{
MessageBoxCustom.Show("退款金额不能大于0!");
cmbPay_PaymentMethod.SetTextAndTag_ValueNull();
return;
}
else if (Convert.ToDecimal(this.dgvData1.SelectedRows[0].Cells["欠款"].Value) > Convert.ToDecimal(this.txtPay_AmountOf.Text))
{
MessageBoxCustom.Show("本次收款不能小于于欠款金额:" + this.dgvData1.SelectedRows[0].Cells["欠款"].Value.ToString().Trim() + "!");
cmbPay_PaymentMethod.SetTextAndTag_ValueNull();
return;
}
}
else if (Convert.ToDecimal(this.dgvData1.SelectedRows[0].Cells["欠款"].Value) == 0 && Convert.ToDecimal(this.dgvData1.CurrentRow.Cells["付款笔数"].Value) > 0)
{
MessageBoxCustom.Show("欠款金额为0不能再收款!");
cmbPay_PaymentMethod.SetTextAndTag_ValueNull();
return;
}
#endregion
#region 2017-03-24 杨云奕 添加 判断是否接入微信支付宝的接口
FinancialPayApiControl PayApi = new FinancialPayApiControl();
//int intCode = PayApi.PayApiControl(StrOrdNumber, this.cmbPay_PaymentMethod.SelectedNode.Text, Convert.ToDecimal(this.txtPay_AmountOf.Text));
//2017-04-03 刘工修改
int intCode = PayApi.PayApiControl(StrOrdNumber, this.cmbPay_PaymentMethod.Text.Trim(), Convert.ToDecimal(this.txtPay_AmountOf.Text));
string serialnumber = "";
if (intCode == 1)
{
serialnumber = PayApi.SerialNumber;
}
else if (intCode == -1)
{
//MessageBoxCustom.Show("取消微信刷卡支付,保存取消");
return;
}
#endregion
#region 保存
List clist = new List();
LYFZ.Model.Model_ErpPayment model = new Model.Model_ErpPayment();
if (StrOrdType == "儿童订单")
{ model.Pay_ShootingName = this.txtStageName.Text.ToString(); }
model.Pay_OrdNumber = this.StrOrdNumber.Trim();
model.Pay_ViceNumber = this.StrViceNumber.Trim();
model.Pay_PlusPickNumber = this.StrPusNumber;
model.pay_SerialNumber = serialnumber;
model.Pay_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
model.Pay_AmountOf = Convert.ToDecimal(this.txtPay_AmountOf.Text);
model.Pay_OpenSingle = this.dgvData1.CurrentRow.Cells["接单人编号"].Value.ToString();
model.Pay_ThePayee = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
model.Pay_PaymentMethod = this.cmbPay_PaymentMethod.Tag.ToString();
model.Pay_OrdersLocation = "";
model.Pay_ReceivableProject = this.txtPay_ReceivableProject.Text;
model.Pay_Remark = this.txtPay_Remark.Text;
model.Pay_CreateDatetime = Convert.ToDateTime(this.txtPay_CreateDatetime.DateTimeValue.Trim());
model.Pay_Category = this.txtPay_Category.Text;
model.Pay_TwoPinsCategory = this.dgvData1.CurrentRow.Cells["二销类别编号"].Value.ToString(); ;
model.Pay_Type = 0;
model.Pay_CommissionRatio = "";
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.txtPay_AmountOf.Text);
modelpm.RechargeDiscount = 0;
modelpm.DiscountAmount = 0;
modelpm.StrOrdNumber = this.StrOrdNumber;
modelpm.StrPaymentMethod = "其他";
modelpm.StrReturnType = "clist";
}
//if (modelpm.RechargeDiscount>0)
//{
// model.Pay_AmountOf = model.Pay_AmountOf * modelpm.RechargeDiscount;
//}
//if (modelpm.PaymentAmount != model.Pay_AmountOf)
//{
// MessageBoxCustom.Show("储值卡扣款金额:“" + modelpm.PaymentAmount + "”和订单收款金额:“" + model.Pay_AmountOf + "”不一致,请重新收款!");
// cmbPay_PaymentMethod.Text = "";
// return;
//}
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.LaterPeriodPayment(StrClientNumber, modelpm, StrSource: "订单后期", strGuid : guid));
if (clist.Count > 0)
{
if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) <= 0)
{ MessageBoxCustom.Show("保存失败!"); return; }
this.IsSaveed = true;
this.cmbPay_PaymentMethod.SetTextAndTag_ValueNull();
MessageBoxCustom.Show("保存成功!");
this.ClearPerformance();
DataTable DaOr = orbll.GetView_Custom("tb_ErpOrder", StrWhere: "Ord_Number = '" + this.StrOrdNumber + "'", ShowColumnName: "Ord_SeriesPrice,Ord_SinceOrderNumber").Tables[0];
///付款后短信提醒
LYFZ.BLL.BLL_ErpSMSRecord.SendMsgByPayment(
StrOrdNumber,
DaOr.Rows[0]["Ord_SinceOrderNumber"].ToString(),
Convert.ToDecimal(this.txtPay_AmountOf.Text).ToString("0.00"),
this.cmbPay_PaymentMethod.Text,
SDateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
);
this.ClearPaymentDetails();
#region 获取金额
//应收款
DataTable DaPlus = ppibll.GetSum(" Plu_OrdNumber='" + this.StrOrdNumber + "'").Tables[0];
decimal sum = 0;
if (!string.IsNullOrEmpty(DaPlus.Rows[0]["Plu_Amount"].ToString()))
{ sum = Convert.ToDecimal(DaPlus.Rows[0]["Plu_Amount"]); }
this.txtCope.Text = Convert.ToDecimal(Convert.ToDecimal(DaOr.Rows[0]["Ord_SeriesPrice"]) + Convert.ToDecimal(sum)).ToString();
//已付款
decimal Paid = 0;
DataTable DaPayment = ptbll.GetSum(" Pay_OrdNumber='" + this.StrOrdNumber + "'").Tables[0];
if (!string.IsNullOrEmpty(DaPayment.Rows[0]["Pay_AmountOf"].ToString()))
{ Paid = Convert.ToDecimal(DaPayment.Rows[0]["Pay_AmountOf"]); }
this.txtPaid.Text = Paid.ToString();
//欠款
this.txtArrears.Text = Convert.ToDecimal(Convert.ToDecimal(DaOr.Rows[0]["Ord_SeriesPrice"]) + Convert.ToDecimal(sum) - Convert.ToDecimal(Paid)).ToString();
#endregion
this.PublicFunctionPlusPickItems();
this.PublicFunctionPayment();
this.txtPay_CreateDatetime.Text = SDateTime.Now.ToString();
this.txtPay_CreateDatetime.Enabled = false;
}
#endregion
}
catch (Exception ex)
{ MessageBoxCustom.Show(ex.Message); }
}
///
/// 删除收款详情
///
///
///
protected override void btndeleteSK_Click(object sender, EventArgs e)
{
try
{
if (this.dgv2.SelectedRows.Count == 0)
{ MessageBoxCustom.Show("请选中你要删除的数据!"); return; }
List clist = new List();
int id = Convert.ToInt32(this.dgv2.CurrentRow.Cells["ID"].Value);
DataTable dt = ptbll.GetList("Id=" + id + "").Tables[0];
if (dt.Rows.Count > 0)
{
if (dt.Rows[0]["Pay_FinancialAudit"].ToString().Trim() == "已审核")
{ MessageBoxCustom.Show("收款已审核,不能删除!"); return; }
clist.Add(ptbll.GetDeleteCommandInfo("ID", "=", id));
// 写入操作日志
string logsContent = "删除订单号为:" + this.txtOrd_Number.Text.Trim() + " 金额为:" + this.dgv2.CurrentRow.Cells["Pay_AmountOf"].Value.ToString();
LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog(LYFZ.EnumPublic.SystemLogsType.删除收款记录, logsContent, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name);
// 删除二销(后期)项目提成比例设置
if (!string.IsNullOrEmpty(dt.Rows[0]["Pay_CustomNumber"].ToString().Trim()))
{ clist.Add(TwoPinsProjectCommissionProportionBll.GetDeleteCommandInfo("Tpc_CustomNumber", "=", dt.Rows[0]["Pay_CustomNumber"].ToString().Trim())); }
decimal RefundAmount = Convert.ToDecimal(this.dgv2.CurrentRow.Cells["Pay_AmountOf"].Value) - Convert.ToDecimal(this.dgv2.CurrentRow.Cells["DiscountAmount"].Value);
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())
{ clist.AddRange(LYFZ.BLL.OrderPayment_Member.BeforePeriodPayment_DeleteRefund(this.StrOrdNumber.Trim(), dt.Rows[0]["Pay_McNumber"].ToString().Trim(), this.StrClientNumber, RefundAmount)); }
else
{ 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())); }
if (clist.Count > 0)
{
if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.No)
{ return; }
if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
{
MessageBoxCustom.Show("删除成功!");
#region 获取金额
//应收款
DataTable DaPlus = ppibll.GetSum(" Plu_OrdNumber='" + this.StrOrdNumber + "'").Tables[0];
DataTable DaOr = orbll.GetView_Custom("tb_ErpOrder", StrWhere: "Ord_Number = '" + this.StrOrdNumber + "'", ShowColumnName: "Ord_SeriesPrice").Tables[0];
decimal sum = 0;
if (!string.IsNullOrEmpty(DaPlus.Rows[0]["Plu_Amount"].ToString()))
{ sum = Convert.ToDecimal(DaPlus.Rows[0]["Plu_Amount"]); }
this.txtCope.Text = Convert.ToDecimal(Convert.ToDecimal(DaOr.Rows[0]["Ord_SeriesPrice"]) + Convert.ToDecimal(sum)).ToString();
//已付款
decimal Paid = 0;
DataTable DaPayment = ptbll.GetSum(" Pay_OrdNumber='" + this.StrOrdNumber + "'").Tables[0];
if (!string.IsNullOrEmpty(DaPayment.Rows[0]["Pay_AmountOf"].ToString()))
{ Paid = Convert.ToDecimal(DaPayment.Rows[0]["Pay_AmountOf"]); }
this.txtPaid.Text = this.StrPaid.ToString();
//欠款
this.txtArrears.Text = Convert.ToDecimal(Convert.ToDecimal(DaOr.Rows[0]["Ord_SeriesPrice"]) + Convert.ToDecimal(sum) - Convert.ToDecimal(Paid)).ToString();
#endregion
this.PublicFunctionPlusPickItems();
this.PublicFunctionPayment();
this.IsSaveed = true;
}
}
else
{ MessageBoxCustom.Show("删除失败!"); }
}
else
{ MessageBoxCustom.Show("收款记录不存在!"); }
}
catch (Exception ex)
{ MessageBoxCustom.Show(ex.Message); }
}
///
/// 打印收据
///
///
///
protected override void btnPrint_Click(object sender, EventArgs e)
{
try
{
if (this.dgv2.SelectedRows.Count == 0)
{
MessageBoxCustom.Show("请选择你要打印的数据!");
return;
}
#region 获取应付
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];
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];
decimal Handle = 0;
decimal PackagesMoney = 0;
string Pay_ReceivableProject = "";
for (int i = 0; i < dgv2.SelectedRows.Count; i++)
{
if (!string.IsNullOrEmpty(dgv2.SelectedRows[i].Cells["Pay_ReceivableProject"].Value.ToString()))
{ Pay_ReceivableProject += dgv2.SelectedRows[i].Cells["Pay_ReceivableProject"].Value.ToString().Replace(",", "┳") + ","; } ///传入的数据带有 ",",影响数据判断。将","转换成特殊符号,然后在逻辑处理中再转换回来
else
{ PackagesMoney = Convert.ToDecimal(orbll.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.dgv2;
htData["strNumber"] = this.StrOrdNumber.Trim();
htData["Arrear"] = this.txtArrears.Text.Trim();
htData["CopeAmount"] = Handle + PackagesMoney;
LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintFixedFormat(LYFZ.EnumPublic.PrintTypeEnum.订单收款, htData);
}
catch (Exception ex)
{ MessageBoxCustom.Show(ex.Message); }
}
///
/// 绑定二销类别
///
public void BindPay_TwoPinsCategory()
{
DataTable dt = new DataTable();
DataTable dt2 = scbll.GetList("Sc_ClassCode='BEBACDAJDFDDEACGJ'").Tables[0];
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];
this.cmbPay_TwoPinsCategory.DataSource = dt;
this.cmbPay_TwoPinsCategory.ValueMember = "Sc_ClassCode";
this.cmbPay_TwoPinsCategory.DisplayMember = "Sc_ClassName";
DataRow dr = dt.NewRow();
dr["Sc_ClassCode"] = "-1";
dr["Sc_ClassName"] = "";
dt.Rows.InsertAt(dr, 0);
this.cmbPay_TwoPinsCategory.SelectedIndex = 0;
}
///
/// 修改收款时间
///
///
///
protected override void btnUpdateTime_Click(object sender, EventArgs e)
{
if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.UpdatePaymentTime))
{ this.txtPay_CreateDatetime.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();
this.txtPay_CreateDatetime.Enabled = true; }
else {
frm.SetAuthorizationResult(String.Format("授权失败,授权人没有'{0}'权限", LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm.ConvertEnumToDescription(CustomAttributes.OperatingAuthority.UpdatePaymentTime).ToString()));
}
}
}
}
///
/// 修改加挑时间
///
///
///
void btnUpdateTime2_Click(object sender, EventArgs e)
{
if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, CustomAttributes.OperatingAuthority.UpdatePaymentTime))
{ this.txtPlusPickTime.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();
this.txtPlusPickTime.Enabled = true; }
else {
frm.SetAuthorizationResult(String.Format("授权失败,授权人没有'{0}'权限", LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm.ConvertEnumToDescription(CustomAttributes.OperatingAuthority.UpdatePaymentTime).ToString()));
}
}
}
}
LYFZ.BLL.MemberCardPaymentModel modelpm = null;
///
/// 选择支付方式事件
///
///
///
protected override void cmbPay_PaymentMethod_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
{
guid = Guid.NewGuid().ToString().Replace("-", "").ToUpper();
if (this.cmbPay_PaymentMethod.Text != "")
{
if (this.cmbPay_PaymentMethod.Tag.ToString() == "BEBACCAFEGECFBJFD")
{
if (!string.IsNullOrEmpty(this.txtPay_AmountOf.Text))
{
LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.MemberCardDeductAmountSuperSmallForm frm = new DoorCityProcess.SuperSmallForm.MemberCardDeductAmountSuperSmallForm();
frm.strOrdNumber = StrOrdNumber;//订单编号
frm.PaymentAmount = Convert.ToDecimal(txtPay_AmountOf.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;
if (modelpm.PaymentAmount > Convert.ToDecimal(txtPay_AmountOf.Text))
{
MessageBoxCustom.Show("系统检查出会员卡扣款金额: " + modelpm.PaymentAmount + " 大于实际扣款金额: " + txtPay_AmountOf.Text + " ,请重新点击收款条目进行收款操作!");
return;
}
this.btnSave_Click(this, null);
}
else
{ this.cmbPay_PaymentMethod.SetTextAndTag_ValueNull(); }
}
else
{ this.cmbPay_PaymentMethod.SetTextAndTag_ValueNull(); MessageBoxCustom.Show("请输入金额!"); }
}
else
{ modelpm = null; }
}
}
}
}