123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607 |
- 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.ComponentLibrary;
- using System.Collections;
- namespace LYFZ.Software.MainBusiness.InventoryManagement
- {
- public partial class FrmFixedAssetManagement : LYFZ.Software.UI.InventoryManagement.FrmFixedAssetManagement
- {
- LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
- LYFZ.BLL.BLL_ErpFixedAssetManagement fambll = new BLL.BLL_ErpFixedAssetManagement();
- private delegate void UpdateControl();
- public FrmFixedAssetManagement()
- {
- this.Load += FrmFixedAssetManagement_Load;
- this.Shown += FrmFixedAssetManagement_Shown;
- this.btnReset.Click += btnReset_Click;
- this.btnSaveed.Click += btnSaveed_Click;
- this.btnDelete.Click += btnDelete_Click;
- this.btnRemovePhoto.Click += btnRemovePhoto_Click;
- this.btnBrowse.Click += btnBrowse_Click;
- this.btnSet.Click += btnSet_Click;
- this.dgvData.CellDoubleClick += dgvData_CellDoubleClick;
- this.btnClose.Click += btnClose_Click;
- this.pictPhoto.Click += pictPhoto_Click;
- this.txtAssetsQuantity.KeyPress += txtAssetsQuantity_KeyPress;
- this.txtAssetsPrice.KeyPress += txtAssetsPrice_KeyPress;
- this.treevPathPhoto.AfterSelect += treevPathPhoto_AfterSelect;
- this.cmbtreevFixedAssetsClassQuerie.ComboBoxTree_NodeMouseClick += cmbtreevFixedAssetsClassQuerie_ComboBoxTree_NodeMouseClick;
- }
- DataTable dtUser = LYFZ.DAL.DAL_ErpUser.SimpleUserDataTable;
- Hashtable htDataFile = new Hashtable();
- /// <summary>
- /// 员工编号
- /// </summary>
- string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void FrmFixedAssetManagement_Load(object sender, EventArgs e)
- {
- this.dgvData.DataColumns("编号,名称,类别,数量,规格,价格,保管人,购买时间,备注", strHideField: "编号");
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.txtAssetsPerson, IsFirstNodeNull: true, IsShowAdmin: true);
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("AAAAABY", this.cmbtreevFixedAssetsClass);
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("AAAAABY", this.cmbtreevFixedAssetsClassQuerie, IsFirstNodeNull: true, IsFirstNodeName: "全部");
- this.cmbtreevFixedAssetsClassQuerie.TextFindTag("全部");
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void FrmFixedAssetManagement_Shown(object sender, EventArgs e)
- {
- //数码安排版本权限
- bool b = LYFZ.Software.MainBusiness.VersionControl.StaticVersion.UIFunctionVersion(
- VersionControl.VersionFunctionEnum.库存管理固定资产管理);
- if (!b)
- {
- this.Close();
- return;
- }
- this.txtAssetsDate.DateValue = DateTime.Now.ToString("yyyy-MM-dd");
- this.btnSaveed.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.FixedAssetManagementCompetence, CustomAttributes.OperatingAuthority.Add);
- this.btnDelete.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.FixedAssetManagementCompetence, CustomAttributes.OperatingAuthority.Delete);
- this.btnSet.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.FixedAssetManagementCompetence, CustomAttributes.OperatingAuthority.Setting);
- this.PublicFunctionRows();
- }
- /// <summary>
- /// 重置
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnReset_Click(object sender, EventArgs e)
- {
- this.cmbtreevFixedAssetsClass.SetTextAndTag_ValueNull();
- this.txtAssetsName.Text = "";
- this.txtAssetsName.Tag = null;
- this.txtAssetsSize.Text = "";
- this.txtAssetsQuantity.Text = "";
- this.txtAssetsDate.Text = "";
- this.txtAssetsPerson.Text = "";
- this.txtAssetsRemark.Text = "";
- this.txtAssetsPrice.Text = "";
- this.treevPathPhoto.Nodes.Clear();
- this.pictPhoto.BackgroundImage = null;
- this.btnSaveed.Text = " 保 存";
- this.ControlsEnabled(true);
- }
- /// <summary>
- /// 保存
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnSaveed_Click(object sender, EventArgs e)
- {
- if (this.btnSaveed.Text.Trim() == "编 辑")
- {
- this.btnSaveed.Text = " 保 存";
- this.ControlsEnabled(true);
- }
- else
- {
- #region 判断资料不能为空
- if (string.IsNullOrEmpty(txtAssetsName.Text))
- { MessageBoxCustom.Show("名称不能为空!"); return; }
- if (string.IsNullOrEmpty(txtAssetsQuantity.Text))
- { MessageBoxCustom.Show("数量不能为空!"); return; }
- if (string.IsNullOrEmpty(txtAssetsDate.DateValue))
- { MessageBoxCustom.Show("购买日期不能为空!"); return; }
- if (string.IsNullOrEmpty(txtAssetsPrice.Text))
- { MessageBoxCustom.Show("购买价格不能为空!"); return; }
- if (string.IsNullOrEmpty(txtAssetsPerson.Text.Trim()))
- { MessageBoxCustom.Show("保管人不能为空!"); return; }
- if (string.IsNullOrEmpty(this.cmbtreevFixedAssetsClass.Text.Trim()))
- { MessageBoxCustom.Show("类别不能为空!"); return; }
- #endregion
- LYFZ.Model.Model_ErpFixedAssetManagement model = null;
- string strWhere = "";
- if (this.txtAssetsName.Tag != null)
- { strWhere = " And ID != '" + this.txtAssetsName.Tag.ToString() + "'"; }
- DataTable dt = orbll.GetView_Custom("tb_ErpFixedAssetManagement", StrWhere: "Fam_Name = '" + this.txtAssetsName.Text + "'" + strWhere, ShowColumnName: "ID").Tables[0];
- if (dt.Rows.Count > 0)
- {
- MessageBoxCustom.Show("物品名称已经存在,不能重复添加!");
- this.txtAssetsName.Focus();
- return;
- }
- DateTime StrTime = SDateTime.Now;
- string StrPhotoAlbum = "";
- if (this.txtAssetsName.Tag == null)
- {
- model = new Model.Model_ErpFixedAssetManagement();
- model.Fam_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
- model.Fam_CreateDatetime = StrTime;
- model.Fam_CreateName = StrUserID;
- }
- else
- {
- model = fambll.GetModel(Convert.ToInt32(this.txtAssetsName.Tag));
- model.Fam_UpdateDatetime = StrTime;
- model.Fam_UpdateName = StrUserID;
- StrPhotoAlbum = model.Fam_PhotoAlbum;
- }
- model.Fam_Name = txtAssetsName.Text;
- model.Fam_Category = this.cmbtreevFixedAssetsClass.Tag.ToString().Trim();
- model.Fam_Specification = txtAssetsSize.Text;
- model.Fam_Quantity = Convert.ToInt32(txtAssetsQuantity.Text);
- model.Fam_PurchasePrice = Convert.ToDecimal(txtAssetsPrice.Text);
- model.Fam_BuyDatetime = Convert.ToDateTime(txtAssetsDate.DateValue);
- model.Fam_Custodian = this.txtAssetsPerson.Tag.ToString();
- model.Fam_Remark = txtAssetsRemark.Text;
- model.Fam_PhotoAlbum = "";// PublicCodeClasses.ToHexString(PublicCodeClasses.ImageDatabytes(this.pictPhoto));
- string SqlPath = "";
- for (int i = 0; i < this.treevPathPhoto.Nodes.Count; i++)
- {
- string StrPhotoName = "";
- if (!string.IsNullOrEmpty(this.treevPathPhoto.Nodes[i].Tag.ToString().Trim()))
- { StrPhotoName = new System.IO.FileInfo(this.treevPathPhoto.Nodes[i].Tag.ToString().Trim()).Name; }
- else
- { StrPhotoName = new System.IO.FileInfo(this.treevPathPhoto.Nodes[i].Text.Trim()).Name; }
- string StrTreevServerPathFile = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TCP_FixedAsset() + @"\" + model.ID.ToString() + @"\" + StrPhotoName;
- SqlPath += StrTreevServerPathFile + "|";
- if (this.treevPathPhoto.Nodes[i].ForeColor == Color.Red)
- {
- if (!string.IsNullOrEmpty(this.htDataFile.ToString().Trim()))
- { htDataFile[StrTreevServerPathFile + "|" + this.treevPathPhoto.Nodes[i].Tag.ToString().Trim()] = "新增"; }
- else
- { htDataFile[StrTreevServerPathFile + "|"] = "新增"; }
- }
- }
- model.Fam_PhotoPath = SqlPath;
- 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()))
- {
- //ret = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TcpClient.UploadFileToServer(StrArray[1].Trim(), StrArray[0].Trim(), backgroundWorker);
- ret = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TcpClient.UploadFileToServer(LYFZ.BLL.SelectPhotoHandling.GeneratePreviewBitmap(StrArray[1].Trim(), 600, 800), System.Drawing.Imaging.ImageFormat.Jpeg, StrArray[0].Trim(), backgroundWorker);
- }
- else
- {
- //Image newImg = LYFZ.BLL.SelectPhotoHandling.GeneratePreviewBitmap(new Bitmap(Img), 600, 800);
- MemoryStream memoryMS = new MemoryStream();
- byte[] imgbytes = PublicCodeClasses.StringToByte(StrPhotoAlbum);
- memoryMS.Write(imgbytes, 0, imgbytes.Length);
- ret = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TcpClient.UploadFileToServer(memoryMS, StrArray[0].Trim(), backgroundWorker);
- memoryMS.Close();
- memoryMS.Dispose();
- }
- }
- if (ret.IndexOf("成功") == -1)
- { MessageBoxCustom.Show(ret, backgroundWorker: backgroundWorker); }
- }
- catch (Exception ex)
- { MessageBoxCustom.Show(ex.Message, backgroundWorker: backgroundWorker); }
- }
- });
- bool IsSaveed = false;
- if (this.txtAssetsName.Tag == null)
- { IsSaveed = fambll.Add(model); }
- else
- { IsSaveed = fambll.Update(model); }
- if (IsSaveed)
- {
- this.htDataFile.Clear();
- MessageBoxCustom.Show("保存成功!");
- this.btnReset_Click(this, null);
- this.PublicFunctionRows();
- }
- else
- { MessageBoxCustom.Show("保存失败!"); }
- }
- }
- /// <summary>
- /// 删除
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnDelete_Click(object sender, EventArgs e)
- {
- try
- {
- if (this.txtAssetsName.Tag != null)
- {
- if (MessageBoxCustom.Show("删除后上传的图片也会一起删除,你确定要删除吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
- {
- if (fambll.Delete(Convert.ToInt32(this.dgvData.CurrentRow.Cells["编号"].Value)))
- {
- string logsContent = "删除固定资料名称:" + this.dgvData.CurrentRow.Cells["名称"].Value.ToString() + " 价格为:" + this.dgvData.CurrentRow.Cells["价格"].Value.ToString();
- LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog(LYFZ.EnumPublic.SystemLogsType.删除固定资产, logsContent, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name);
- List<string> StrPathList = new List<string>();
- for (int i = 0; i < this.treevPathPhoto.Nodes.Count; i++)
- {
- if (this.treevPathPhoto.Nodes[i].ForeColor == Color.Blue)
- { StrPathList.Add(this.treevPathPhoto.Nodes[i].Tag.ToString().Trim()); }
- }
- LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
- {
- backgroundWorker.ReportProgress(0, "正在连接服务器...");
- try
- {
- for (int i = 0; i < StrPathList.Count; i++)
- {
- if (!string.IsNullOrEmpty(StrPathList[i].Trim()))
- {
- string ret = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TcpClient.DeleteFile(StrPathList[i].Trim(), backgroundWorker);
- if (ret.IndexOf("成功") == -1)
- { MessageBoxCustom.Show(ret, backgroundWorker: backgroundWorker); }
- }
- }
- }
- catch (Exception ex)
- { MessageBoxCustom.Show(ex.Message, backgroundWorker: backgroundWorker); }
- });
- this.btnReset_Click(this, null);
- this.ControlsEnabled(true);
- this.PublicFunctionRows();
- }
- }
- }
- else if (!string.IsNullOrEmpty(this.txtAssetsName.Text.Trim()))
- { MessageBoxCustom.Show(this.txtAssetsName.Text.Trim() + ",未保存!"); }
- }
- catch (Exception ex)
- { MessageBoxCustom.Show(ex.Message); }
- }
- /// <summary>
- /// 移除相片
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnRemovePhoto_Click(object sender, EventArgs e)
- {
- if (treevPathPhoto.Nodes.Count > 0)
- {
- if (this.treevPathPhoto.SelectedNode != null)
- {
- if (this.treevPathPhoto.SelectedNode.ForeColor == Color.Red)
- {
- if (MessageBoxCustom.Show("此图片已上传至服务,删除后则不能恢复回来,你确定要删除吗?", "温馨提示!", MessageBoxButtons.YesNo) == DialogResult.No)
- { return; }
- this.htDataFile[this.treevPathPhoto.SelectedNode.Tag.ToString().Trim()] = "移除";
- }
- this.treevPathPhoto.Nodes.Remove(this.treevPathPhoto.SelectedNode);
- }
- else
- { MessageBoxCustom.Show("请选择你要移除的图片!"); }
- }
- }
- /// <summary>
- /// 浏览
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnBrowse_Click(object sender, EventArgs e)
- {
- openFileDialog1.Filter = "图片文件(*.jpg)|*.jpg|图片文件(*.gif)|*.gif|图片文件(*.bmp)|*.bmp|图片文件(*.png)|*.png";
- openFileDialog1.FileName = "";
- openFileDialog1.Multiselect = true;
- if (openFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
- {
- TreeNode root = null;
- string[] StrArray = openFileDialog1.FileNames;
- if (StrArray.Length > 5)
- { MessageBoxCustom.Show("每个景点上传相片最多不能超过10张"); return; }
- if (StrArray.Length + this.treevPathPhoto.Nodes.Count > 5)
- { MessageBoxCustom.Show("每个景点上传相片最多不能超过10张"); return; }
- for (int i = 0; i < StrArray.Length; i++)
- {
- root = new TreeNode();
- root.Text = StrArray[i].Trim();
- root.Tag = StrArray[i].Trim();
- root.ForeColor = Color.Red;
- this.treevPathPhoto.Nodes.Add(root);
- }
- if (StrArray.Length == 1)
- {
- try
- {
- System.Threading.ThreadPool.QueueUserWorkItem(delegate
- {
- this.pictPhoto.BackgroundImage = LYFZ.BLL.SelectPhotoHandling.GeneratePreviewBitmap(StrArray[0].Trim(), 600, 800);
- });
- }
- catch
- { }
- }
- }
- }
- /// <summary>
- /// 设置
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnSet_Click(object sender, EventArgs e)
- {
- LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
- frm.TypeName = "AAAAABY";
- frm.Version = "Version";
- if (frm.ShowDialog() == DialogResult.OK)
- {
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("AAAAABY", this.cmbtreevFixedAssetsClass);
- string StrTag = "";
- if (this.cmbtreevFixedAssetsClassQuerie.Tag != null)
- { StrTag = this.cmbtreevFixedAssetsClassQuerie.Tag.ToString().Trim(); }
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("AAAAABY", this.cmbtreevFixedAssetsClassQuerie, IsFirstNodeNull: true, IsFirstNodeName: "全部");
- if (!string.IsNullOrEmpty(StrTag))
- { this.cmbtreevFixedAssetsClassQuerie.TagFindText(StrTag); }
- }
- }
- Image Img = null;
- /// <summary>
- /// 列表双击事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void dgvData_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
- {
- if (e.ColumnIndex >= 0 && e.RowIndex >= 0)
- {
- DataTable dt = fambll.GetList("ID = " + Convert.ToInt32(this.dgvData.CurrentRow.Cells["编号"].Value) + "").Tables[0];
- if (dt.Rows.Count > 0)
- {
- this.txtAssetsName.Tag = this.dgvData.CurrentRow.Cells["编号"].Value.ToString().Trim();
- this.txtAssetsName.Text = dt.Rows[0]["Fam_Name"].ToString();
- if (!string.IsNullOrEmpty(dt.Rows[0]["Fam_Category"].ToString().Trim()))
- { this.cmbtreevFixedAssetsClass.TagFindText(dt.Rows[0]["Fam_Category"].ToString().Trim()); }
- else
- { this.cmbtreevFixedAssetsClass.SetTextAndTag_ValueNull(); }
- this.txtAssetsQuantity.Text = dt.Rows[0]["Fam_Quantity"].ToString();
- this.txtAssetsSize.Text = dt.Rows[0]["Fam_Specification"].ToString();
- this.txtAssetsDate.Text = dt.Rows[0]["Fam_BuyDatetime"].ToString();
- this.txtAssetsPrice.Text = dt.Rows[0]["Fam_PurchasePrice"].ToString();
- this.txtAssetsRemark.Text = dt.Rows[0]["Fam_Remark"].ToString();
- //this.txtAssetsPerson.TagFindText(dt.Rows[0]["Fam_Custodian"].ToString());
- DataRow dtRow = this.dtUser.Rows.Find(dt.Rows[0]["Fam_Custodian"].ToString().Trim());
- if (dtRow != null)
- { this.txtAssetsPerson.TagFindText(dt.Rows[0]["Fam_Custodian"].ToString()); }
- else
- { this.txtAssetsPerson.TextFindTag(dt.Rows[0]["Fam_Custodian"].ToString()); }
- string[] StrArray = dt.Rows[0]["Fam_PhotoPath"].ToString().Trim().Split('|');
- this.treevPathPhoto.Nodes.Clear();
- TreeNode root = null;
- for (int i = 0; i < StrArray.Length; i++)
- {
- if (!string.IsNullOrEmpty(StrArray[i].Trim()))
- {
- root = new TreeNode();
- root.Text = StrArray[i].Trim();
- root.Tag = StrArray[i].Trim();
- root.ForeColor = Color.Blue;
- this.treevPathPhoto.Nodes.Add(root);
- }
- }
- if (!string.IsNullOrEmpty(dt.Rows[0]["Fam_PhotoAlbum"].ToString()))
- {
- root = new TreeNode();
- root.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TCP_FixedAsset() + "\\" + this.txtAssetsName.Text.Trim() + ".jpg";
- root.Tag = "";
- root.ForeColor = Color.Red;
- this.treevPathPhoto.Nodes.Add(root);
- pictPhoto.BeginInvoke((Action)delegate()
- {
- this.Img = PublicCodeClasses.GetImage(PublicCodeClasses.StringToByte(dt.Rows[0]["Fam_PhotoAlbum"].ToString()));
- });
- }
- else
- { this.Img = null; }
- this.pictPhoto.BackgroundImage = null;
- this.btnSaveed.Text = " 编 辑";
- this.ControlsEnabled(false);
- }
- }
- }
- /// <summary>
- /// 关闭
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnClose_Click(object sender, EventArgs e)
- { this.Close(); }
- /// <summary>
- /// 图片双击查看
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void pictPhoto_Click(object sender, EventArgs e)
- {
- if (this.pictPhoto.BackgroundImage != null)
- {
- LYFZ.Software.MainBusiness.InitialSet.Product.FrmProductPic frm = new InitialSet.Product.FrmProductPic();
- frm.FrmImage = this.pictPhoto.BackgroundImage;
- frm.ShowDialog();
- }
- }
- /// <summary>
- /// 数量限制输入
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void txtAssetsQuantity_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 txtAssetsPrice_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 (((TextBox)sender).Text.LastIndexOf('.') != -1)
- { e.Handled = true; }
- }
- else
- { e.Handled = true; }
- }
- }
- /// <summary>
- /// 路径列表点击事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void treevPathPhoto_AfterSelect(object sender, TreeViewEventArgs e)
- {
- if (this.treevPathPhoto.Nodes.Count > 0)
- {
- Image ViewImg = null;
- if (this.treevPathPhoto.SelectedNode.ForeColor == Color.Red)
- {
- if (!string.IsNullOrEmpty(this.treevPathPhoto.SelectedNode.Tag.ToString().Trim()))
- {
- try
- {
- string Strtag = this.treevPathPhoto.SelectedNode.Tag.ToString().Trim();
- LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, System.ComponentModel.BackgroundWorker backgroundWorker)
- {
- ViewImg = LYFZ.BLL.SelectPhotoHandling.GeneratePreviewBitmap(Strtag, 600, 800);
- });
- }
- catch
- { }
- }
- else
- { ViewImg = this.Img; }
- }
- else
- {
- try
- {
- string Strtag = this.treevPathPhoto.SelectedNode.Tag.ToString().Trim();
- LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, System.ComponentModel.BackgroundWorker backgroundWorker)
- {
- Bitmap bmp = null;
- string retmsg = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TcpClient.DownloadBitmap(ref bmp, Strtag);
- ViewImg = bmp;
- });
- }
- catch
- { }
- }
- this.pictPhoto.BackgroundImage = ViewImg;
- }
- }
- /// <summary>
- /// 固定资产选择查询
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void cmbtreevFixedAssetsClassQuerie_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
- {
- this.cmbtreevFixedAssetsClassQuerie.TextFindTag(this.cmbtreevFixedAssetsClassQuerie.Text.Trim());
- this.PublicFunctionRows();
- }
- /// <summary>
- /// 查询数据
- /// </summary>
- void PublicFunctionRows()
- {
- this.dgvData.Rows.Clear();
- string StrWhere = "";
- if (this.cmbtreevFixedAssetsClassQuerie.Text.Trim() != "全部" && this.cmbtreevFixedAssetsClassQuerie.Text.Trim() != "")
- {
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetTreeViewQueryCondition(ref StrWhere, this.cmbtreevFixedAssetsClassQuerie, StrFieldName: "Fam_Category", ConnectWord: "");
- }
- DataTable tbl = orbll.GetView_Custom("tb_ErpFixedAssetManagement Left Join tb_ErpSystemCategory on Sc_ClassCode = Fam_Category", StrWhere: StrWhere, ShowColumnName: "tb_ErpFixedAssetManagement.ID,Fam_Name,Sc_ClassName,Fam_Quantity,Fam_Specification,Fam_PurchasePrice,Fam_Custodian,dbo.fn_CheckDateTime(Fam_BuyDatetime) AS Fam_BuyDatetime,Fam_Remark", filedOrder: "ID DESC").Tables[0];
- DataGridViewRow dgvr = null;
- DataGridViewCell cell = null;
- decimal decStatistic = 0;
- for (int i = 0; i < tbl.Rows.Count; i++)
- {
- decStatistic += Convert.ToDecimal(tbl.Rows[i]["Fam_PurchasePrice"]) * Convert.ToDecimal(tbl.Rows[i]["Fam_Quantity"]);
- dgvr = new DataGridViewRow();
- for (int j = 0; j < tbl.Columns.Count; j++)
- {
- if (tbl.Columns[j].ColumnName.Trim() == "Fam_Custodian")
- {
- cell = new DataGridViewTextBoxCell();
- DataRow dtRow = this.dtUser.Rows.Find(tbl.Rows[i][j].ToString().Trim());
- if (dtRow != null)
- { cell.Value = dtRow["User_Name"].ToString(); }
- else
- { cell.Value = tbl.Rows[i][j].ToString().Trim(); }
- dgvr.Cells.Add(cell);
- }
- else
- {
- cell = new DataGridViewTextBoxCell();
- cell.Value = tbl.Rows[i][j].ToString().Trim();
- dgvr.Cells.Add(cell);
- }
- }
- this.dgvData.Rows.Add(dgvr);
- }
- this.lblStatistic.Text = "资产统计:" + decStatistic;
- }
- /// <summary>
- ///
- /// </summary>
- /// <param name="IsEnabled"></param>
- void ControlsEnabled(bool IsEnabled)
- {
- this.cmbtreevFixedAssetsClass.Enabled = IsEnabled;
- this.txtAssetsName.Enabled = IsEnabled;
- this.txtAssetsDate.Enabled = IsEnabled;
- this.txtAssetsQuantity.Enabled = IsEnabled;
- this.txtAssetsPrice.Enabled = IsEnabled;
- this.txtAssetsSize.Enabled = IsEnabled;
- this.txtAssetsPerson.Enabled = IsEnabled;
- this.txtAssetsRemark.Enabled = IsEnabled;
- this.btnRemovePhoto.Enabled = IsEnabled;
- this.btnBrowse.Enabled = IsEnabled;
- this.btnDelete.Enabled = IsEnabled;
- }
- }
- }
|