123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266 |
- 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 System.IO;
- using LYFZ.Software.MainBusiness.DoorCityProcess;
- using LYFZ.Command;
- using LYFZ.ComponentLibrary;
- using System.Collections;
- namespace LYFZ.Software.MainBusiness.InitialSet
- {
- public partial class FrmEmployeesSet : LYFZ.Software.UI.InitialSet.FrmEmployeesSet
- {
- LYFZ.BLL.BLL_ErpUser userbll = new BLL.BLL_ErpUser();
- LYFZ.BLL.BLL_ErpOrder orbll = new LYFZ.BLL.BLL_ErpOrder();
- public FrmEmployeesSet()
- {
- this.Load += FrmEmployeesSet_Load;
- this.Shown += FrmEmployeesSet_Shown;
- this.btnSet.Click += btnSet_Click;
- this.btnJcBinding.Click += btnJcBinding_Click;
- this.btnResetPassword.Click += btnResetPassword_Click;
- this.btnReset.Click += btnReset_Click;
- this.btnSave.Click += btnSave_Click;
- this.btnDelete.Click += btnDelete_Click;
- this.btnJobsBrowse.Click += btnJobsBrowse_Click;
- this.btnPositiveBrowse.Click += btnPositiveBrowse_Click;
- this.btnReverseBrowse.Click += btnReverseBrowse_Click;
- this.btnJobsDelete.Click += btnJobsDelete_Click;
- this.btnPositiveDelete.Click += btnPositiveDelete_Click;
- this.btnReverseDelete.Click += btnReverseDelete_Click;
- this.pictJobs.Click += pictJobs_Click;
- this.pictPositive.Click += pictPositive_Click;
- this.pictReverse.Click += pictReverse_Click;
- this.btnQuery.Click += btnQuery_Click;
- this.btnExport.Click += btnExport_Click;
- this.dgvData.CellDoubleClick += dgvData_CellDoubleClick;
- this.cmbtreevDepartmentQuery.ComboBoxTree_NodeMouseClick += cmbtreevDepartmentQuery_ComboBoxTree_NodeMouseClick;
- this.cmbtreevStoreNameQuery.ComboBoxTree_NodeMouseClick += cmbtreevStoreNameQuery_ComboBoxTree_NodeMouseClick;
- this.txtUser_LookPhoneQuantity.Leave += txtUser_LookPhoneQuantity_Leave;
- this.txtUser_LookPhoneQuantity.KeyPress += txtUser_LookPhoneQuantity_KeyPress;
- this.txtUser_TryWages.KeyPress += txtUser_TryWages_KeyPress;
- this.txtUser_ICQAccount.KeyPress += txtUser_ICQAccount_KeyPress;
- this.txtUser_Telephone.KeyPress += txtUser_Telephone_KeyPress;
- this.txtUser_EmergencyContactsTelephoneOne.KeyPress += txtUser_EmergencyContactsTelephoneOne_KeyPress;
- this.txtUser_EmergencyContactsTelephoneTwo.KeyPress += txtUser_EmergencyContactsTelephoneTwo_KeyPress;
- this.txtUser_ContractPeriod.KeyPress += txtUser_ContractPeriod_KeyPress;
- this.panelEx6.Click += panelEx6_Click;
- this.Resize += FrmEmployeesSet_Resize;
- foreach ( Control control in this.panelEx6.Controls )
- {
- if ( control is LabelEx )
- {
- LabelEx tmp = (LabelEx)control;
- tmp.Click += tmp_Click;
- }
- }
- }
- Hashtable htDataFile = new Hashtable();
- string StrServerPath = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TCP_EmployeesPhotoPath();// @"\UploadFiles\EmployeePhoto";
- string StrUserEmployeeID = "";
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void FrmEmployeesSet_Load( object sender, EventArgs e )
- {
- if ( LYFZ.EnumPublic.FormSize_Width >= 1100 )
- {
- this.Location = new Point( LYFZ.EnumPublic.FormLocation_X, LYFZ.EnumPublic.FormLocation_Y );
- this.Size = new Size( LYFZ.EnumPublic.FormSize_Width, LYFZ.EnumPublic.FormSize_Height );
- }
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void FrmEmployeesSet_Shown( object sender, EventArgs e )
- {
- this.txtUser_DateOfBirth.DateValue = "";
- this.txtUser_EntryTime.DateValue = "";
- this.txtUser_ProbationTime.DateValue = "";
- this.txtUser_PositiveTime.DateValue = "";
- this.txtUser_ReEntryTime.DateValue = "";
- this.StrUserEmployeeID = SDateTime.Now.ToString( "yyyyMMddHHmmss" ) + new Random().Next( 100, 1000 );
- this.btnSave.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights( LYFZ.BLL.BLL_ErpUser.CurrentUserRights.UserCompetence, CustomAttributes.OperatingAuthority.Add );
- this.btnSet.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights( LYFZ.BLL.BLL_ErpUser.CurrentUserRights.UserCompetence, CustomAttributes.OperatingAuthority.DepartmentSet );
- this.btnDelete.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights( LYFZ.BLL.BLL_ErpUser.CurrentUserRights.UserCompetence, CustomAttributes.OperatingAuthority.Delete );
- this.btnJcBinding.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights( LYFZ.BLL.BLL_ErpUser.CurrentUserRights.MicroInfo, CustomAttributes.OperatingAuthority.MicroInfo_Unbind );
- this.btnResetPassword.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights( LYFZ.BLL.BLL_ErpUser.CurrentUserRights.UserCompetence, CustomAttributes.OperatingAuthority.ResetPassword );
- DataTable tbl = orbll.GetView_Custom( "tb_ErpDepartment", StrWhere: "", ShowColumnName: "ID,Dt_Name" ).Tables[0];
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentSet( this.cmbtreev_DepartmentSet, IsFirstNodeNull: true, tbl: tbl );
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentSet( this.cmbtreevDepartmentQuery, IsFirstNodeNull: true, tbl: tbl );
- tbl = orbll.GetView_Custom( "tb_ErpCompanyInfo", StrWhere: "", ShowColumnName: "ID,Company_DividedShop,Company_Name" ).Tables[0];
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_StoreNameSet( this.cmbtreevStoreName, tbl: tbl );
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_StoreNameSet( this.cmbtreevStoreNameQuery, IsFirstNodeNull: true, tbl: tbl );
- this.cmbtreevStoreName.TagFindText( LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID() );
- this.cmbtreevStoreNameQuery.TagFindText( LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID() );
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView( this.cmbtreevEmployeeStatus, "在职,离职", IsFirstNodeNull: true );
- if ( tbl.Rows.Count <= 1 )
- {
- this.lblStoreName.Visible = false;
- this.cmbtreevStoreName.Visible = false;
- this.panelEx14.Visible = false;
- }
- this.PublicFunctionRows();
- }
- /// <summary>
- /// 部门设置
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnSet_Click( object sender, EventArgs e )
- {
- LYFZ.Software.MainBusiness.InitialSet.FrmDepartmentSet setx = new FrmDepartmentSet();
- if ( setx.ShowDialog() == DialogResult.OK )
- {
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentSet( this.cmbtreev_DepartmentSet, IsFirstNodeNull: true );
- }
- }
- /// <summary>
- /// 解除绑定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnJcBinding_Click( object sender, EventArgs e )
- {
- if ( this.btnJcBinding.Visible )
- {
- if ( MessageBoxCustom.Show( "你确定要解除当前用户的公众号绑定吗?", "解除公众号绑定", MessageBoxButtons.YesNo ) == DialogResult.Yes )
- {
- LYFZ.DAL.DAL_ErpUser userDal = new DAL.DAL_ErpUser();
- if ( userDal.UpdateUser_OpenID( "", this.txtUser_Account.Text.Trim() ) )
- {
- MessageBoxCustom.Show( "已解除公众号绑定." );
- }
- else
- {
- MessageBoxCustom.Show( "解除公众号绑定失败,请重试." );
- }
- }
- }
- else
- {
- MessageBoxCustom.Show( "未绑定公众号,无需解除." );
- }
- }
- /// <summary>
- /// 重置密码
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnResetPassword_Click( object sender, EventArgs e )
- {
- if ( this.txtUser_Name.Tag != null )
- {
- if ( userbll.Exists( "User_Account", this.txtUser_Account.Text ) == false )
- {
- MessageBoxCustom.Show( "用户账号不存在!请重新选择!" ); return;
- }
- if ( MessageBoxCustom.Show( "你确定要重置密码吗?", "删除提示", MessageBoxButtons.YesNo ) == DialogResult.Yes )
- {
- if ( LYFZ.DAL.DAL_ErpUser.ResetAdminPassword( txtUser_Account.Text ) )
- {
- MessageBoxCustom.Show( "重置成功,重置后的密码为:1234" );
- }
- else
- {
- MessageBoxCustom.Show( "重置失败" );
- }
- }
- }
- }
- /// <summary>
- /// 清空重置
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnReset_Click( object sender, EventArgs e )
- {
- this.cmbtreev_DepartmentSet.SetTextAndTag_ValueNull();
- foreach ( Control control in this.panelEx6.Controls )
- {
- if ( control is TextBoxBasicEx )
- {
- TextBoxBasicEx tmp = (TextBoxBasicEx)control;
- tmp.Tag = null;
- tmp.Text = "";
- }
- if ( control is ComboBoxEx )
- {
- ComboBoxEx tmp = (ComboBoxEx)control;
- tmp.Tag = null;
- tmp.Text = "";
- }
- if ( control is DateTimePickerEx )
- {
- DateTimePickerEx tmp = (DateTimePickerEx)control;
- tmp.Tag = null;
- tmp.DateValue = "";
- }
- if ( control is CheckBoxEx )
- {
- CheckBoxEx tmp = (CheckBoxEx)control;
- tmp.Tag = null;
- tmp.Checked = false;
- }
- if ( control is PictureBoxEx )
- {
- PictureBoxEx tmp = (PictureBoxEx)control;
- tmp.Tag = null;
- tmp.Image = null;
- }
- }
- this.txtUser_Name.Tag = null;
- this.lblJobs.ForeColor = this.GetNullColor();
- this.lblJobs.Tag = null;
- this.lblPositive.ForeColor = this.lblJobs.ForeColor;
- this.lblPositive.Tag = null;
- this.lblReverse.ForeColor = this.lblJobs.ForeColor;
- this.lblReverse.Tag = null;
- this.btnJcBinding.Visible = false;
- this.txtUser_Password.ReadOnly = false;
- this.radUser_IsDisable1.Checked = true;
- this.txtUser_Account.Enabled = true;
- this.txtUser_Name.Enabled = true;
- this.StrUserEmployeeID = SDateTime.Now.ToString( "yyyyMMddHHmmss" ) + new Random().Next( 100, 1000 );
- }
- /// <summary>
- /// 保存
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnSave_Click( object sender, EventArgs e )
- {
- #region 判断资料不能为空
- if ( string.IsNullOrEmpty( this.cmbtreev_DepartmentSet.Text.Trim() ) )
- {
- MessageBoxCustom.Show( "部门不能为空!" ); return;
- }
- if ( string.IsNullOrEmpty( this.cmbtreevStoreName.Text.Trim() ) )
- {
- MessageBoxCustom.Show( "分店不能为空!" ); return;
- }
- if ( string.IsNullOrEmpty( this.StrUserEmployeeID.Trim() ) )
- {
- MessageBoxCustom.Show( "编号不能为空!" ); return;
- }
- if ( string.IsNullOrEmpty( this.txtUser_Name.Text.Trim() ) )
- {
- MessageBoxCustom.Show( "姓名不能为空!" ); return;
- }
- if ( string.IsNullOrEmpty( this.txtUser_Account.Text.Trim() ) )
- {
- MessageBoxCustom.Show( "用户账号不能为空!" ); return;
- }
- if ( string.IsNullOrEmpty( this.cmbUser_Sex.Text.Trim() ) )
- {
- MessageBoxCustom.Show( "性别不能为空!" ); return;
- }
- if ( string.IsNullOrEmpty( this.txtUser_Telephone.Text.Trim() ) )
- {
- MessageBoxCustom.Show( "电话不能为空!" ); return;
- }
- if ( string.IsNullOrEmpty( this.cmbUser_Status.Text.Trim() ) )
- {
- MessageBoxCustom.Show( "是否在职不能为空!" ); return;
- }
- if ( this.txtUser_Telephone.Text.Length != 11 )
- {
- MessageBoxCustom.Show( "手机号码必须为11位数!" ); return;
- }
- if ( !string.IsNullOrEmpty( this.txtUser_EmergencyContactsTelephoneOne.Text.Trim() ) )
- {
- if ( this.txtUser_EmergencyContactsTelephoneOne.Text.Trim().Length != 11 )
- {
- MessageBoxCustom.Show( "紧急联系人1手机号码必须为11位数!" ); return;
- }
- }
- if ( !string.IsNullOrEmpty( this.txtUser_EmergencyContactsTelephoneTwo.Text.Trim() ) )
- {
- if ( this.txtUser_EmergencyContactsTelephoneTwo.Text.Trim().Length != 11 )
- {
- MessageBoxCustom.Show( "紧急联系人2手机号码必须为11位数!" ); return;
- }
- }
- if ( !string.IsNullOrEmpty( this.txtUser_Email.Text.Trim() ) )
- {
- if ( Command.Command_Validate.IsEmail( this.txtUser_Email.Text.Trim() ) == false )
- {
- MessageBoxCustom.Show( "邮箱格式输入不确定!" ); return;
- }
- }
- if ( this.txtUser_LookPhoneQuantity.Text.Trim().Length > 0 )
- {
- try
- {
- Convert.ToInt32( this.txtUser_LookPhoneQuantity.Text );
- }
- catch
- {
- MessageBoxCustom.Show( "每天可查看完整电话次数格式输入错误!" ); return;
- }
- if ( Convert.ToInt32( this.txtUser_LookPhoneQuantity.Text ) < -1 )
- {
- MessageBoxCustom.Show( "每天可查看完整电话次数输入的值超出范围!" ); return;
- }
- }
- #endregion
- DateTime StrTime = SDateTime.Now;
- LYFZ.Model.Model_ErpUser model = null;
- DataTable tbl = orbll.GetView_Custom( "tb_ErpUser", StrWhere: "User_EmployeeID = '" + this.StrUserEmployeeID.Trim() + "' or User_Account = '" + this.txtUser_Account.Text.Trim() + "'", ShowColumnName: "ID,User_EmployeeID, User_Account" ).Tables[0];
- if ( this.txtUser_Name.Tag == null )
- {
- if ( string.IsNullOrEmpty( txtUser_Password.Text ) )
- {
- MessageBoxCustom.Show( "用户密码不能为空!" ); return;
- }
- DataRow[] dtRow = tbl.Select( "User_EmployeeID = '" + this.StrUserEmployeeID.Trim() + "'" );
- if ( dtRow.Length > 0 )
- {
- MessageBoxCustom.Show( "用户编号已经存在!" );
- this.StrUserEmployeeID = SDateTime.Now.ToString( "yyyyMMddHHmmss" ) + new Random().Next( 100, 1000 );
- return;
- }
- DataRow[] dtRow2 = tbl.Select( "User_Account = '" + this.txtUser_Account.Text.Trim() + "'" );
- if ( dtRow2.Length > 0 )
- {
- MessageBoxCustom.Show( "用户账号已经存在!" );
- this.txtUser_Account.Text = "";
- this.txtUser_Account.Focus();
- return;
- }
- model = new Model.Model_ErpUser();
- model.User_Competence = "";
- model.User_Password = LYFZ.Command.Command_MD5.md5( txtUser_Password.Text );
- model.User_OnlineTime = StrTime;
- model.User_CreateDatetime = StrTime;
- model.User_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
- }
- else
- {
- DataRow[] dtRow2 = tbl.Select( "User_Account = '" + this.txtUser_Account.Text.Trim() + "' And ID <> '" + Convert.ToInt32( this.txtUser_Name.Tag ) + "'" );
- if ( dtRow2.Length > 0 )
- {
- MessageBoxCustom.Show( "用户账号已经存在!" );
- this.txtUser_Account.Text = "";
- this.txtUser_Account.Focus();
- return;
- }
- model = userbll.GetModel( Convert.ToInt32( this.txtUser_Name.Tag ) );
- model.User_UpdateDatetime = StrTime;
- }
- if ( this.lblJobs.ForeColor == this.GetRedColor() )
- {
- if ( this.lblJobs.Tag != null )
- {
- htDataFile[this.lblJobs.Tag.ToString() + "|" + this.StrServerPath + "\\" + this.StrUserEmployeeID.Trim() + "_" + PhotoName.Jobs.ToString() + ".jpg"] = "新增";
- }
- else
- {
- htDataFile[model.User_HeadImgePath + "|" + this.StrServerPath + "\\" + this.StrUserEmployeeID.Trim() + "_" + PhotoName.Jobs.ToString() + ".jpg"] = "移动";
- }
- }
- if ( this.lblPositive.ForeColor == this.GetRedColor() )
- {
- if ( this.lblPositive.Tag != null )
- {
- htDataFile[this.lblPositive.Tag.ToString() + "|" + this.StrServerPath + "\\" + this.StrUserEmployeeID.Trim() + "_" + PhotoName.Positive.ToString() + ".jpg"] = "新增";
- }
- else
- {
- htDataFile[model.User_PositiveID + "|" + this.StrServerPath + "\\" + this.StrUserEmployeeID.Trim() + "_" + PhotoName.Positive.ToString() + ".jpg"] = "移动";
- }
- }
- if ( this.lblReverse.ForeColor == this.GetRedColor() )
- {
- if ( this.lblReverse.Tag != null )
- {
- htDataFile[this.lblReverse.Tag.ToString() + "|" + this.StrServerPath + "\\" + this.StrUserEmployeeID.Trim() + "_" + PhotoName.Reverse.ToString() + ".jpg"] = "新增";
- }
- else
- {
- htDataFile[model.User_IDNegative + "|" + this.StrServerPath + "\\" + this.StrUserEmployeeID.Trim() + "_" + PhotoName.Reverse.ToString() + ".jpg"] = "移动";
- }
- }
- model.User_DividedShop = this.cmbtreevStoreName.Tag.ToString().Trim();// LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetCompanyInfoID();
- model.User_Department = this.cmbtreev_DepartmentSet.Tag.ToString().Trim();
- model.User_EmployeeID = StrUserEmployeeID.Trim();
- model.User_JobNumber = txtUser_JobNumber.Text.Trim();
- model.User_Account = txtUser_Account.Text.Trim();
- model.User_Name = txtUser_Name.Text.Trim();
- model.User_Sex = cmbUser_Sex.Text.Trim();
- model.User_Telephone = txtUser_Telephone.Text.Trim();
- model.User_NowAddress = txtUser_NowAddress.Text.Trim();
- model.User_HometownAddress = txtUser_HometownAddress.Text.Trim();
- model.User_IdentityCardID = txtUser_IdentityCardID.Text.Trim();
- if ( cmbUser_IsMarried.Text.Trim() == "未婚" )
- {
- model.User_IsMarried = false;
- }
- else
- {
- model.User_IsMarried = true;
- }
- model.User_Status = cmbUser_Status.Text.Trim();
- model.User_FirstFingerprintID = txtUser_FirstFingerprintID.Text.Trim();
- model.User_SecondaryFingerprintID = txtUser_SecondaryFingerprintID.Text.Trim();
- model.User_Remark = txtUser_Remark.Text.Trim();
- model.User_Positions = "";
- model.User_IsDisable = radUser_IsDisable2.Checked;
- model.User_Ethnic = txtUser_Ethnic.Text.Trim();
- model.User_Hometown = txtUser_Hometown.Text.Trim();
- model.User_ICQAccount = txtUser_ICQAccount.Text.Trim();
- model.User_Email = txtUser_Email.Text.Trim();
- model.User_MicroSignal = txtUser_MicroSignal.Text.Trim();
- model.User_Attachment = "";
- model.User_SubordinateList = "";
- model.User_DocumentPermissions = "";
- model.User_EntryTime = txtUser_EntryTime.DateValue.Trim();
- model.User_ProbationTime = txtUser_ProbationTime.DateValue.Trim();
- if ( string.IsNullOrEmpty( txtUser_TryWages.Text.Trim() ) )
- {
- model.User_TryWages = 0;
- }
- else
- {
- model.User_TryWages = Convert.ToInt32( txtUser_TryWages.Text.Trim() );
- }
- model.User_PositiveTime = txtUser_PositiveTime.DateValue.Trim();
- model.User_ReEntryTime = txtUser_ReEntryTime.DateValue.Trim();
- model.User_Graduated = txtUser_Graduated.Text.Trim();
- model.User_ProfessionalLearning = txtUser_ProfessionalLearning.Text.Trim();
- model.User_Education = txtUser_Education.Text.Trim();
- model.User_DateOfBirth = txtUser_DateOfBirth.DateValue.Trim();
- model.User_InsuranceCategory = txtUser_InsuranceCategory.Text.Trim();
- model.User_EmergencyContactsOne = txtUser_EmergencyContactsOne.Text.Trim();
- model.User_EmergencyContactsTelephoneOne = txtUser_EmergencyContactsTelephoneOne.Text.Trim();
- model.User_EmergencyContactsTwo = txtUser_EmergencyContactsTwo.Text;
- model.User_EmergencyContactsTelephoneTwo = txtUser_EmergencyContactsTelephoneTwo.Text.Trim();
- if ( string.IsNullOrEmpty( txtUser_ContractPeriod.Text.Trim() ) )
- {
- model.User_ContractPeriod = 0;
- }
- else
- {
- model.User_ContractPeriod = Convert.ToInt32( txtUser_ContractPeriod.Text.Trim() );
- }
- model.User_HeadImgePath = "";
- model.User_PositiveID = "";
- model.User_IDNegative = "";
- model.User_LookPhoneQuantity = this.txtUser_LookPhoneQuantity.Text.Trim().Length == 0 ? 0 : Convert.ToInt32( this.txtUser_LookPhoneQuantity.Text );
- if ( chkUser_BirthdayLunar.Checked == false )
- {
- model.User_BirthdayLunar = false;
- }
- else
- {
- model.User_BirthdayLunar = true;
- }
- model.User_PhonePrint = ck_show_in_print.Checked;
- bool IsSaveed = false;
- if ( this.txtUser_Name.Tag == null )
- {
- IsSaveed = userbll.Add( model );
- LYFZ.DAL.DAL_ErpUser.LoadSimpleUserDataTable();
- }
- else
- {
- IsSaveed = userbll.Update( model );
- }
- if ( IsSaveed )
- {
- LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod( delegate ( object obj, BackgroundWorker backgroundWorker )
- {
- backgroundWorker.ReportProgress( 0, "正在连接服务器..." );
- foreach ( DictionaryEntry de in htDataFile )
- {
- try
- {
- string ret = "";
- if ( de.Value.ToString().Trim() == "移除" )
- {
- ret = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TcpClient.DeleteFile( de.Key.ToString().Trim(), backgroundWorker );
- }
- else
- {
- string[] StrArray = de.Key.ToString().Trim().Split( '|' );
- //if (!string.IsNullOrEmpty(StrArray[1].Trim()))
- if ( de.Value.ToString().Trim() == "新增" )
- {
- ret = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TcpClient.UploadFileToServer( LYFZ.BLL.SelectPhotoHandling.GeneratePreviewBitmap( StrArray[0].Trim(), 600, 800 ), System.Drawing.Imaging.ImageFormat.Jpeg, StrArray[1].Trim(), backgroundWorker );
- //ret = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TcpClient.UploadFileToServer(StrArray[1].Trim(), StrArray[0].Trim(), backgroundWorker);
- }
- else
- {
- MemoryStream memoryMS = new MemoryStream();
- byte[] imgbytes = PublicCodeClasses.StringToByte( StrArray[0].Trim() );
- memoryMS.Write( imgbytes, 0, imgbytes.Length );
- ret = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TcpClient.UploadFileToServer( memoryMS, StrArray[1].Trim(), backgroundWorker );
- memoryMS.Close();
- memoryMS.Dispose();
- }
- }
- if ( ret.IndexOf( "成功" ) == -1 )
- {
- MessageBoxCustom.Show( ret, backgroundWorker: backgroundWorker );
- }
- }
- catch ( Exception ex )
- {
- MessageBoxCustom.Show( ex.Message, backgroundWorker: backgroundWorker );
- }
- }
- } );
- MessageBoxCustom.Show( "保存成功!" );
- this.btnReset_Click( this, null );
- this.PublicFunctionRows();
- }
- else
- {
- MessageBoxCustom.Show( "保存失败!" );
- }
- }
- LYFZ.BLL.BLL_UserRightsTable urtBll = new BLL.BLL_UserRightsTable();
- /// <summary>
- /// 删除
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnDelete_Click( object sender, EventArgs e )
- {
- try
- {
- if ( this.txtUser_Name.Tag != null )
- {
- if ( Convert.ToInt32( this.txtUser_Name.Tag ) == 1 || this.txtUser_Account.Text.Trim().ToLower() == "admin" )
- {
- MessageBoxCustom.Show( "此用户不能删除!" ); return;
- }
- if ( MessageBoxCustom.Show( "你确定要删除吗?", "温馨提示", MessageBoxButtons.YesNo ) == DialogResult.Yes )
- {
- if ( userbll.Delete( Convert.ToInt32( dgvData.CurrentRow.Cells["ID"].Value ) ) )
- {
- urtBll.Delete( this.StrUserEmployeeID.Trim(), "Urt_UID" );
- // 写入操作日志
- string logsContent = "删除用户账号:" + txtUser_Account.Text.Trim() + ",用户编号:" + this.StrUserEmployeeID.Trim();
- LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog( LYFZ.EnumPublic.SystemLogsType.删除用户, logsContent, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name );
- string StrDeletePath = "";
- StrDeletePath += this.StrServerPath + "\\" + this.StrUserEmployeeID.Trim() + "_" + PhotoName.Jobs.ToString() + ".jpg";
- StrDeletePath += "|" + this.StrServerPath + "\\" + this.StrUserEmployeeID.Trim() + "_" + PhotoName.Positive.ToString() + ".jpg";
- StrDeletePath += "|" + this.StrServerPath + "\\" + this.StrUserEmployeeID.Trim() + "_" + PhotoName.Reverse.ToString() + ".jpg";
- LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod( delegate ( object obj, BackgroundWorker backgroundWorker )
- {
- backgroundWorker.ReportProgress( 0, "正在连接服务器..." );
- try
- {
- string ret = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TcpClient.DeleteFile( StrDeletePath, backgroundWorker );
- }
- catch
- {
- }
- } );
- MessageBoxCustom.Show( "删除成功!" );
- this.btnReset_Click( this, null );
- this.PublicFunctionRows();
- }
- else
- {
- MessageBoxCustom.Show( "删除失败!" );
- }
- }
- }
- else
- {
- MessageBoxCustom.Show( "请选中你要删除的数据!" );
- }
- }
- catch ( Exception ex ) { MessageBoxCustom.Show( ex.Message ); }
- }
- /// <summary>
- /// 浏览工作照
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnJobsBrowse_Click( object sender, EventArgs e )
- {
- this.SelectPhoto( this.pictJobs, this.lblJobs );
- }
- /// <summary>
- /// 浏览正面
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnPositiveBrowse_Click( object sender, EventArgs e )
- {
- this.SelectPhoto( this.pictPositive, this.lblPositive );
- }
- /// <summary>
- /// 浏览反面
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnReverseBrowse_Click( object sender, EventArgs e )
- {
- this.SelectPhoto( this.pictReverse, this.lblReverse );
- }
- /// <summary>
- /// 删除工作照
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnJobsDelete_Click( object sender, EventArgs e )
- {
- if ( this.pictJobs.Image != null )
- {
- this.pictJobs.Image = null;
- if ( this.lblJobs.ForeColor != this.GetRedColor() )
- {
- htDataFile[this.StrServerPath + "\\" + this.StrUserEmployeeID.Trim() + "_" + PhotoName.Jobs.ToString() + ".jpg"] = "移除";
- this.lblJobs.ForeColor = this.GetNullColor();
- this.lblJobs.Tag = null;
- }
- }
- }
- /// <summary>
- /// 删除正面照
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnPositiveDelete_Click( object sender, EventArgs e )
- {
- if ( this.pictPositive.Image != null )
- {
- this.pictPositive.Image = null;
- if ( this.lblPositive.ForeColor != this.GetRedColor() )
- {
- htDataFile[this.StrServerPath + "\\" + this.StrUserEmployeeID.Trim() + "_" + PhotoName.Positive.ToString() + ".jpg"] = "移除";
- this.lblPositive.ForeColor = this.GetNullColor();
- this.lblPositive.Tag = null;
- }
- }
- }
- /// <summary>
- /// 删除反面照
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnReverseDelete_Click( object sender, EventArgs e )
- {
- if ( this.pictReverse.Image != null )
- {
- this.pictReverse.Image = null;
- if ( this.lblReverse.ForeColor != this.GetRedColor() )
- {
- htDataFile[this.StrServerPath + "\\" + this.StrUserEmployeeID.Trim() + "_" + PhotoName.Reverse.ToString() + ".jpg"] = "移除";
- this.lblReverse.ForeColor = this.GetNullColor();
- this.lblReverse.Tag = null;
- }
- }
- }
- /// <summary>
- /// 点击工作照放大
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void pictJobs_Click( object sender, EventArgs e )
- {
- if ( this.pictJobs.Image != null )
- {
- LYFZ.Software.MainBusiness.InitialSet.Product.FrmProductPic frm = new Product.FrmProductPic();
- frm.FrmImage = this.pictJobs.Image;
- frm.ShowDialog();
- }
- }
- /// <summary>
- /// 点击正面放大
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void pictPositive_Click( object sender, EventArgs e )
- {
- if ( this.pictPositive.Image != null )
- {
- LYFZ.Software.MainBusiness.InitialSet.Product.FrmProductPic frm = new Product.FrmProductPic();
- frm.FrmImage = this.pictPositive.Image;
- frm.ShowDialog();
- }
- }
- /// <summary>
- /// 点击反面照放大
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void pictReverse_Click( object sender, EventArgs e )
- {
- if ( this.pictReverse.Image != null )
- {
- LYFZ.Software.MainBusiness.InitialSet.Product.FrmProductPic frm = new Product.FrmProductPic();
- frm.FrmImage = this.pictReverse.Image;
- frm.ShowDialog();
- }
- }
- /// <summary>
- /// 查询
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnQuery_Click( object sender, EventArgs e )
- {
- this.PublicFunctionRows();
- }
- /// <summary>
- /// 导出
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnExport_Click( object sender, EventArgs e )
- {
- this.dgvData.ExportDataTable();
- }
- /// <summary>
- /// 列表点击事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void dgvData_CellDoubleClick( object sender, DataGridViewCellEventArgs e )
- {
- if ( e.ColumnIndex >= 0 && e.RowIndex >= 0 )
- {
- if ( this.dgvData.CurrentRow != null )
- {
- if ( this.dgvData.CurrentRow.Index >= 0 )
- {
- try
- {
- string CurrentRow_ID = this.dgvData.CurrentRow.Cells["ID"].Value.ToString().Trim();
- System.Threading.ThreadPool.QueueUserWorkItem( delegate
- {
- try
- {
- DataTable tbl = orbll.GetView_Custom("tb_ErpUser", StrWhere: "ID = '" + CurrentRow_ID + "'", ShowColumnName: "User_EmployeeID,User_HeadImgePath,User_PositiveID,User_IDNegative").Tables[0];
- if (tbl.Rows.Count > 0)
- {
- Bitmap retBmp_Jobs = null;
- Bitmap retBmp_Positive = null;
- Bitmap retBmp_Reverse = null;
- #region 工作照
- if (!string.IsNullOrEmpty(tbl.Rows[0]["User_HeadImgePath"].ToString().Trim()))
- {
- this.lblJobs.ForeColor = this.GetRedColor();
- this.lblJobs.Tag = null;
- try { retBmp_Jobs = PublicCodeClasses.GetImage(PublicCodeClasses.StringToByte(tbl.Rows[0]["User_HeadImgePath"].ToString().Trim())); }
- catch
- {
- }
- }
- else
- {
- string retmsg = "";
- string StrServerNewPath = this.StrServerPath + "\\" + tbl.Rows[0]["User_EmployeeID"].ToString().Trim() + "_" + PhotoName.Jobs.ToString() + ".jpg";
- this.lblJobs.ForeColor = this.GetNullColor();
- this.lblJobs.Tag = null;
- try
- {
- retmsg = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TcpClient.DownloadBitmap(ref retBmp_Jobs, StrServerNewPath);
- }
- catch (Exception ex)
- {
- retmsg = ex.Message;
- }
- }
- //try
- //{
- if (!this.IsDisposed&& retBmp_Jobs!=null)
- {
- if (this.InvokeRequired)
- {
- this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate ()
- {
- try
- {
- if (retBmp_Jobs != null)
- {
- if (!this.pictJobs.IsDisposed)
- {
- this.pictJobs.Image = retBmp_Jobs;
- }
- }
- }
- catch
- {
- }
- }));
- }
- }
- //}
- //catch
- //{
- //}
- #endregion
- #region 正面照
- if (!string.IsNullOrEmpty(tbl.Rows[0]["User_PositiveID"].ToString().Trim()))
- {
- this.lblPositive.ForeColor = this.GetRedColor();
- this.lblPositive.Tag = null;
- try { retBmp_Positive = PublicCodeClasses.GetImage(PublicCodeClasses.StringToByte(tbl.Rows[0]["User_PositiveID"].ToString().Trim())); }
- catch
- {
- }
- }
- else
- {
- string retmsg = "";
- string StrServerNewPath = this.StrServerPath + "\\" + tbl.Rows[0]["User_EmployeeID"].ToString().Trim() + "_" + PhotoName.Positive.ToString() + ".jpg";
- this.lblPositive.ForeColor = this.GetNullColor();
- this.lblPositive.Tag = null;
- try
- {
- retmsg = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TcpClient.DownloadBitmap(ref retBmp_Positive, StrServerNewPath);
- }
- catch (Exception ex)
- {
- retmsg = ex.Message;
- }
- }
- //try
- //{
-
- if (this.InvokeRequired&& retBmp_Positive!=null)
- {
- this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate ()
- {
- try
- {
- this.pictPositive.Image = retBmp_Positive;
- }
- catch
- {
- }
- }));
- }
- //}
- //catch { }
- #endregion
- #region 反面照
- if (!string.IsNullOrEmpty(tbl.Rows[0]["User_IDNegative"].ToString().Trim()))
- {
- this.lblReverse.ForeColor = this.GetRedColor();
- this.lblReverse.Tag = null;
- try { retBmp_Reverse = PublicCodeClasses.GetImage(PublicCodeClasses.StringToByte(tbl.Rows[0]["User_IDNegative"].ToString().Trim())); }
- catch
- {
- }
- }
- else
- {
- string retmsg = "";
- string StrServerNewPath = this.StrServerPath + "\\" + tbl.Rows[0]["User_EmployeeID"].ToString().Trim() + "_" + PhotoName.Reverse.ToString() + ".jpg";
- this.lblReverse.ForeColor = this.GetNullColor();
- this.lblReverse.Tag = null;
- try
- {
- retmsg = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TcpClient.DownloadBitmap(ref retBmp_Reverse, StrServerNewPath);
- }
- catch (Exception ex)
- {
- retmsg = ex.Message;
- }
- }
- //try
- //{
- if (this.InvokeRequired&& retBmp_Reverse!=null)
- {
- this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate ()
- {
- try
- {
- this.pictReverse.Image = retBmp_Reverse;
- }
- catch
- {
- }
- }));
- }
- //}
- //catch { }
- #endregion
- }
- }
- catch { }
- } );
- }
- catch
- {
- }
- LYFZ.Model.Model_ErpUser model = userbll.GetModel( Convert.ToInt32( this.dgvData.CurrentRow.Cells["ID"].Value ) );
- this.cmbtreev_DepartmentSet.TagFindText( model.User_Department );
- this.StrUserEmployeeID = model.User_EmployeeID;
- this.txtUser_JobNumber.Text = model.User_JobNumber;
- this.txtUser_Name.Tag = model.ID;
- this.txtUser_Name.Text = model.User_Name;
- this.txtUser_Account.Text = model.User_Account;
- if ( model.User_Account.Trim().ToLower() == "admin" )
- {
- this.txtUser_Account.Enabled = false;
- this.txtUser_Name.Enabled = false;
- }
- else
- {
- this.txtUser_Account.Enabled = true;
- this.txtUser_Name.Enabled = true;
- }
- this.cmbUser_Sex.Text = model.User_Sex;
- this.txtUser_Telephone.Text = model.User_Telephone;
- this.txtUser_NowAddress.Text = model.User_NowAddress;
- this.txtUser_HometownAddress.Text = model.User_HometownAddress;
- this.txtUser_IdentityCardID.Text = model.User_IdentityCardID;
- this.cmbUser_IsMarried.Text = model.User_IsMarried ? "已婚" : "未婚";
- this.cmbUser_Status.Text = model.User_Status;
- if ( model.User_IsDisable )
- {
- this.radUser_IsDisable2.Checked = true;
- }
- else
- {
- this.radUser_IsDisable1.Checked = true;
- }
- this.txtUser_Ethnic.Text = model.User_Ethnic;
- this.txtUser_Hometown.Text = model.User_Hometown;
- this.txtUser_ICQAccount.Text = model.User_ICQAccount;
- this.txtUser_Email.Text = model.User_Email;
- this.txtUser_MicroSignal.Text = model.User_MicroSignal;
- this.txtUser_FirstFingerprintID.Text = model.User_FirstFingerprintID;
- this.txtUser_SecondaryFingerprintID.Text = model.User_SecondaryFingerprintID;
- this.txtUser_Remark.Text = model.User_Remark;
- this.txtUser_EntryTime.DateValue = model.User_EntryTime;
- this.txtUser_ProbationTime.DateValue = model.User_ProbationTime;
- this.txtUser_TryWages.Text = model.User_TryWages.ToString();
- this.txtUser_PositiveTime.DateValue = model.User_PositiveTime;
- this.txtUser_ReEntryTime.DateValue = model.User_ReEntryTime;
- this.txtUser_Graduated.Text = model.User_Graduated;
- this.txtUser_ProfessionalLearning.Text = model.User_ProfessionalLearning;
- this.txtUser_Education.Text = model.User_Education;
- this.txtUser_DateOfBirth.DateValue = model.User_DateOfBirth;
- this.txtUser_InsuranceCategory.Text = model.User_InsuranceCategory;
- this.txtUser_EmergencyContactsOne.Text = model.User_EmergencyContactsOne;
- this.txtUser_EmergencyContactsTelephoneOne.Text = model.User_EmergencyContactsTelephoneOne;
- this.txtUser_EmergencyContactsTwo.Text = model.User_EmergencyContactsTwo;
- this.txtUser_EmergencyContactsTelephoneTwo.Text = model.User_EmergencyContactsTelephoneTwo;
- this.txtUser_ContractPeriod.Text = model.User_ContractPeriod.ToString();
- this.txtUser_LookPhoneQuantity.Text = model.User_LookPhoneQuantity.ToString();
- this.chkUser_BirthdayLunar.Checked = model.User_BirthdayLunar;
- this.ck_show_in_print.Checked = model.User_PhonePrint;
- this.txtUser_Password.Text = "***";
- this.txtUser_Password.ReadOnly = true;
- if ( model.User_OpenID.Trim().Length > 0 )
- {
- this.btnJcBinding.Visible = true;
- }
- else
- {
- this.btnJcBinding.Visible = false;
- }
- }
- }
- }
- }
- /// <summary>
- /// 选择部门查看部门人员
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void cmbtreevDepartmentQuery_ComboBoxTree_NodeMouseClick( object sender, TreeNodeMouseClickEventArgs e )
- {
- this.PublicFunctionRows();
- }
- /// <summary>
- /// 选择分店
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void cmbtreevStoreNameQuery_ComboBoxTree_NodeMouseClick( object sender, TreeNodeMouseClickEventArgs e )
- {
- this.PublicFunctionRows();
- }
- /// <summary>
- ///
- /// </summary>
- void PublicFunctionRows()
- {
- StringBuilder str = new StringBuilder();
- str.Append( " 1 = 1" );
- if ( !string.IsNullOrEmpty( this.txtQuery.Text.Trim() ) )
- {
- str.Append( " and (User_Account like '%" + this.txtQuery.Text.Trim() + "%' or User_Name like '%" + this.txtQuery.Text.Trim() + "%' or User_Telephone like '%" + this.txtQuery.Text.Trim() + "%' or User_NowAddress like '%" + this.txtQuery.Text.Trim() + "%') " );
- }
- if ( !string.IsNullOrEmpty( this.cmbtreevEmployeeStatus.Text.Trim() ) )
- {
- str.Append( " and User_Status = '" + this.cmbtreevEmployeeStatus.Text.Trim() + "'" );
- }
- if ( !string.IsNullOrEmpty( this.cmbtreevDepartmentQuery.Text.Trim() ) )
- {
- str.Append( " and User_Department = " + this.cmbtreevDepartmentQuery.Tag.ToString().Trim() + "" );
- }
- if ( !string.IsNullOrEmpty( this.cmbtreevStoreNameQuery.Text.ToString().Trim() ) )
- {
- str.Append( " and User_DividedShop = '" + this.cmbtreevStoreNameQuery.Tag.ToString().Trim() + "'" );
- }
- if ( !LYFZ.BLL.BLL_ErpUser.IsAdministrator() )
- {
- str.Append( " and tb_ErpUser.ID != '1'" );
- }
- DataTable dt = orbll.GetView_Custom( "tb_ErpUser Left Join tb_ErpDepartment ON User_Department = tb_ErpDepartment.ID", StrWhere: str.ToString(), ShowColumnName: "tb_ErpUser.ID,User_Name AS 姓名,User_Account AS 用户帐号,Dt_Name AS 部门,User_JobNumber AS 工号,User_Sex AS 性别,User_Telephone AS 电话,User_NowAddress AS 地址,User_Status AS 在职状态" ).Tables[0];
- this.dgvData.AutoGenerateColumns = false;
- this.dgvData.DataSource( dt, strHideField: "ID" );
- this.dgvData.ClearSelection();
- this.txtEmployeeCount.Text = "员工数:" + dt.Rows.Count.ToString();
- }
- /// <summary>
- ///
- /// </summary>
- void SelectPhoto( PictureBoxEx pict, LabelEx lbl )
- {
- openFileDialog1.Filter = "图片文件(*.jpg)|*.jpg|图片文件(*.gif)|*.gif|图片文件(*.bmp)|*.bmp|图片文件(*.png)|*.png";
- openFileDialog1.FileName = "";
- if ( openFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK )
- {
- pict.Image = LYFZ.BLL.SelectPhotoHandling.GeneratePreviewBitmap( openFileDialog1.FileName, 600, 800 );
- lbl.Tag = openFileDialog1.FileName;
- lbl.ForeColor = this.GetRedColor();
- }
- }
- /// <summary>
- /// 相片名称
- /// </summary>
- enum PhotoName
- {
- Jobs,
- Positive,
- Reverse
- }
- /// <summary>
- ///
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void txtUser_LookPhoneQuantity_Leave( object sender, EventArgs e )
- {
- if ( this.txtUser_LookPhoneQuantity.Text.Trim().Length > 0 )
- {
- try
- {
- Convert.ToInt32( this.txtUser_LookPhoneQuantity.Text );
- }
- catch
- {
- this.txtUser_LookPhoneQuantity.Text = ""; return;
- }
- if ( Convert.ToInt32( this.txtUser_LookPhoneQuantity.Text ) < -1 )
- {
- this.txtUser_LookPhoneQuantity.Text = "-1"; return;
- }
- }
- }
- /// <summary>
- /// 添加员工可看完整电话数量输入限制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void txtUser_LookPhoneQuantity_KeyPress( object sender, KeyPressEventArgs e )
- {
- //if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
- //{ e.Handled = true; }
- if ( Convert.ToString( e.KeyChar ) == "-" )
- {
- if ( this.txtUser_LookPhoneQuantity.SelectedText.Trim() == this.txtUser_LookPhoneQuantity.Text.Trim() )
- {
- this.txtUser_LookPhoneQuantity.Text = "";
- }
- if ( this.txtUser_LookPhoneQuantity.Text.Trim().IndexOf( '-' ) != -1 )
- {
- e.Handled = true;
- }
- if ( this.txtUser_LookPhoneQuantity.Text.Trim().Length > 0 )
- {
- e.Handled = true;
- }
- }
- else if ( !Char.IsNumber( e.KeyChar ) && !Char.IsControl( e.KeyChar ) )
- {
- e.Handled = true;
- }
- else
- {
- if ( !string.IsNullOrEmpty( this.txtUser_LookPhoneQuantity.Text.Trim() ) )
- {
- char[] chr = this.txtUser_LookPhoneQuantity.Text.Trim().ToArray();
- if ( chr[0].ToString().Trim() == "-" )
- {
- if ( Char.IsNumber( e.KeyChar ) )
- {
- if ( Convert.ToInt32( e.KeyChar.ToString().Trim() ) != 1 )
- {
- e.Handled = true;
- }
- }
- }
- }
- }
- }
- /// <summary>
- /// 试用期工资输入判断
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void txtUser_TryWages_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 ( ((System.Windows.Forms.TextBox)sender).Text.LastIndexOf( '.' ) != -1 )
- {
- e.Handled = true;
- }
- }
- else
- {
- e.Handled = true;
- }
- }
- }
- /// <summary>
- /// QQ输入判断
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void txtUser_ICQAccount_KeyPress( object sender, KeyPressEventArgs e )
- {
- if ( !Char.IsNumber( e.KeyChar ) && !Char.IsControl( e.KeyChar ) )
- {
- e.Handled = true;
- }
- }
- /// <summary>
- /// 电话输入判断
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void txtUser_Telephone_KeyPress( object sender, KeyPressEventArgs e )
- {
- if ( !Char.IsNumber( e.KeyChar ) && !Char.IsControl( e.KeyChar ) )
- {
- e.Handled = true;
- }
- }
- /// <summary>
- /// 紧急联系电话1输入判断
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void txtUser_EmergencyContactsTelephoneOne_KeyPress( object sender, KeyPressEventArgs e )
- {
- if ( !Char.IsNumber( e.KeyChar ) && !Char.IsControl( e.KeyChar ) )
- {
- e.Handled = true;
- }
- }
- /// <summary>
- /// 紧急联系电话2输入判断
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void txtUser_EmergencyContactsTelephoneTwo_KeyPress( object sender, KeyPressEventArgs e )
- {
- if ( !Char.IsNumber( e.KeyChar ) && !Char.IsControl( e.KeyChar ) )
- {
- e.Handled = true;
- }
- }
- /// <summary>
- /// 合同年限输入判断
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void txtUser_ContractPeriod_KeyPress( object sender, KeyPressEventArgs e )
- {
- if ( !Char.IsNumber( e.KeyChar ) && !Char.IsControl( e.KeyChar ) )
- {
- e.Handled = true;
- }
- }
- /// <summary>
- /// 点击获取焦点
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void panelEx6_Click( object sender, EventArgs e )
- {
- this.panelEx6.Focus();
- }
- /// <summary>
- /// 窗体大小发生变化
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void FrmEmployeesSet_Resize( object sender, EventArgs e )
- {
- switch ( this.btnExport.Location.Y )
- {
- case 5: this.flowLayoutPanel1.Height = 37; break;
- case 35: this.flowLayoutPanel1.Height = 67; break;
- }
- }
- /// <summary>
- /// 所有lable点击让层获取焦点
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void tmp_Click( object sender, EventArgs e )
- {
- this.panelEx6.Focus();
- }
- Color GetNullColor()
- {
- return System.Drawing.Color.FromArgb( 119, 113, 114 );
- }
- Color GetRedColor()
- {
- return Color.Red;
- }
- }
- }
|