FrmFixedAssetManagement.cs 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using System.IO;
  10. using LYFZ.Software.MainBusiness.DoorCityProcess;
  11. using LYFZ.ComponentLibrary;
  12. using System.Collections;
  13. namespace LYFZ.Software.MainBusiness.InventoryManagement
  14. {
  15. public partial class FrmFixedAssetManagement : LYFZ.Software.UI.InventoryManagement.FrmFixedAssetManagement
  16. {
  17. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  18. LYFZ.BLL.BLL_ErpFixedAssetManagement fambll = new BLL.BLL_ErpFixedAssetManagement();
  19. private delegate void UpdateControl();
  20. public FrmFixedAssetManagement()
  21. {
  22. this.Load += FrmFixedAssetManagement_Load;
  23. this.Shown += FrmFixedAssetManagement_Shown;
  24. this.btnReset.Click += btnReset_Click;
  25. this.btnSaveed.Click += btnSaveed_Click;
  26. this.btnDelete.Click += btnDelete_Click;
  27. this.btnRemovePhoto.Click += btnRemovePhoto_Click;
  28. this.btnBrowse.Click += btnBrowse_Click;
  29. this.btnSet.Click += btnSet_Click;
  30. this.dgvData.CellDoubleClick += dgvData_CellDoubleClick;
  31. this.btnClose.Click += btnClose_Click;
  32. this.pictPhoto.Click += pictPhoto_Click;
  33. this.txtAssetsQuantity.KeyPress += txtAssetsQuantity_KeyPress;
  34. this.txtAssetsPrice.KeyPress += txtAssetsPrice_KeyPress;
  35. this.treevPathPhoto.AfterSelect += treevPathPhoto_AfterSelect;
  36. this.cmbtreevFixedAssetsClassQuerie.ComboBoxTree_NodeMouseClick += cmbtreevFixedAssetsClassQuerie_ComboBoxTree_NodeMouseClick;
  37. }
  38. DataTable dtUser = LYFZ.DAL.DAL_ErpUser.SimpleUserDataTable;
  39. Hashtable htDataFile = new Hashtable();
  40. /// <summary>
  41. /// 员工编号
  42. /// </summary>
  43. string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  44. /// <summary>
  45. /// 窗体加载事件
  46. /// </summary>
  47. /// <param name="sender"></param>
  48. /// <param name="e"></param>
  49. void FrmFixedAssetManagement_Load(object sender, EventArgs e)
  50. {
  51. this.dgvData.DataColumns("编号,名称,类别,数量,规格,价格,保管人,购买时间,备注", strHideField: "编号");
  52. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.txtAssetsPerson, IsFirstNodeNull: true, IsShowAdmin: true);
  53. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("AAAAABY", this.cmbtreevFixedAssetsClass);
  54. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("AAAAABY", this.cmbtreevFixedAssetsClassQuerie, IsFirstNodeNull: true, IsFirstNodeName: "全部");
  55. this.cmbtreevFixedAssetsClassQuerie.TextFindTag("全部");
  56. }
  57. /// <summary>
  58. /// 窗体加载事件
  59. /// </summary>
  60. /// <param name="sender"></param>
  61. /// <param name="e"></param>
  62. void FrmFixedAssetManagement_Shown(object sender, EventArgs e)
  63. {
  64. //数码安排版本权限
  65. bool b = LYFZ.Software.MainBusiness.VersionControl.StaticVersion.UIFunctionVersion(
  66. VersionControl.VersionFunctionEnum.库存管理固定资产管理);
  67. if (!b)
  68. {
  69. this.Close();
  70. return;
  71. }
  72. this.txtAssetsDate.DateValue = DateTime.Now.ToString("yyyy-MM-dd");
  73. this.btnSaveed.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.FixedAssetManagementCompetence, CustomAttributes.OperatingAuthority.Add);
  74. this.btnDelete.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.FixedAssetManagementCompetence, CustomAttributes.OperatingAuthority.Delete);
  75. this.btnSet.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.FixedAssetManagementCompetence, CustomAttributes.OperatingAuthority.Setting);
  76. this.PublicFunctionRows();
  77. }
  78. /// <summary>
  79. /// 重置
  80. /// </summary>
  81. /// <param name="sender"></param>
  82. /// <param name="e"></param>
  83. void btnReset_Click(object sender, EventArgs e)
  84. {
  85. this.cmbtreevFixedAssetsClass.SetTextAndTag_ValueNull();
  86. this.txtAssetsName.Text = "";
  87. this.txtAssetsName.Tag = null;
  88. this.txtAssetsSize.Text = "";
  89. this.txtAssetsQuantity.Text = "";
  90. this.txtAssetsDate.Text = "";
  91. this.txtAssetsPerson.Text = "";
  92. this.txtAssetsRemark.Text = "";
  93. this.txtAssetsPrice.Text = "";
  94. this.treevPathPhoto.Nodes.Clear();
  95. this.pictPhoto.BackgroundImage = null;
  96. this.btnSaveed.Text = " 保 存";
  97. this.ControlsEnabled(true);
  98. }
  99. /// <summary>
  100. /// 保存
  101. /// </summary>
  102. /// <param name="sender"></param>
  103. /// <param name="e"></param>
  104. void btnSaveed_Click(object sender, EventArgs e)
  105. {
  106. if (this.btnSaveed.Text.Trim() == "编 辑")
  107. {
  108. this.btnSaveed.Text = " 保 存";
  109. this.ControlsEnabled(true);
  110. }
  111. else
  112. {
  113. #region 判断资料不能为空
  114. if (string.IsNullOrEmpty(txtAssetsName.Text))
  115. { MessageBoxCustom.Show("名称不能为空!"); return; }
  116. if (string.IsNullOrEmpty(txtAssetsQuantity.Text))
  117. { MessageBoxCustom.Show("数量不能为空!"); return; }
  118. if (string.IsNullOrEmpty(txtAssetsDate.DateValue))
  119. { MessageBoxCustom.Show("购买日期不能为空!"); return; }
  120. if (string.IsNullOrEmpty(txtAssetsPrice.Text))
  121. { MessageBoxCustom.Show("购买价格不能为空!"); return; }
  122. if (string.IsNullOrEmpty(txtAssetsPerson.Text.Trim()))
  123. { MessageBoxCustom.Show("保管人不能为空!"); return; }
  124. if (string.IsNullOrEmpty(this.cmbtreevFixedAssetsClass.Text.Trim()))
  125. { MessageBoxCustom.Show("类别不能为空!"); return; }
  126. #endregion
  127. LYFZ.Model.Model_ErpFixedAssetManagement model = null;
  128. string strWhere = "";
  129. if (this.txtAssetsName.Tag != null)
  130. { strWhere = " And ID != '" + this.txtAssetsName.Tag.ToString() + "'"; }
  131. DataTable dt = orbll.GetView_Custom("tb_ErpFixedAssetManagement", StrWhere: "Fam_Name = '" + this.txtAssetsName.Text + "'" + strWhere, ShowColumnName: "ID").Tables[0];
  132. if (dt.Rows.Count > 0)
  133. {
  134. MessageBoxCustom.Show("物品名称已经存在,不能重复添加!");
  135. this.txtAssetsName.Focus();
  136. return;
  137. }
  138. DateTime StrTime = SDateTime.Now;
  139. string StrPhotoAlbum = "";
  140. if (this.txtAssetsName.Tag == null)
  141. {
  142. model = new Model.Model_ErpFixedAssetManagement();
  143. model.Fam_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  144. model.Fam_CreateDatetime = StrTime;
  145. model.Fam_CreateName = StrUserID;
  146. }
  147. else
  148. {
  149. model = fambll.GetModel(Convert.ToInt32(this.txtAssetsName.Tag));
  150. model.Fam_UpdateDatetime = StrTime;
  151. model.Fam_UpdateName = StrUserID;
  152. StrPhotoAlbum = model.Fam_PhotoAlbum;
  153. }
  154. model.Fam_Name = txtAssetsName.Text;
  155. model.Fam_Category = this.cmbtreevFixedAssetsClass.Tag.ToString().Trim();
  156. model.Fam_Specification = txtAssetsSize.Text;
  157. model.Fam_Quantity = Convert.ToInt32(txtAssetsQuantity.Text);
  158. model.Fam_PurchasePrice = Convert.ToDecimal(txtAssetsPrice.Text);
  159. model.Fam_BuyDatetime = Convert.ToDateTime(txtAssetsDate.DateValue);
  160. model.Fam_Custodian = this.txtAssetsPerson.Tag.ToString();
  161. model.Fam_Remark = txtAssetsRemark.Text;
  162. model.Fam_PhotoAlbum = "";// PublicCodeClasses.ToHexString(PublicCodeClasses.ImageDatabytes(this.pictPhoto));
  163. string SqlPath = "";
  164. for (int i = 0; i < this.treevPathPhoto.Nodes.Count; i++)
  165. {
  166. string StrPhotoName = "";
  167. if (!string.IsNullOrEmpty(this.treevPathPhoto.Nodes[i].Tag.ToString().Trim()))
  168. { StrPhotoName = new System.IO.FileInfo(this.treevPathPhoto.Nodes[i].Tag.ToString().Trim()).Name; }
  169. else
  170. { StrPhotoName = new System.IO.FileInfo(this.treevPathPhoto.Nodes[i].Text.Trim()).Name; }
  171. string StrTreevServerPathFile = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TCP_FixedAsset() + @"\" + model.ID.ToString() + @"\" + StrPhotoName;
  172. SqlPath += StrTreevServerPathFile + "|";
  173. if (this.treevPathPhoto.Nodes[i].ForeColor == Color.Red)
  174. {
  175. if (!string.IsNullOrEmpty(this.htDataFile.ToString().Trim()))
  176. { htDataFile[StrTreevServerPathFile + "|" + this.treevPathPhoto.Nodes[i].Tag.ToString().Trim()] = "新增"; }
  177. else
  178. { htDataFile[StrTreevServerPathFile + "|"] = "新增"; }
  179. }
  180. }
  181. model.Fam_PhotoPath = SqlPath;
  182. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  183. {
  184. backgroundWorker.ReportProgress(0, "正在连接服务器...");
  185. foreach (DictionaryEntry de in htDataFile)
  186. {
  187. try
  188. {
  189. string ret = "";
  190. if (de.Value.ToString().Trim() == "移除")
  191. { ret = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TcpClient.DeleteFile(de.Key.ToString().Trim(), backgroundWorker); }
  192. else
  193. {
  194. string[] StrArray = de.Key.ToString().Trim().Split('|');
  195. if (!string.IsNullOrEmpty(StrArray[1].Trim()))
  196. {
  197. //ret = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TcpClient.UploadFileToServer(StrArray[1].Trim(), StrArray[0].Trim(), backgroundWorker);
  198. 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);
  199. }
  200. else
  201. {
  202. //Image newImg = LYFZ.BLL.SelectPhotoHandling.GeneratePreviewBitmap(new Bitmap(Img), 600, 800);
  203. MemoryStream memoryMS = new MemoryStream();
  204. byte[] imgbytes = PublicCodeClasses.StringToByte(StrPhotoAlbum);
  205. memoryMS.Write(imgbytes, 0, imgbytes.Length);
  206. ret = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TcpClient.UploadFileToServer(memoryMS, StrArray[0].Trim(), backgroundWorker);
  207. memoryMS.Close();
  208. memoryMS.Dispose();
  209. }
  210. }
  211. if (ret.IndexOf("成功") == -1)
  212. { MessageBoxCustom.Show(ret, backgroundWorker: backgroundWorker); }
  213. }
  214. catch (Exception ex)
  215. { MessageBoxCustom.Show(ex.Message, backgroundWorker: backgroundWorker); }
  216. }
  217. });
  218. bool IsSaveed = false;
  219. if (this.txtAssetsName.Tag == null)
  220. { IsSaveed = fambll.Add(model); }
  221. else
  222. { IsSaveed = fambll.Update(model); }
  223. if (IsSaveed)
  224. {
  225. this.htDataFile.Clear();
  226. MessageBoxCustom.Show("保存成功!");
  227. this.btnReset_Click(this, null);
  228. this.PublicFunctionRows();
  229. }
  230. else
  231. { MessageBoxCustom.Show("保存失败!"); }
  232. }
  233. }
  234. /// <summary>
  235. /// 删除
  236. /// </summary>
  237. /// <param name="sender"></param>
  238. /// <param name="e"></param>
  239. void btnDelete_Click(object sender, EventArgs e)
  240. {
  241. try
  242. {
  243. if (this.txtAssetsName.Tag != null)
  244. {
  245. if (MessageBoxCustom.Show("删除后上传的图片也会一起删除,你确定要删除吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  246. {
  247. if (fambll.Delete(Convert.ToInt32(this.dgvData.CurrentRow.Cells["编号"].Value)))
  248. {
  249. string logsContent = "删除固定资料名称:" + this.dgvData.CurrentRow.Cells["名称"].Value.ToString() + " 价格为:" + this.dgvData.CurrentRow.Cells["价格"].Value.ToString();
  250. LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog(LYFZ.EnumPublic.SystemLogsType.删除固定资产, logsContent, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name);
  251. List<string> StrPathList = new List<string>();
  252. for (int i = 0; i < this.treevPathPhoto.Nodes.Count; i++)
  253. {
  254. if (this.treevPathPhoto.Nodes[i].ForeColor == Color.Blue)
  255. { StrPathList.Add(this.treevPathPhoto.Nodes[i].Tag.ToString().Trim()); }
  256. }
  257. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  258. {
  259. backgroundWorker.ReportProgress(0, "正在连接服务器...");
  260. try
  261. {
  262. for (int i = 0; i < StrPathList.Count; i++)
  263. {
  264. if (!string.IsNullOrEmpty(StrPathList[i].Trim()))
  265. {
  266. string ret = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TcpClient.DeleteFile(StrPathList[i].Trim(), backgroundWorker);
  267. if (ret.IndexOf("成功") == -1)
  268. { MessageBoxCustom.Show(ret, backgroundWorker: backgroundWorker); }
  269. }
  270. }
  271. }
  272. catch (Exception ex)
  273. { MessageBoxCustom.Show(ex.Message, backgroundWorker: backgroundWorker); }
  274. });
  275. this.btnReset_Click(this, null);
  276. this.ControlsEnabled(true);
  277. this.PublicFunctionRows();
  278. }
  279. }
  280. }
  281. else if (!string.IsNullOrEmpty(this.txtAssetsName.Text.Trim()))
  282. { MessageBoxCustom.Show(this.txtAssetsName.Text.Trim() + ",未保存!"); }
  283. }
  284. catch (Exception ex)
  285. { MessageBoxCustom.Show(ex.Message); }
  286. }
  287. /// <summary>
  288. /// 移除相片
  289. /// </summary>
  290. /// <param name="sender"></param>
  291. /// <param name="e"></param>
  292. void btnRemovePhoto_Click(object sender, EventArgs e)
  293. {
  294. if (treevPathPhoto.Nodes.Count > 0)
  295. {
  296. if (this.treevPathPhoto.SelectedNode != null)
  297. {
  298. if (this.treevPathPhoto.SelectedNode.ForeColor == Color.Red)
  299. {
  300. if (MessageBoxCustom.Show("此图片已上传至服务,删除后则不能恢复回来,你确定要删除吗?", "温馨提示!", MessageBoxButtons.YesNo) == DialogResult.No)
  301. { return; }
  302. this.htDataFile[this.treevPathPhoto.SelectedNode.Tag.ToString().Trim()] = "移除";
  303. }
  304. this.treevPathPhoto.Nodes.Remove(this.treevPathPhoto.SelectedNode);
  305. }
  306. else
  307. { MessageBoxCustom.Show("请选择你要移除的图片!"); }
  308. }
  309. }
  310. /// <summary>
  311. /// 浏览
  312. /// </summary>
  313. /// <param name="sender"></param>
  314. /// <param name="e"></param>
  315. void btnBrowse_Click(object sender, EventArgs e)
  316. {
  317. openFileDialog1.Filter = "图片文件(*.jpg)|*.jpg|图片文件(*.gif)|*.gif|图片文件(*.bmp)|*.bmp|图片文件(*.png)|*.png";
  318. openFileDialog1.FileName = "";
  319. openFileDialog1.Multiselect = true;
  320. if (openFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
  321. {
  322. TreeNode root = null;
  323. string[] StrArray = openFileDialog1.FileNames;
  324. if (StrArray.Length > 5)
  325. { MessageBoxCustom.Show("每个景点上传相片最多不能超过10张"); return; }
  326. if (StrArray.Length + this.treevPathPhoto.Nodes.Count > 5)
  327. { MessageBoxCustom.Show("每个景点上传相片最多不能超过10张"); return; }
  328. for (int i = 0; i < StrArray.Length; i++)
  329. {
  330. root = new TreeNode();
  331. root.Text = StrArray[i].Trim();
  332. root.Tag = StrArray[i].Trim();
  333. root.ForeColor = Color.Red;
  334. this.treevPathPhoto.Nodes.Add(root);
  335. }
  336. if (StrArray.Length == 1)
  337. {
  338. try
  339. {
  340. System.Threading.ThreadPool.QueueUserWorkItem(delegate
  341. {
  342. this.pictPhoto.BackgroundImage = LYFZ.BLL.SelectPhotoHandling.GeneratePreviewBitmap(StrArray[0].Trim(), 600, 800);
  343. });
  344. }
  345. catch
  346. { }
  347. }
  348. }
  349. }
  350. /// <summary>
  351. /// 设置
  352. /// </summary>
  353. /// <param name="sender"></param>
  354. /// <param name="e"></param>
  355. void btnSet_Click(object sender, EventArgs e)
  356. {
  357. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
  358. frm.TypeName = "AAAAABY";
  359. frm.Version = "Version";
  360. if (frm.ShowDialog() == DialogResult.OK)
  361. {
  362. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("AAAAABY", this.cmbtreevFixedAssetsClass);
  363. string StrTag = "";
  364. if (this.cmbtreevFixedAssetsClassQuerie.Tag != null)
  365. { StrTag = this.cmbtreevFixedAssetsClassQuerie.Tag.ToString().Trim(); }
  366. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("AAAAABY", this.cmbtreevFixedAssetsClassQuerie, IsFirstNodeNull: true, IsFirstNodeName: "全部");
  367. if (!string.IsNullOrEmpty(StrTag))
  368. { this.cmbtreevFixedAssetsClassQuerie.TagFindText(StrTag); }
  369. }
  370. }
  371. Image Img = null;
  372. /// <summary>
  373. /// 列表双击事件
  374. /// </summary>
  375. /// <param name="sender"></param>
  376. /// <param name="e"></param>
  377. void dgvData_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
  378. {
  379. if (e.ColumnIndex >= 0 && e.RowIndex >= 0)
  380. {
  381. DataTable dt = fambll.GetList("ID = " + Convert.ToInt32(this.dgvData.CurrentRow.Cells["编号"].Value) + "").Tables[0];
  382. if (dt.Rows.Count > 0)
  383. {
  384. this.txtAssetsName.Tag = this.dgvData.CurrentRow.Cells["编号"].Value.ToString().Trim();
  385. this.txtAssetsName.Text = dt.Rows[0]["Fam_Name"].ToString();
  386. if (!string.IsNullOrEmpty(dt.Rows[0]["Fam_Category"].ToString().Trim()))
  387. { this.cmbtreevFixedAssetsClass.TagFindText(dt.Rows[0]["Fam_Category"].ToString().Trim()); }
  388. else
  389. { this.cmbtreevFixedAssetsClass.SetTextAndTag_ValueNull(); }
  390. this.txtAssetsQuantity.Text = dt.Rows[0]["Fam_Quantity"].ToString();
  391. this.txtAssetsSize.Text = dt.Rows[0]["Fam_Specification"].ToString();
  392. this.txtAssetsDate.Text = dt.Rows[0]["Fam_BuyDatetime"].ToString();
  393. this.txtAssetsPrice.Text = dt.Rows[0]["Fam_PurchasePrice"].ToString();
  394. this.txtAssetsRemark.Text = dt.Rows[0]["Fam_Remark"].ToString();
  395. //this.txtAssetsPerson.TagFindText(dt.Rows[0]["Fam_Custodian"].ToString());
  396. DataRow dtRow = this.dtUser.Rows.Find(dt.Rows[0]["Fam_Custodian"].ToString().Trim());
  397. if (dtRow != null)
  398. { this.txtAssetsPerson.TagFindText(dt.Rows[0]["Fam_Custodian"].ToString()); }
  399. else
  400. { this.txtAssetsPerson.TextFindTag(dt.Rows[0]["Fam_Custodian"].ToString()); }
  401. string[] StrArray = dt.Rows[0]["Fam_PhotoPath"].ToString().Trim().Split('|');
  402. this.treevPathPhoto.Nodes.Clear();
  403. TreeNode root = null;
  404. for (int i = 0; i < StrArray.Length; i++)
  405. {
  406. if (!string.IsNullOrEmpty(StrArray[i].Trim()))
  407. {
  408. root = new TreeNode();
  409. root.Text = StrArray[i].Trim();
  410. root.Tag = StrArray[i].Trim();
  411. root.ForeColor = Color.Blue;
  412. this.treevPathPhoto.Nodes.Add(root);
  413. }
  414. }
  415. if (!string.IsNullOrEmpty(dt.Rows[0]["Fam_PhotoAlbum"].ToString()))
  416. {
  417. root = new TreeNode();
  418. root.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TCP_FixedAsset() + "\\" + this.txtAssetsName.Text.Trim() + ".jpg";
  419. root.Tag = "";
  420. root.ForeColor = Color.Red;
  421. this.treevPathPhoto.Nodes.Add(root);
  422. pictPhoto.BeginInvoke((Action)delegate()
  423. {
  424. this.Img = PublicCodeClasses.GetImage(PublicCodeClasses.StringToByte(dt.Rows[0]["Fam_PhotoAlbum"].ToString()));
  425. });
  426. }
  427. else
  428. { this.Img = null; }
  429. this.pictPhoto.BackgroundImage = null;
  430. this.btnSaveed.Text = " 编 辑";
  431. this.ControlsEnabled(false);
  432. }
  433. }
  434. }
  435. /// <summary>
  436. /// 关闭
  437. /// </summary>
  438. /// <param name="sender"></param>
  439. /// <param name="e"></param>
  440. void btnClose_Click(object sender, EventArgs e)
  441. { this.Close(); }
  442. /// <summary>
  443. /// 图片双击查看
  444. /// </summary>
  445. /// <param name="sender"></param>
  446. /// <param name="e"></param>
  447. void pictPhoto_Click(object sender, EventArgs e)
  448. {
  449. if (this.pictPhoto.BackgroundImage != null)
  450. {
  451. LYFZ.Software.MainBusiness.InitialSet.Product.FrmProductPic frm = new InitialSet.Product.FrmProductPic();
  452. frm.FrmImage = this.pictPhoto.BackgroundImage;
  453. frm.ShowDialog();
  454. }
  455. }
  456. /// <summary>
  457. /// 数量限制输入
  458. /// </summary>
  459. /// <param name="sender"></param>
  460. /// <param name="e"></param>
  461. void txtAssetsQuantity_KeyPress(object sender, KeyPressEventArgs e)
  462. {
  463. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  464. { e.Handled = true; }
  465. }
  466. /// <summary>
  467. /// 价格限制输入
  468. /// </summary>
  469. /// <param name="sender"></param>
  470. /// <param name="e"></param>
  471. void txtAssetsPrice_KeyPress(object sender, KeyPressEventArgs e)
  472. {
  473. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  474. { e.Handled = true; }
  475. else if (Char.IsPunctuation(e.KeyChar))
  476. {
  477. if (e.KeyChar == '.')
  478. {
  479. if (((TextBox)sender).Text.LastIndexOf('.') != -1)
  480. { e.Handled = true; }
  481. }
  482. else
  483. { e.Handled = true; }
  484. }
  485. }
  486. /// <summary>
  487. /// 路径列表点击事件
  488. /// </summary>
  489. /// <param name="sender"></param>
  490. /// <param name="e"></param>
  491. void treevPathPhoto_AfterSelect(object sender, TreeViewEventArgs e)
  492. {
  493. if (this.treevPathPhoto.Nodes.Count > 0)
  494. {
  495. Image ViewImg = null;
  496. if (this.treevPathPhoto.SelectedNode.ForeColor == Color.Red)
  497. {
  498. if (!string.IsNullOrEmpty(this.treevPathPhoto.SelectedNode.Tag.ToString().Trim()))
  499. {
  500. try
  501. {
  502. string Strtag = this.treevPathPhoto.SelectedNode.Tag.ToString().Trim();
  503. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, System.ComponentModel.BackgroundWorker backgroundWorker)
  504. {
  505. ViewImg = LYFZ.BLL.SelectPhotoHandling.GeneratePreviewBitmap(Strtag, 600, 800);
  506. });
  507. }
  508. catch
  509. { }
  510. }
  511. else
  512. { ViewImg = this.Img; }
  513. }
  514. else
  515. {
  516. try
  517. {
  518. string Strtag = this.treevPathPhoto.SelectedNode.Tag.ToString().Trim();
  519. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, System.ComponentModel.BackgroundWorker backgroundWorker)
  520. {
  521. Bitmap bmp = null;
  522. string retmsg = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.TcpClient.DownloadBitmap(ref bmp, Strtag);
  523. ViewImg = bmp;
  524. });
  525. }
  526. catch
  527. { }
  528. }
  529. this.pictPhoto.BackgroundImage = ViewImg;
  530. }
  531. }
  532. /// <summary>
  533. /// 固定资产选择查询
  534. /// </summary>
  535. /// <param name="sender"></param>
  536. /// <param name="e"></param>
  537. void cmbtreevFixedAssetsClassQuerie_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  538. {
  539. this.cmbtreevFixedAssetsClassQuerie.TextFindTag(this.cmbtreevFixedAssetsClassQuerie.Text.Trim());
  540. this.PublicFunctionRows();
  541. }
  542. /// <summary>
  543. /// 查询数据
  544. /// </summary>
  545. void PublicFunctionRows()
  546. {
  547. this.dgvData.Rows.Clear();
  548. string StrWhere = "";
  549. if (this.cmbtreevFixedAssetsClassQuerie.Text.Trim() != "全部" && this.cmbtreevFixedAssetsClassQuerie.Text.Trim() != "")
  550. {
  551. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetTreeViewQueryCondition(ref StrWhere, this.cmbtreevFixedAssetsClassQuerie, StrFieldName: "Fam_Category", ConnectWord: "");
  552. }
  553. 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];
  554. DataGridViewRow dgvr = null;
  555. DataGridViewCell cell = null;
  556. decimal decStatistic = 0;
  557. for (int i = 0; i < tbl.Rows.Count; i++)
  558. {
  559. decStatistic += Convert.ToDecimal(tbl.Rows[i]["Fam_PurchasePrice"]) * Convert.ToDecimal(tbl.Rows[i]["Fam_Quantity"]);
  560. dgvr = new DataGridViewRow();
  561. for (int j = 0; j < tbl.Columns.Count; j++)
  562. {
  563. if (tbl.Columns[j].ColumnName.Trim() == "Fam_Custodian")
  564. {
  565. cell = new DataGridViewTextBoxCell();
  566. DataRow dtRow = this.dtUser.Rows.Find(tbl.Rows[i][j].ToString().Trim());
  567. if (dtRow != null)
  568. { cell.Value = dtRow["User_Name"].ToString(); }
  569. else
  570. { cell.Value = tbl.Rows[i][j].ToString().Trim(); }
  571. dgvr.Cells.Add(cell);
  572. }
  573. else
  574. {
  575. cell = new DataGridViewTextBoxCell();
  576. cell.Value = tbl.Rows[i][j].ToString().Trim();
  577. dgvr.Cells.Add(cell);
  578. }
  579. }
  580. this.dgvData.Rows.Add(dgvr);
  581. }
  582. this.lblStatistic.Text = "资产统计:" + decStatistic;
  583. }
  584. /// <summary>
  585. ///
  586. /// </summary>
  587. /// <param name="IsEnabled"></param>
  588. void ControlsEnabled(bool IsEnabled)
  589. {
  590. this.cmbtreevFixedAssetsClass.Enabled = IsEnabled;
  591. this.txtAssetsName.Enabled = IsEnabled;
  592. this.txtAssetsDate.Enabled = IsEnabled;
  593. this.txtAssetsQuantity.Enabled = IsEnabled;
  594. this.txtAssetsPrice.Enabled = IsEnabled;
  595. this.txtAssetsSize.Enabled = IsEnabled;
  596. this.txtAssetsPerson.Enabled = IsEnabled;
  597. this.txtAssetsRemark.Enabled = IsEnabled;
  598. this.btnRemovePhoto.Enabled = IsEnabled;
  599. this.btnBrowse.Enabled = IsEnabled;
  600. this.btnDelete.Enabled = IsEnabled;
  601. }
  602. }
  603. }