using LYFZ.DAL;
using LYFZ.Model;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace LYFZ.Software.MainBusiness.Customers.OldCustomer
{
public partial class FrmOldCustomerPortraitEdit : LYFZ.Software.UI.Customers.OldCustomer.FrmOldCustomerPortraitEdit
{
Boolean bl = false;
public FrmOldCustomerPortraitEdit()
{
this.FormClosed += FrmOldCustomerPortraitAdd_FormClosed;
this.Shown += FrmOldCustomerChildrenAdd_Shown;
this.btnAdding.Click += btnAdding_Click;
this.btnSave.Click += btnSave_Click;
this.btnDelete.Click += btnDelete_Click;
this.btnlevel.Click += btnlevel_Click;
this.btnRegion.Click += btnRegion_Click;
this.chkLKH.Click += chkLKH_Click;
this.chkPYJS.Click += chkPYJS_Click;
this.chkQT.Click += chkQT_Click;
this.dgvData.CellDoubleClick += dgvData_CellDoubleClick;
this.txtBaby_Birthday.Leave += txtBaby_Birthday_Leave;
this.btnClear.Click += btnClear_Click;
this.btnQQCall.Click += btnQQCall_Click;
this.btnDial.Click += btnDial_Click;
this.txtCus_FixedPhone.KeyPress += txtCus_FixedPhone_KeyPress;
this.chkBaby_Lunar.Click += chkBaby_Lunar_Click;
this.txtHistory_Money.KeyPress += txtHistory_Money_KeyPress;
this.txtHistory_OrderTime.KeyPress += txtHistory_OrderTime_KeyPress;
}
void chkBaby_Lunar_Click(object sender, EventArgs e)
{
txtBaby_Birthday_Leave(this, null);
}
void btnDial_Click(object sender, EventArgs e)
{
LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.PhoneCall(this.txtCus_Telephone);
}
void btnQQCall_Click(object sender, EventArgs e)
{
LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.QQCall(txtCus_QQ.Text.Trim());
}
///
/// 客户组类型 1 为老客户 2 为意向客户
///
public int type;
void txtBaby_Birthday_Leave(object sender, EventArgs e)
{
int intMasse = this.txtBaby_Birthday.CheckDateValue(this.txtBaby_Birthday, chkBaby_Lunar);
if (intMasse == 1) { MessageBoxCustom.Show("宝贝生日日期格式输入错误"); return; }
else if (intMasse == 2)
{ MessageBoxCustom.Show("宝贝生日:" + this.txtBaby_Birthday.StrValue.Trim() + "不是公历日期,若要保存请勾上农历"); return; }
if (this.txtBaby_Birthday.StrValue.Trim().Length > 0)
{
string[] StrArrayList = this.txtBaby_Birthday.StrValue.Trim().Split('-');
if (SDateTime.Now.Year < Convert.ToInt32(StrArrayList[0]))
{ MessageBoxCustom.Show("您输入的宝贝生日不能大于今年!"); return; }
this.cmbBaby.Text = LYFZ.Command.Command_CalendarTurnLunar.GetZodiac(this.txtBaby_Birthday.StrValue.Trim(), this.chkBaby_Lunar.Checked);
}
else
{ this.cmbBaby.Text = ""; }
//this.cmbBaby.Text = LYFZ.Command.Command_CalendarTurnLunar.GetZodiac(this.txtBaby_Birthday.StrValue.Trim(), this.chkBaby_Lunar.Checked);
}
///
/// 修改添加到人员
///
///
///
void dgvData_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
{
if (dgvData.SelectedRows.Count > 0)
{
//dgv修改操作
foreach (Model_ErpCustomer model in GetModelList)
{
if (model.Cus_CustomerNumber == dgvData.CurrentRow.Cells["CusCustomerNumber"].Value.ToString().Trim())
{
FrmAddContacts frm = new FrmAddContacts();
//状态
frm.Zhuangtai = "添加";
//将本条数据传到另一个窗体
frm.model = model;
if (frm.ShowDialog() == DialogResult.OK)
{
//先移除
GetModelList.Remove(model);
dgvData.Rows.Remove(dgvData.CurrentRow);
//后添加
Adddgvdata(frm.model);
}
break;
}
}
}
}
///
/// 存放客户资料的Model泛型
///
List GetModelList = new List();
void FrmOldCustomerPortraitAdd_FormClosed(object sender, FormClosedEventArgs e)
{
if (bl)
{
this.DialogResult = DialogResult.OK;
}
}
#region 加载
void FrmOldCustomerChildrenAdd_Shown(object sender, EventArgs e)
{
try
{
//获取客户等级,客户区域,客户来源,生肖,客户关系
GetCus_Grade();
GetRegion();
GetCustomerSource();
GetRelations();
}
catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
}
#endregion
#region 添加联系人
void btnAdding_Click(object sender, EventArgs e)
{
try
{
FrmAddContacts frm = new FrmAddContacts();
//状态
frm.Zhuangtai = "添加";
if (frm.ShowDialog() == DialogResult.OK)
{
//返回一个用户Model
Adddgvdata(frm.model);
}
}
catch (Exception ex)
{
MessageBoxCustom.Show(ex.Message);
}
}
#endregion
#region 保存
void btnSave_Click(object sender, EventArgs e)
{
LYFZ.BLL.BLL_ErpCustomer bll = new BLL.BLL_ErpCustomer();
LYFZ.BLL.BLL_ErpCustomerGroup GPbll = new BLL.BLL_ErpCustomerGroup();
LYFZ.BLL.BLL_ErpCustomerGroupMembers GMbll = new BLL.BLL_ErpCustomerGroupMembers();
LYFZ.Model.Model_ErpCustomer model = new Model.Model_ErpCustomer();
Model.Model_ErpCustomerGroup modelGP = new Model.Model_ErpCustomerGroup();
Model.Model_ErpCustomerGroupMembers modelGM = new Model.Model_ErpCustomerGroupMembers();
LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
List clist = new List();
//手机号
string StrPhone = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.MaskedTextBoxExGetText(this.txtCus_Telephone);
#region 输入不能为空
if (string.IsNullOrEmpty(this.txtCus_Name.Text))
{ MessageBoxCustom.Show("客户姓名不能为空"); return; }
if (this.txtBaby_name.Text == "")
{ MessageBoxCustom.Show("宝宝姓名不能为空"); return; }
// if (this.txtBaby_Birthday.Text == "")
// { MessageBoxCustom.Show("宝宝生日不能为空"); return; }
if (string.IsNullOrEmpty(StrPhone))
{ MessageBoxCustom.Show("客户手机不能为空"); return; }
if (!string.IsNullOrEmpty(StrPhone))
{
if (StrPhone.Length != 11)
{ MessageBoxCustom.Show("手机号码必须为11位数!"); return; }
}
if (chkLKH.Checked == false && chkQT.Checked == false && chkPYJS.Checked == false)
{ MessageBoxCustom.Show("请选择客户来源"); return; }
if (cmbCus_Relations.Text == "")
{ MessageBoxCustom.Show("请选择关系"); return; }
int intMasse = this.txtCus_Birthday.CheckDateValue(this.txtCus_Birthday, this.chkCus_Lunar);
if (intMasse == 1) { MessageBoxCustom.Show("客户生日日期格式输入错误!"); return; }
else if (intMasse == 2)
{ MessageBoxCustom.Show("客户生日:" + this.txtCus_Birthday.StrValue.Trim() + "不是公历日期,若要保存请勾上农历!"); return; }
intMasse = this.txtBaby_Birthday.CheckDateValue(this.txtBaby_Birthday, chkBaby_Lunar);
if (intMasse == 1) { MessageBoxCustom.Show("宝宝日期日期格式输入错误"); return; }
else if (intMasse == 2)
{ MessageBoxCustom.Show("宝宝日期:" + this.txtBaby_Birthday.StrValue.Trim() + "不是公历日期,若要保存请勾上农历"); return; }
#endregion
#region 手机存在
DataTable tblClient = orbll.GetView_Custom("tb_ErpCustomer", StrWhere: "Cus_Telephone = '" + StrPhone + "'", ShowColumnName: "ID").Tables[0];
if (tblClient.Rows.Count > 0)
{ MessageBoxCustom.Show("手机号已存在"); return; }
#endregion
#region Model
DateTime strTime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
//客户组表
modelGP.GP_CustomerGroupID = LYFZ.BLL.BLL_ErpCustomer.GetNewClientGroupNumber();
modelGP.GP_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
modelGP.GP_GroupType = type;
modelGP.GP_CustomerType = 1;
modelGP.GP_CustomerStatus = "正常";
modelGP.GP_CreateDatetime = strTime;
modelGP.GP_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
modelGP.GP_CustomerSource = _CustomerSource();
modelGP.GP_Remark = "";
modelGP.GP_OrderNumber = "";
modelGP.GP_LossReason = "";
modelGP.GP_IntroducerCustomerID = "";
modelGP.GP_DegreeOfIntent = "";
modelGP.GP_BelongsPersonID = "";
clist.Add(GPbll.GetAddCommandInfo(modelGP));
//Baby
model.Cus_CustomerNumber = LYFZ.BLL.BLL_ErpCustomer.GetClientNumber();
model.Cus_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
model.Cus_Name =LYFZ.BLL.OtherCommonModel.ClearSpecialCharacter( this.txtBaby_name.Text);
model.Cus_NamePinyin = LYFZ.Command.Command_ChineseToPinyin.GetChineseSpellPinyin(model.Cus_Name).ToLower();
if (this.radioBaby_nan.Checked == true)
{ model.Cus_Sex = false; }
else { model.Cus_Sex = true; }
//判断生日是否有填
model.Cus_Birthday = this.txtBaby_Birthday.StrValue.Trim();
if (model.Cus_Birthday != "")
{
model.Cus_Zodiac = cmbBaby.Text;
if (chkBaby_Lunar.Checked == true)
{
model.Cus_BirthdayLunar = "1";
}
else {
model.Cus_BirthdayLunar = "0";
}
}
else
{
model.Cus_Birthday = "";
model.Cus_BirthdayLunar = "";
model.Cus_Zodiac = "";
}
model.Cus_DayForMarriage = "";
model.Cus_DayForMarriageLunar = "";
model.Cus_Relations = "";
model.Cus_QQ = "";
model.Cus_MicroSignal = "";
model.Cus_Telephone = "";
model.Cus_FixedPhone = "";
model.Cus_Region = "";
model.Cus_Address = "";
model.Cus_WorkUnit = "";
model.Cus_BabyWeight = "";
model.Cus_BornHospital = "";
model.Cus_CustomerSource = "";
model.Cus_Status = "";
model.Cus_LossReason = "";
model.Cus_DegreeOfIntent = "";
model.Cus_TrackName = "";
model.Cus_Remark = "";
model.Cus_CreateDateTime = strTime;
model.Cus_Grade = "";
model.Cus_Type = "儿童";
model.Cus_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
clist.Add(bll.GetAddCommandInfo(model));
//成员表
modelGM.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
modelGM.GM_CustomerGroupID = modelGP.GP_CustomerGroupID;
modelGM.GM_CustomerID = model.Cus_CustomerNumber;
modelGM.GM_Master = 0;
modelGM.GM_ProtagonistCustomer = 1;
modelGM.GM_RelatedPersonID = model.Cus_CustomerNumber;
modelGM.GM_Relation = "本人";
modelGM.GM_IsOrder = 0;
modelGM.GM_IsOrderNumber = "";
clist.Add(GMbll.GetAddCommandInfo(modelGM));
/////////////////////////////////////////////////
LYFZ.Model.Model_ErpCustomer model2 = new Model.Model_ErpCustomer();
Model.Model_ErpCustomerGroupMembers modelGM2 = new Model.Model_ErpCustomerGroupMembers();
//用户信息表
model2.Cus_CustomerNumber = LYFZ.BLL.BLL_ErpCustomer.GetClientNumber();
model2.Cus_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
model2.Cus_Type = "";
model2.Cus_Name = LYFZ.BLL.OtherCommonModel.ClearSpecialCharacter(this.txtCus_Name.Text);
model2.Cus_NamePinyin = LYFZ.Command.Command_ChineseToPinyin.GetChineseSpellPinyin(model2.Cus_Name).ToLower();
if (this.rdoNan.Checked == true)
{ model2.Cus_Sex = false; }
else { model2.Cus_Sex = true; }
//判断生日是否有填
model2.Cus_Birthday = this.txtCus_Birthday.StrValue.Trim();
if (model2.Cus_Birthday != "")
{
model2.Cus_Zodiac = LYFZ.Command.Command_CalendarTurnLunar.GetZodiac(this.txtCus_Birthday.StrValue.Trim(), this.chkCus_Lunar.Checked);
if (chkCus_Lunar.Checked == true)
{
model2.Cus_BirthdayLunar = "1";
}
else {
model2.Cus_BirthdayLunar = "0";
}
}
else
{
model2.Cus_Birthday = "";
model2.Cus_BirthdayLunar = "";
model2.Cus_Zodiac = "";
}
model2.Cus_DayForMarriage = "";
model2.Cus_DayForMarriageLunar = "";
model2.Cus_Relations = "";
model2.Cus_QQ = this.txtCus_QQ.Text.ToString().Trim();
model2.Cus_MicroSignal = this.txtCus_MicroSignal.Text.ToString().Trim();
model2.Cus_Telephone = StrPhone;
model2.Cus_FixedPhone = this.txtCus_FixedPhone.Text.ToString().Trim();
model2.Cus_Region = this.cmbCus_Region.Text.ToString().Trim();
model2.Cus_Address = this.txtCus_Address.Text.ToString().Trim();
model2.Cus_WorkUnit = this.txtCus_WorkUnit.Text.ToString().Trim();
model2.Cus_BabyWeight = "";
model2.Cus_BornHospital = "";
model2.Cus_CustomerSource = "";
model2.Cus_Status = "";
model2.Cus_LossReason = "";
model2.Cus_DegreeOfIntent = "";
model2.Cus_TrackName = "";
model2.Cus_Remark = "";
model2.Cus_CreateDateTime = strTime;
model2.Cus_Grade = cmblevel.Text;
model2.Cus_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
clist.Add(bll.GetAddCommandInfo(model2));
//成员表
modelGM2.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
modelGM2.GM_CustomerGroupID = modelGP.GP_CustomerGroupID;
modelGM2.GM_CustomerID = model2.Cus_CustomerNumber;
modelGM2.GM_Master = 1;
modelGM2.GM_ProtagonistCustomer = 0;
modelGM2.GM_RelatedPersonID = model.Cus_CustomerNumber;
modelGM2.GM_Relation = cmbCus_Relations.Text;
modelGM2.GM_IsOrder = 0;
modelGM2.GM_IsOrderNumber = "";
clist.Add(GMbll.GetAddCommandInfo(modelGM2));
#endregion
if (dgvData.Rows.Count > 0)
{
Model_ErpCustomerGroupMembers modelGMitem = new Model_ErpCustomerGroupMembers();
foreach (Model_ErpCustomer modelitem in GetModelList)
{
modelGMitem.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
modelGMitem.GM_CustomerGroupID = modelGP.GP_CustomerGroupID;
modelGMitem.GM_CustomerID = modelitem.Cus_CustomerNumber;
modelGMitem.GM_Master = 0;
modelGMitem.GM_ProtagonistCustomer = 0;
modelGMitem.GM_RelatedPersonID = model.Cus_CustomerNumber;
modelGMitem.GM_Relation = modelitem.Cus_Relations;
modelGMitem.GM_IsOrder = 0;
modelGMitem.GM_IsOrderNumber = "";
clist.Add(GMbll.GetAddCommandInfo(modelGMitem));
clist.Add(bll.GetAddCommandInfo(modelitem));
}
}
//新增 2015-9-9 老客户历史记录
if (txtHistory_Money.Text != "" && txtHistory_TypeS.Text != "")
{
Model.Model_OldOrderHistory Model_ooh = new Model_OldOrderHistory();
BLL.BLL_OldOrderHistory bll_ooh = new BLL.BLL_OldOrderHistory();
Model_ooh.History_ID = modelGP.GP_CustomerGroupID;
Model_ooh.History_Type = txtHistory_TypeS.Text.Trim();
if (txtHistory_Money.Text != "")
{
Model_ooh.History_Money = Convert.ToInt32(txtHistory_Money.Text);
}
else { Model_ooh.History_Money = 0; }
if (this.txtHistory_OrderTime.StrValue != "")
{
if (txtHistory_OrderTime.CheckDateValue(this.txtHistory_OrderTime) != 1)
{ Model_ooh.History_OrderTime = Convert.ToDateTime(txtHistory_OrderTime.Text); }
else
{ Model_ooh.History_OrderTime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime(); }
}
else { Model_ooh.History_OrderTime = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime(); }
Model_ooh.History_CurrentTime = SDateTime.Now;
Model_ooh.History_CurrentID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
clist.Add(bll_ooh.GetAddCommandInfo(Model_ooh));
}
if (clist.Count > 0)
{
if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) >= 0)
{
bl = true;
DAL_ErpCustomer.UpdateAggregationCustomer(modelGP.GP_CustomerGroupID);
//日志
LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog(LYFZ.EnumPublic.SystemLogsType.添加客户资料, "主联系人:"+model.Cus_Name+",添加儿童版老客户资料客户组:" + modelGP.GP_CustomerGroupID + ",时间:" + SDateTime.Now, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name);
MessageBoxCustom.Show("保存成功!");
btnClear_Click(sender, e);
}
else { MessageBoxCustom.Show("保存失败!"); }
return;
}
}
#endregion
#region 删除
void btnDelete_Click(object sender, EventArgs e)
{
if (dgvData.SelectedRows.Count > 0)
{
if (MessageBoxCustom.Show("是否删除?", "删除", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
foreach (Model_ErpCustomer model in GetModelList)
{
//判断获取当前选中的数据,并删除
if (model.Cus_CustomerNumber == dgvData.CurrentRow.Cells["CusCustomerNumber"].Value.ToString().Trim())
{
//删除去list里面移除
GetModelList.Remove(model);
//去dgv移除
dgvData.Rows.Remove(dgvData.CurrentRow);
return;
}
}
}
}
else { MessageBoxCustom.Show("请选中要删除的内容"); }
}
#endregion
#region 清空
void btnClear_Click(object sender, EventArgs e)
{
this.txtCus_Name.Text = "";
this.txtCus_Address.Text = "";
this.txtCus_Telephone.Text = "";
this.txtCus_Birthday.StrValue = "";
this.chkCus_Lunar.Checked = false;
this.txtCus_MicroSignal.Text = "";
this.cmbCus_CustomerSource.Text = "";
this.txtCus_QQ.Text = "";
this.txtCus_Address.Text = "";
this.txtCus_FixedPhone.Text = "";
this.chkLKH.Checked = false;
this.chkPYJS.Checked = false;
this.chkQT.Checked = false;
this.txtCus_WorkUnit.Text = "";
this.cmbCus_Region.Text = "";
this.cmblevel.Text = "";
this.txtBaby_name.Text = "";
this.txtBaby_Birthday.Text = "";
this.chkBaby_Lunar.Checked = false;
this.cmbBaby.Text = "";
this.cmbCus_Relations.Text = "";
this.txtHistory_Money.Text = "";
this.txtHistory_OrderTime.StrValue = "";
this.txtHistory_TypeS.Text = "";
}
#endregion
#region 关闭
protected override void btnClose_Click(object sender, EventArgs e)
{
this.Close();
}
#endregion
#region 设置客户等级
void btnlevel_Click(object sender, EventArgs e)
{
try
{
LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet set = new InitialSet.FrmSystemSet();
LYFZ.BLL.BLL_ErpSystemCategory bll = new BLL.BLL_ErpSystemCategory();
DataTable dt = bll.GetList("Sc_ClassCode='BFADBIBEFCFCIDCDG'").Tables[0];
if (dt.Rows.Count > 0)
{
set.TypeName = dt.Rows[0]["Sc_ClassCode"].ToString();
}
set.Version = "Version";
if (set.ShowDialog() == DialogResult.OK)
{
GetCus_Grade();
}
}
catch (Exception ex)
{
MessageBoxCustom.Show(ex.Message);
}
}
#endregion
#region 获取客户等级
///
/// 获取客户等级
///
public void GetCus_Grade()
{
DataTable dt = new DataTable();
#region 获取客户等级
LYFZ.BLL.BLL_ErpSystemCategory SystemCategorybll = new BLL.BLL_ErpSystemCategory();
DataTable dt2 = new DataTable();
DataRow dr = dt.NewRow();
dt2 = SystemCategorybll.GetList("Sc_ClassCode='BFADBIBEFCFCIDCDG'").Tables[0];
dt = SystemCategorybll.GetList("Sc_ClassParentID=" + dt2.Rows[0]["ID"] + "").Tables[0];
cmblevel.DataSource = dt;
this.cmblevel.ValueMember = "Sc_ClassCode";
this.cmblevel.DisplayMember = "Sc_ClassName";
dr = dt.NewRow();
dr["Sc_ClassCode"] = "-1";
dr["Sc_ClassName"] = "";
dt.Rows.InsertAt(dr, 0);
this.cmblevel.SelectedIndex = 0;
#endregion
}
#endregion
#region 设置客户来源
protected override void btnCustomerSource_Click(object sender, EventArgs e)
{
try
{
LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet set = new InitialSet.FrmSystemSet();
LYFZ.BLL.BLL_ErpSystemCategory bll = new BLL.BLL_ErpSystemCategory();
DataTable dt = bll.GetList("Sc_ClassCode='AAAAAAF'").Tables[0];
if (dt.Rows.Count > 0)
{
set.TypeName = dt.Rows[0]["Sc_ClassCode"].ToString();
}
set.Version = "Version";
if (set.ShowDialog() == DialogResult.OK)
{
GetCustomerSource();
}
}
catch (Exception ex)
{
MessageBoxCustom.Show(ex.Message);
}
}
#endregion
#region 设置客户区域
protected override void btnRegion_Click(object sender, EventArgs e)
{
try
{
LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet set = new InitialSet.FrmSystemSet();
LYFZ.BLL.BLL_ErpSystemCategory bll = new BLL.BLL_ErpSystemCategory();
DataTable dt = bll.GetList("Sc_ClassCode='AAAAAAC'").Tables[0];
if (dt.Rows.Count > 0)
{
set.TypeName = dt.Rows[0]["Sc_ClassCode"].ToString();
}
set.Version = "Version";
if (set.ShowDialog() == DialogResult.OK)
{
GetRegion();
}
}
catch (Exception ex)
{ MessageBoxCustom.Show(ex.Message); }
}
#endregion
#region 获取客户关系
///
/// 获取客户关系
///
public void GetRelations()
{
LYFZ.BLL.BLL_ErpSystemCategory bll = new BLL.BLL_ErpSystemCategory();
LYFZ.Model.Model_ErpSystemCategory model = new LYFZ.BLL.BLL_ErpSystemCategory().GetModel("BFABDBAJBJCEBDJCJ");
DataTable dt_tbl = bll.GetList(" Sc_ClassParentID = '" + bll.GetModel("BFABDBAJBJCEBDJCJ").ID.ToString().Trim() + "'").Tables[0];
for (int i = 0; i < dt_tbl.Rows.Count; i++)
{
this.cmbCus_Relations.Items.Add(dt_tbl.Rows[i]["Sc_ClassName"].ToString().Trim());
}
}
#endregion
#region 获取客户区域
///
/// 获取客户区域
///
public void GetRegion()
{
LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientSourec("AAAAAAC", this.cmbCus_Region, strHideFiled: "");
}
#endregion
#region 获取客户来源
///
/// 获取客户来源
///
public void GetCustomerSource()
{
LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientSourec("AAAAAAF", this.cmbCus_CustomerSource, strHideFiled: "BFACBABGBGBJGDHIE,BFAFBCBADBDCABFDD");
}
#endregion
#region 文本框输入
void txtCus_FixedPhone_KeyPress(object sender, KeyPressEventArgs e)
{
if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
{
e.Handled = true;
}
}
protected override void txtCus_Telephone_KeyPress(object sender, KeyPressEventArgs e)
{
if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
{
e.Handled = true;
}
}
protected override void txtCus_QQ_KeyPress(object sender, KeyPressEventArgs e)
{
if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
{
e.Handled = true;
}
}
void txtHistory_Money_KeyPress(object sender, KeyPressEventArgs e)
{
if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
{
e.Handled = true;
}
}
void txtHistory_OrderTime_KeyPress(object sender, KeyPressEventArgs e)
{
if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
{
e.Handled = true;
}
}
#endregion
#region 单选框事件
void chkQT_Click(object sender, EventArgs e)
{
try
{
chkLKH.Checked = false;
chkPYJS.Checked = false;
cmbCus_CustomerSource.Enabled = true;
}
catch (Exception ex)
{ MessageBoxCustom.Show(ex.Message); }
}
void chkPYJS_Click(object sender, EventArgs e)
{
try
{
cmbCus_CustomerSource.Enabled = false;
chkLKH.Checked = false;
chkQT.Checked = false;
}
catch (Exception ex)
{ MessageBoxCustom.Show(ex.Message); }
}
void chkLKH_Click(object sender, EventArgs e)
{
try
{
chkPYJS.Checked = false;
chkQT.Checked = false;
cmbCus_CustomerSource.Enabled = false;
}
catch (Exception ex)
{ MessageBoxCustom.Show(ex.Message); }
}
#endregion
///
/// 将添加的人员放入DGV
///
/// 人员的Model
void Adddgvdata(Model_ErpCustomer addmodel)
{
//人员信息的Model
Model_ErpCustomer modelAdd = addmodel;
//放入List
GetModelList.Add(modelAdd);
#region 赋值
DataGridViewRow dgvr = new DataGridViewRow();
DataGridViewCell cell = null;
//姓名
cell = new DataGridViewTextBoxCell();
cell.Value = modelAdd.Cus_Name;
dgvr.Cells.Add(cell);
//手机号
cell = new DataGridViewTextBoxCell();
cell.Value = modelAdd.Cus_Telephone;
dgvr.Cells.Add(cell);
//QQ
cell = new DataGridViewTextBoxCell();
cell.Value = modelAdd.Cus_QQ;
dgvr.Cells.Add(cell);
//微信号
cell = new DataGridViewTextBoxCell();
cell.Value = modelAdd.Cus_MicroSignal;
dgvr.Cells.Add(cell);
//性别
cell = new DataGridViewTextBoxCell();
cell.Value = modelAdd.Cus_Sex == false ? "男" : "女";
dgvr.Cells.Add(cell);
//地区
cell = new DataGridViewTextBoxCell();
cell.Value = modelAdd.Cus_Region;
dgvr.Cells.Add(cell);
//地址
cell = new DataGridViewTextBoxCell();
cell.Value = modelAdd.Cus_Address;
dgvr.Cells.Add(cell);
//工作单位
cell = new DataGridViewTextBoxCell();
cell.Value = modelAdd.Cus_WorkUnit;
dgvr.Cells.Add(cell);
//生日
cell = new DataGridViewTextBoxCell();
cell.Value = modelAdd.Cus_Birthday;
dgvr.Cells.Add(cell);
//农历
cell = new DataGridViewTextBoxCell();
cell.Value = modelAdd.Cus_BirthdayLunar == "0" ? "公历" : "农历";
dgvr.Cells.Add(cell);
//固定电话
cell = new DataGridViewTextBoxCell();
cell.Value = modelAdd.Cus_FixedPhone;
dgvr.Cells.Add(cell);
//关系
cell = new DataGridViewTextBoxCell();
cell.Value = modelAdd.Cus_Relations;
dgvr.Cells.Add(cell);
//客户编号
cell = new DataGridViewTextBoxCell();
cell.Value = modelAdd.Cus_CustomerNumber;
dgvr.Cells.Add(cell);
#endregion
//添加到dgv内,可做修改
dgvData.Rows.Add(dgvr);
}
public string _CustomerSource()
{
string GP_CustomerSource = "";
if (this.chkLKH.Checked) { GP_CustomerSource = "老客户"; }
if (this.chkPYJS.Checked) { GP_CustomerSource = "朋友介绍"; }
if (this.chkQT.Checked) { GP_CustomerSource = cmbCus_CustomerSource.Text; }
return GP_CustomerSource;
}
}
}