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 = "";
///
/// 窗体加载事件
///
///
///
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 );
}
}
///
/// 窗体加载事件
///
///
///
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();
}
///
/// 部门设置
///
///
///
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 );
}
}
///
/// 解除绑定
///
///
///
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( "未绑定公众号,无需解除." );
}
}
///
/// 重置密码
///
///
///
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( "重置失败" );
}
}
}
}
///
/// 清空重置
///
///
///
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 );
}
///
/// 保存
///
///
///
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();
///
/// 删除
///
///
///
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 ); }
}
///
/// 浏览工作照
///
///
///
void btnJobsBrowse_Click( object sender, EventArgs e )
{
this.SelectPhoto( this.pictJobs, this.lblJobs );
}
///
/// 浏览正面
///
///
///
void btnPositiveBrowse_Click( object sender, EventArgs e )
{
this.SelectPhoto( this.pictPositive, this.lblPositive );
}
///
/// 浏览反面
///
///
///
void btnReverseBrowse_Click( object sender, EventArgs e )
{
this.SelectPhoto( this.pictReverse, this.lblReverse );
}
///
/// 删除工作照
///
///
///
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;
}
}
}
///
/// 删除正面照
///
///
///
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;
}
}
}
///
/// 删除反面照
///
///
///
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;
}
}
}
///
/// 点击工作照放大
///
///
///
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();
}
}
///
/// 点击正面放大
///
///
///
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();
}
}
///
/// 点击反面照放大
///
///
///
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();
}
}
///
/// 查询
///
///
///
void btnQuery_Click( object sender, EventArgs e )
{
this.PublicFunctionRows();
}
///
/// 导出
///
///
///
void btnExport_Click( object sender, EventArgs e )
{
this.dgvData.ExportDataTable();
}
///
/// 列表点击事件
///
///
///
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;
}
}
}
}
}
///
/// 选择部门查看部门人员
///
///
///
void cmbtreevDepartmentQuery_ComboBoxTree_NodeMouseClick( object sender, TreeNodeMouseClickEventArgs e )
{
this.PublicFunctionRows();
}
///
/// 选择分店
///
///
///
void cmbtreevStoreNameQuery_ComboBoxTree_NodeMouseClick( object sender, TreeNodeMouseClickEventArgs e )
{
this.PublicFunctionRows();
}
///
///
///
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();
}
///
///
///
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();
}
}
///
/// 相片名称
///
enum PhotoName
{
Jobs,
Positive,
Reverse
}
///
///
///
///
///
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;
}
}
}
///
/// 添加员工可看完整电话数量输入限制
///
///
///
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;
}
}
}
}
}
}
///
/// 试用期工资输入判断
///
///
///
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;
}
}
}
///
/// QQ输入判断
///
///
///
void txtUser_ICQAccount_KeyPress( object sender, KeyPressEventArgs e )
{
if ( !Char.IsNumber( e.KeyChar ) && !Char.IsControl( e.KeyChar ) )
{
e.Handled = true;
}
}
///
/// 电话输入判断
///
///
///
void txtUser_Telephone_KeyPress( object sender, KeyPressEventArgs e )
{
if ( !Char.IsNumber( e.KeyChar ) && !Char.IsControl( e.KeyChar ) )
{
e.Handled = true;
}
}
///
/// 紧急联系电话1输入判断
///
///
///
void txtUser_EmergencyContactsTelephoneOne_KeyPress( object sender, KeyPressEventArgs e )
{
if ( !Char.IsNumber( e.KeyChar ) && !Char.IsControl( e.KeyChar ) )
{
e.Handled = true;
}
}
///
/// 紧急联系电话2输入判断
///
///
///
void txtUser_EmergencyContactsTelephoneTwo_KeyPress( object sender, KeyPressEventArgs e )
{
if ( !Char.IsNumber( e.KeyChar ) && !Char.IsControl( e.KeyChar ) )
{
e.Handled = true;
}
}
///
/// 合同年限输入判断
///
///
///
void txtUser_ContractPeriod_KeyPress( object sender, KeyPressEventArgs e )
{
if ( !Char.IsNumber( e.KeyChar ) && !Char.IsControl( e.KeyChar ) )
{
e.Handled = true;
}
}
///
/// 点击获取焦点
///
///
///
void panelEx6_Click( object sender, EventArgs e )
{
this.panelEx6.Focus();
}
///
/// 窗体大小发生变化
///
///
///
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;
}
}
///
/// 所有lable点击让层获取焦点
///
///
///
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;
}
}
}