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;
using LYFZ.Software.MainBusiness.DoorCityProcess;
namespace LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm
{
public partial class FindGuestSuperSmallForm : LYFZ.Software.UI.MembershipManage.SuperSmallForm.FindGuestSuperSmallForm
{
LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
public FindGuestSuperSmallForm()
{
this.btnFind.Click += btnFind_Click;
this.txtTextQuery.KeyDown += txtTextQuery_KeyDown;
}
public bool IsSaveed = false;
///
/// 选择客户人名
///
public string GuestsCustomerNumber = "";
///
/// 窗体加载事件
///
///
///
protected override void FindGuestSuperSmallForm_Load(object sender, EventArgs e)
{
this.dgvData.DataColumns("客户姓名,客户拼音,客户性别,客户电话,客户微信,客户QQ,宝贝年龄,会员卡号,客户地址,M_Cus_CustomerNumber", strHideField: "M_Cus_CustomerNumber");
}
///
/// 确定
///
///
///
protected override void btnOK_Click(object sender, EventArgs e)
{
if (this.dgvData.CurrentRow != null)
{
this.GuestsCustomerNumber = this.dgvData.CurrentRow.Cells["M_Cus_CustomerNumber"].Value.ToString().Trim();
this.IsSaveed = true;
this.Close();
}
}
///
/// 取消
///
///
///
protected override void btnCancel_Click(object sender, EventArgs e)
{ this.Close(); }
///
/// 回车查找
///
///
///
void txtTextQuery_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{ this.btnFind_Click(this, null); }
}
///
/// 查找
///
///
///
void btnFind_Click(object sender, EventArgs e)
{
string StrText = this.txtTextQuery.Text.Trim();
if (!string.IsNullOrEmpty(StrText))
{
DataTable tbl = orbll.GetView_Custom("tempTB_AggregationCustomer", StrWhere: "(Cus_Name_py like '%" + StrText + "%' or Cus_Name like '%" + StrText + "%' or Cus_Telephone like '%" + StrText + "%')", ShowColumnName: "Cus_Name AS 客户姓名,Cus_Sex_cs AS 客户性别,Cus_Telephone AS 客户电话,Cus_MicroSignal AS 客户微信,Cus_QQ AS 客户QQ,Age_String AS 宝贝年龄,Mc_CradNumber AS 会员卡号,Cus_Address AS 客户地址,M_Cus_CustomerNumber").Tables[0];
this.dgvData.DataSource(tbl, strHideField: "M_Cus_CustomerNumber");
}
else
{ this.dgvData.Rows.Clear(); }
}
}
}