DressEnteredUpdateSmallForm.cs 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.IO;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.MainBusiness.Dresses.SetSmallForm
  11. {
  12. public partial class DressEnteredUpdateSmallForm : LYFZ.Software.UI.Dresses.SetSmallForm.DressEnteredUpdateSmallForm
  13. {
  14. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  15. LYFZ.BLL.BLL_ErpDressFrom dfbll = new BLL.BLL_ErpDressFrom();
  16. public DressEnteredUpdateSmallForm()
  17. {
  18. this.Load += DressUpdateFormMain_Load;
  19. this.Shown += DressUpdateFormMain_Shown;
  20. this.btnSaveed.Click += btnSaveed_Click;
  21. this.btnCancel.Click += btnCancel_Click;
  22. this.btnDeleteCoverPage.Click += btnDeleteCoverPage_Click;
  23. this.btnBrowseCoverPage.Click += btnBrowseCoverPage_Click;
  24. this.btnDeleteVicePage.Click += btnDeleteVicePage_Click;
  25. this.btnBrowseVicePage.Click += btnBrowseVicePage_Click;
  26. this.txtDressCostPrice.KeyPress += txtDressCostPrice_KeyPress;
  27. this.txtDressSalePrice.KeyPress += txtDressSalePrice_KeyPress;
  28. this.txtDressRentPrice.KeyPress += txtDressRentPrice_KeyPress;
  29. this.txtDressQuantity.KeyPress += txtDressQuantity_KeyPress;
  30. this.chkUpperRack.Click += chkUpperRack_Click;
  31. this.chkDownRack.Click += chkDownRack_Click;
  32. this.pictCoverPage.MouseDoubleClick += pictCoverPage_MouseDoubleClick;
  33. this.listVicePage.MouseDoubleClick += listVicePage_MouseDoubleClick;
  34. this.btnUpdateLoad.Click += btnUpdateLoad_Click;
  35. }
  36. void btnUpdateLoad_Click(object sender, EventArgs e)
  37. {
  38. frmSubmitDataToService frmDataToService = new frmSubmitDataToService();
  39. frmDataToService.InitDataInfo(this.txtDressNumber.Tag.ToString(), "Dress");
  40. frmDataToService.ShowDialog();
  41. }
  42. /// <summary>
  43. /// 要修改的礼服编号
  44. /// </summary>
  45. public string StrDressNumber = "";
  46. /// <summary>
  47. /// 是否保存
  48. /// </summary>
  49. public bool IsSaveed = false;
  50. /// <summary>
  51. /// 相片集合
  52. /// </summary>
  53. ImageList mlistImage = new ImageList();
  54. /// <summary>
  55. /// 删除的相片
  56. /// </summary>
  57. List<string> delList = new List<string>();
  58. /// <summary>
  59. /// 窗体加载事件
  60. /// </summary>
  61. /// <param name="sender"></param>
  62. /// <param name="e"></param>
  63. void DressUpdateFormMain_Load(object sender, EventArgs e)
  64. {
  65. if (string.IsNullOrEmpty(this.StrDressNumber))
  66. { MessageBoxCustom.Show("非法访问!"); this.Close(); }
  67. this.mlistImage.ImageSize = new Size(60, 60);
  68. this.mlistImage.ColorDepth = ColorDepth.Depth32Bit;
  69. this.listVicePage.LargeImageList = this.mlistImage;
  70. this.btnSaveed.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.DressEntry, CustomAttributes.OperatingAuthority.Update);
  71. }
  72. /// <summary>
  73. /// 窗体加载事件
  74. /// </summary>
  75. /// <param name="sender"></param>
  76. /// <param name="e"></param>
  77. void DressUpdateFormMain_Shown(object sender, EventArgs e)
  78. {
  79. this.btnDeleteCoverPage_Click(this, null);
  80. this.listVicePage.Items.Clear();
  81. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  82. {
  83. backgroundWorker.ReportProgress(0, "正在加载礼服信息...");
  84. DataTable tbl = orbll.GetView_Custom("tb_ErpSystemCategory", StrWhere: "", ShowColumnName: "*").Tables[0];
  85. DataTable dt = orbll.GetView_Custom("tb_ErpDressFrom", StrWhere: "Dsfm_DressNumber = '" + StrDressNumber + "'", ShowColumnName: "*").Tables[0];
  86. if (tbl.Rows.Count > 0)
  87. {
  88. this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate()
  89. {
  90. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEAJBGADDCBAHFFA", this.cmbtreevDressCategory, tbl: tbl);
  91. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEAJBGADBHCCHEFEI", this.cmbtreevDressPlacedRegion, IsFirstNodeNull: true, tbl: tbl);
  92. }));
  93. }
  94. if (dt.Rows.Count > 0)
  95. {
  96. backgroundWorker.ReportProgress(0, "正在加载礼服相片...");
  97. this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate()
  98. {
  99. this.txtDressNumber.Text = dt.Rows[0]["Dsfm_DressCustomNumber"].ToString().Trim();
  100. this.txtDressNumber.Tag = dt.Rows[0]["Dsfm_DressNumber"].ToString().Trim();
  101. this.txtDressName.Text = dt.Rows[0]["Dsfm_DressName"].ToString().Trim();
  102. this.cmbtreevDressCategory.TagFindText(dt.Rows[0]["Dsfm_DressType"].ToString().Trim());
  103. this.txtDressQuantity.Text = dt.Rows[0]["Dsfm_DressQuantity"].ToString().Trim();
  104. this.txtDressBrand.Text = dt.Rows[0]["Dsfm_DressBrand"].ToString().Trim();
  105. this.txtDressSize.Text = dt.Rows[0]["Dsfm_DressSize"].ToString().Trim();
  106. this.txtDressCostPrice.Text = dt.Rows[0]["Dsfm_CostPrice"].ToString().Trim();
  107. this.txtDressRentPrice.Text = dt.Rows[0]["Dsfm_RentPrice"].ToString().Trim();
  108. this.txtDressSalePrice.Text = dt.Rows[0]["Dsfm_SalePrice"].ToString().Trim();
  109. this.cmbtreevDressPlacedRegion.TagFindText(dt.Rows[0]["Dsfm_PlacedRegion"].ToString().Trim());
  110. this.dtpDressBuyDate.DateValue = dt.Rows[0]["Dsfm_DressBuyDate"].ToString().Trim();
  111. this.txtRemark.Text = dt.Rows[0]["Dsfm_DressRemark"].ToString().Trim();
  112. if (dt.Rows[0]["Dsfm_IsEnabled"].ToString().Trim() == "0")
  113. { this.chkDownRack.Checked = true; }
  114. else
  115. { this.chkUpperRack.Checked = true; }
  116. if (!string.IsNullOrEmpty(dt.Rows[0]["Dsfm_DressPhotoNames"].ToString().Trim()))
  117. {
  118. string[] StrArrayPhotoName = dt.Rows[0]["Dsfm_DressPhotoNames"].ToString().Trim().Split('|');
  119. for (int i = 0; i < StrArrayPhotoName.Length; i++)
  120. {
  121. if (!string.IsNullOrEmpty(StrArrayPhotoName[i].Trim()))
  122. {
  123. string StrPhotoName = StrArrayPhotoName[i].Trim();
  124. if (i == 0)
  125. {
  126. Image img = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDressImage_Small(StrPhotoName);
  127. if (img != null)
  128. {
  129. this.pictCoverPage.Image = img;
  130. this.pictCoverPage.Tag = StrPhotoName;
  131. }
  132. }
  133. else
  134. {
  135. Image img = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDressImage_Small(StrPhotoName, IsShowDefaultPhoto: false);
  136. if (img != null)
  137. {
  138. string[] StrArray = StrArrayPhotoName[i].Trim().Split('_');
  139. this.mlistImage.Images.Add(StrPhotoName, img);
  140. ListViewItem lvi = new ListViewItem();
  141. lvi.ImageKey = StrPhotoName;
  142. lvi.Text = System.IO.Path.GetFileNameWithoutExtension(StrArray[1].Trim());
  143. lvi.Tag = StrPhotoName;
  144. lvi.ToolTipText = lvi.Text;
  145. this.listVicePage.Items.Add(lvi);
  146. }
  147. }
  148. }
  149. }
  150. }
  151. }));
  152. }
  153. });
  154. }
  155. /// <summary>
  156. /// 保存
  157. /// </summary>
  158. /// <param name="sender"></param>
  159. /// <param name="e"></param>
  160. void btnSaveed_Click(object sender, EventArgs e)
  161. {
  162. #region 数据获取与数据检测
  163. if (string.IsNullOrEmpty(this.StrDressNumber))
  164. { MessageBoxCustom.Show("非法操作!"); this.Close(); }
  165. string StrDressType = this.cmbtreevDressCategory.Tag.ToString().Trim();
  166. if (string.IsNullOrEmpty(this.cmbtreevDressCategory.Text.Trim()))
  167. { MessageBoxCustom.Show("礼服类别不能为空"); return; }
  168. string StrDressName = this.txtDressName.Text.Trim();
  169. if (string.IsNullOrEmpty(StrDressName))
  170. { MessageBoxCustom.Show("礼服名称不能为空"); return; }
  171. int DressQuantity = 0;
  172. if (string.IsNullOrEmpty(this.txtDressQuantity.Text.Trim()))
  173. { MessageBoxCustom.Show("礼服数量不能为空"); return; }
  174. /* 数量为空,导致不能下架;
  175. else if (Convert.ToInt32(this.txtDressQuantity.Text) == 0)
  176. { MessageBoxCustom.Show("礼服数量不能为必须大于0"); return; }
  177. */
  178. DressQuantity = Convert.ToInt32(this.txtDressQuantity.Text);
  179. string StrDressBrand = this.txtDressBrand.Text.Trim();
  180. string StrDressSize = this.txtDressSize.Text.Trim();
  181. string StrCostPrice = this.txtDressCostPrice.Text.Trim();
  182. if (string.IsNullOrEmpty(StrCostPrice))
  183. { MessageBoxCustom.Show("礼服成本价不能为空"); return; }
  184. string StrRentPrice = this.txtDressRentPrice.Text.Trim();
  185. if (string.IsNullOrEmpty(StrRentPrice))
  186. { MessageBoxCustom.Show("礼服出租价不能为空"); return; }
  187. string StrSalePrice = this.txtDressSalePrice.Text.Trim();
  188. if (string.IsNullOrEmpty(StrSalePrice))
  189. { MessageBoxCustom.Show("礼服出售价不能为空"); return; }
  190. string StrPlacedRegion = this.cmbtreevDressPlacedRegion.Tag.ToString().Trim();
  191. if (string.IsNullOrEmpty(StrPlacedRegion))
  192. { MessageBoxCustom.Show("礼服摆放区域不能为空"); return; }
  193. DateTime StrDressBuyDate = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime();
  194. if (!string.IsNullOrEmpty(this.dtpDressBuyDate.DateValue.Trim()))
  195. { StrDressBuyDate = Convert.ToDateTime(this.dtpDressBuyDate.DateValue); }
  196. string StrDressRemark = this.txtRemark.Text.Trim();
  197. string StrIsEnabled = "";
  198. if (this.chkUpperRack.Checked)
  199. { StrIsEnabled = "1"; }
  200. if (this.chkDownRack.Checked)
  201. { StrIsEnabled = "0"; }
  202. if (string.IsNullOrEmpty(StrIsEnabled))
  203. { MessageBoxCustom.Show("礼服状态必选一项"); return; }
  204. string StrDressCustomNumber = this.txtDressNumber.Text.Trim();
  205. if (!string.IsNullOrEmpty(StrDressCustomNumber))
  206. {
  207. DataTable dt = orbll.GetView_Custom("tb_ErpDressFrom", StrWhere: "Dsfm_DressNumber != '" + this.StrDressNumber + "' And Dsfm_DressNumber != Dsfm_DressCustomNumber And Dsfm_DressCustomNumber = '" + StrDressCustomNumber + "'", ShowColumnName: "ID").Tables[0];
  208. if (dt.Rows.Count > 0)
  209. { MessageBoxCustom.Show("礼服编号已被使用不能重复使用!"); return; }
  210. }
  211. if (this.listVicePage.Items.Count > 0 && this.pictCoverPage.Image == null && this.pictCoverPage.Tag == null)
  212. { MessageBoxCustom.Show("礼服页图有图片时封面图片不能为空!"); return; }
  213. List<string> StrSelectPathList = new List<string>();
  214. if (this.pictCoverPage.Tag != null && this.lblCoverPage.ForeColor == Color.Red)
  215. { StrSelectPathList.Add(this.pictCoverPage.Tag.ToString().Trim() + "|封面"); }
  216. List<string> StrVicePath = new List<string>();
  217. for (int i = 0; i < this.listVicePage.Items.Count; i++)
  218. {
  219. if (this.listVicePage.Items[i].ForeColor == Color.Red)
  220. { StrSelectPathList.Add(this.listVicePage.Items[i].Tag.ToString().Trim() + "|页图" + (i + 1)); }
  221. }
  222. #endregion
  223. DateTime StrTime = SDateTime.Now;
  224. string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  225. LYFZ.Model.Model_ErpDressFrom model = dfbll.GetModel("Dsfm_DressNumber", this.StrDressNumber);
  226. if (model.ID > 0)
  227. {
  228. List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
  229. string StrPicturePathName = "";
  230. if (this.pictCoverPage.Tag != null)
  231. {
  232. if (this.lblCoverPage.ForeColor == Color.Red)
  233. { StrPicturePathName = model.Dsfm_DressNumber + "_" + System.IO.Path.GetFileName(this.pictCoverPage.Tag.ToString().Trim()); }
  234. else
  235. { StrPicturePathName = this.pictCoverPage.Tag.ToString().Trim(); }
  236. for (int j = 0; j < this.listVicePage.Items.Count; j++)
  237. {
  238. if (this.listVicePage.Items[j].ForeColor == Color.Red)
  239. { StrPicturePathName += "|" + model.Dsfm_DressNumber + "_" + System.IO.Path.GetFileName(this.listVicePage.Items[j].Tag.ToString().Trim()); }
  240. else
  241. { StrPicturePathName += "|" + this.listVicePage.Items[j].Tag.ToString().Trim(); }
  242. }
  243. }
  244. if (string.IsNullOrEmpty(StrDressCustomNumber))
  245. { model.Dsfm_DressCustomNumber = model.Dsfm_DressNumber; }
  246. else
  247. { model.Dsfm_DressCustomNumber = StrDressCustomNumber; }
  248. model.Dsfm_DressType = StrDressType;
  249. model.Dsfm_DressName = StrDressName;
  250. model.Dsfm_DressBrand = StrDressBrand;
  251. model.Dsfm_DressSize = StrDressSize;
  252. model.Dsfm_CostPrice = Convert.ToDecimal(StrCostPrice);
  253. model.Dsfm_RentPrice = Convert.ToDecimal(StrRentPrice);
  254. model.Dsfm_SalePrice = Convert.ToDecimal(StrSalePrice);
  255. model.Dsfm_IsEnabled = StrIsEnabled;
  256. model.Dsfm_PlacedRegion = StrPlacedRegion;
  257. model.Dsfm_DressPhotoNames = StrPicturePathName;
  258. model.Dsfm_DressBuyDate = StrDressBuyDate;
  259. model.Dsfm_DressRemark = StrDressRemark;
  260. model.Dsfm_UpdateDateTime = StrTime;
  261. model.Dsfm_UpdateName = StrUserID;
  262. clist.Add(dfbll.GetUpdateCommandInfo(model));
  263. if (clist.Count > 0)
  264. {
  265. if (MessageBoxCustom.Show("您确定要保存吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No)
  266. { return; }
  267. if (StrSelectPathList.Count > 0 || this.delList.Count > 0)
  268. {
  269. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  270. {
  271. if (this.delList.Count > 0)
  272. {
  273. for (int i = 0; i < this.delList.Count; i++)
  274. {
  275. string[] StrArray = this.delList[i].Trim().Split('|');
  276. string StrPhotoName = this.StrDressNumber + "_" + StrArray[0].Trim();
  277. DataTable tbl = orbll.GetView_Custom("tb_ErpDressFrom", StrWhere: "Dsfm_DressNumber != '" + this.StrDressNumber + "' And Dsfm_DressPhotoNames like '%" + StrPhotoName + "%'", ShowColumnName: "ID").Tables[0];
  278. if (tbl.Rows.Count <= 0)
  279. {
  280. backgroundWorker.ReportProgress(0, "正在删除" + StrArray[1].Trim() + "...");
  281. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.DeleteDressPhoto(System.IO.Path.GetFileNameWithoutExtension(StrPhotoName) + ".jpg", IsRecursion: true, DeleteDressType: 0);
  282. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.DeleteDressPhoto(StrPhotoName, IsRecursion: true, DeleteDressType: 1);
  283. }
  284. }
  285. }
  286. if (StrSelectPathList.Count > 0)
  287. {
  288. for (int i = 0; i < StrSelectPathList.Count; i++)
  289. {
  290. string[] StrArray = StrSelectPathList[i].Trim().Split('|');
  291. backgroundWorker.ReportProgress(0, "正在上传" + StrArray[1].Trim() + "...");
  292. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateDressPhoto(StrSelectPathList[i].Trim(), StrDressNumber, IsRecursion: true, UpdateDressType: 0);
  293. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateDressPhoto(StrSelectPathList[i].Trim(), StrDressNumber, IsRecursion: true, UpdateDressType: 1);
  294. }
  295. }
  296. });
  297. }
  298. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
  299. {
  300. this.IsSaveed = true;
  301. this.delList.Clear();
  302. MessageBoxCustom.Show("保存成功!");
  303. if (this.lblCoverPage.ForeColor == Color.Red)
  304. {
  305. this.lblCoverPage.ForeColor = LYFZ.ComponentLibrary.UIBlueThemeResources.DefaultTextColor;
  306. this.pictCoverPage.Tag = System.IO.Path.GetFileName(this.pictCoverPage.Tag.ToString().Trim());
  307. }
  308. for (int i = 0; i < this.listVicePage.Items.Count; i++)
  309. {
  310. if (this.listVicePage.Items[i].ForeColor == Color.Red)
  311. {
  312. this.listVicePage.Items[i].ForeColor = LYFZ.ComponentLibrary.UIBlueThemeResources.DefaultTextColor;
  313. this.listVicePage.Items[i].Tag = System.IO.Path.GetFileName(this.listVicePage.Items[i].Tag.ToString().Trim());
  314. }
  315. }
  316. return;
  317. }
  318. else
  319. { MessageBoxCustom.Show("保存失败!"); return; }
  320. }
  321. }
  322. else
  323. { MessageBoxCustom.Show("礼服无效!"); return; }
  324. }
  325. /// <summary>
  326. /// 取消
  327. /// </summary>
  328. /// <param name="sender"></param>
  329. /// <param name="e"></param>
  330. void btnCancel_Click(object sender, EventArgs e)
  331. {
  332. this.Close();
  333. }
  334. /// <summary>
  335. /// 删除封页
  336. /// </summary>
  337. /// <param name="sender"></param>
  338. /// <param name="e"></param>
  339. void btnDeleteCoverPage_Click(object sender, EventArgs e)
  340. {
  341. if (this.pictCoverPage.Image != null)
  342. {
  343. if (this.lblCoverPage.ForeColor != Color.Red)
  344. { this.delList.Add(this.pictCoverPage.Tag.ToString().Trim() + "|封面"); }
  345. this.pictCoverPage.Image = null;
  346. this.pictCoverPage.Tag = null;
  347. this.lblCoverPage.ForeColor = LYFZ.ComponentLibrary.UIBlueThemeResources.DefaultTextColor;
  348. }
  349. }
  350. /// <summary>
  351. /// 浏览封页
  352. /// </summary>
  353. /// <param name="sender"></param>
  354. /// <param name="e"></param>
  355. void btnBrowseCoverPage_Click(object sender, EventArgs e)
  356. {
  357. OpenFileDialog fileDialog = new OpenFileDialog();
  358. fileDialog.Filter = "图片文件(*.jpg)|*.jpg|图片文件(*.bmp)|*.bmp|图片文件(*.png)|*.png";
  359. fileDialog.FileName = "";
  360. if (fileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
  361. {
  362. //if (System.IO.Path.GetFileNameWithoutExtension(fileDialog.FileName).Trim().Contains('&'))
  363. //{ MessageBoxCustom.Show("选择的封面名称中不能含有'&'字符"); return; }
  364. if (System.IO.Path.GetFileNameWithoutExtension(fileDialog.FileName).Trim().Contains('_'))
  365. { MessageBoxCustom.Show("选择的封面名称中不能含有下划线'_'字符"); return; }
  366. for (int j = 0; j < this.listVicePage.Items.Count; j++)
  367. {
  368. if (this.listVicePage.Items[j].Tag.ToString().Trim() == fileDialog.FileName.Trim())
  369. { MessageBoxCustom.Show("选择的封面在页图里已存在"); return; }
  370. }
  371. this.btnDeleteCoverPage_Click(this, null);
  372. Bitmap bmp = LYFZ.ImageFunction.ThumbImgae.Thumbnail(new Bitmap(Image.FromStream(new MemoryStream(System.IO.File.ReadAllBytes(fileDialog.FileName)))), new Size(100, 100), ImageFunction.ThumbImgae.ThumbMode.W);
  373. this.pictCoverPage.Image = bmp;
  374. this.pictCoverPage.Tag = fileDialog.FileName.Trim();
  375. this.lblCoverPage.ForeColor = Color.Red;
  376. }
  377. }
  378. /// <summary>
  379. /// 删除页图
  380. /// </summary>
  381. /// <param name="sender"></param>
  382. /// <param name="e"></param>
  383. void btnDeleteVicePage_Click(object sender, EventArgs e)
  384. {
  385. if (this.listVicePage.Items.Count > 0)
  386. {
  387. if (this.listVicePage.SelectedItems.Count > 0)
  388. {
  389. List<ListViewItem> listItem = new List<ListViewItem>();
  390. int forInt = 1;
  391. for (int i = 0; i < this.listVicePage.SelectedItems.Count; i++)
  392. {
  393. if (this.listVicePage.SelectedItems[i].ForeColor != Color.Red)
  394. {
  395. this.delList.Add(this.listVicePage.SelectedItems[i].Tag.ToString().Trim() + "|页图" + forInt);
  396. forInt++;
  397. }
  398. listItem.Add(this.listVicePage.SelectedItems[i]);
  399. }
  400. for (int i = 0; i < listItem.Count; i++)
  401. { this.listVicePage.Items.Remove(listItem[i]); }
  402. }
  403. }
  404. }
  405. /// <summary>
  406. /// 浏览页图
  407. /// </summary>
  408. /// <param name="sender"></param>
  409. /// <param name="e"></param>
  410. void btnBrowseVicePage_Click(object sender, EventArgs e)
  411. {
  412. OpenFileDialog fileDialog = new OpenFileDialog();
  413. fileDialog.Filter = "图片文件(*.jpg)|*.jpg|图片文件(*.gif)|*.gif|图片文件(*.bmp)|*.bmp|图片文件(*.png)|*.png";
  414. fileDialog.FileName = "";
  415. fileDialog.Multiselect = true;
  416. if (fileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
  417. {
  418. List<string> StrDelete = new List<string>();
  419. List<string> StrArrayFileNames = fileDialog.FileNames.ToList();
  420. if (StrArrayFileNames.Count > 20)
  421. { MessageBoxCustom.Show("每个景点上传相片最多不能超过10张"); return; }
  422. if (StrArrayFileNames.Count + this.listVicePage.Items.Count > 20)
  423. { MessageBoxCustom.Show("每个景点上传相片最多不能超过10张"); return; }
  424. for (int i = 0; i < StrArrayFileNames.Count; i++)
  425. {
  426. //if (System.IO.Path.GetFileNameWithoutExtension(StrArrayFileNames[i]).Trim().Contains('&'))
  427. //{ MessageBoxCustom.Show("选择的页图名称中不能含有'&'字符"); return; }
  428. if (System.IO.Path.GetFileNameWithoutExtension(StrArrayFileNames[i]).Trim().Contains('_'))
  429. { MessageBoxCustom.Show("选择的页图名称中不能含有下划线'_'字符"); return; }
  430. if (this.pictCoverPage.Tag != null)
  431. {
  432. if (this.pictCoverPage.Tag.ToString().Trim() == StrArrayFileNames[i].Trim())
  433. { StrDelete.Add(StrArrayFileNames[i]); }
  434. }
  435. for (int j = 0; j < this.listVicePage.Items.Count; j++)
  436. {
  437. if (this.listVicePage.Items[j].Tag.ToString().Trim() == StrArrayFileNames[i].Trim())
  438. { StrDelete.Add(StrArrayFileNames[i]); }
  439. }
  440. }
  441. for (int i = 0; i < StrDelete.Count; i++)
  442. { StrArrayFileNames.Remove(StrDelete[i]); }
  443. for (int i = 0; i < StrArrayFileNames.Count; i++)
  444. {
  445. string StrPhotoName = System.IO.Path.GetFileName(StrArrayFileNames[i]);
  446. Bitmap bmp = LYFZ.ImageFunction.ThumbImgae.Thumbnail(new Bitmap(Image.FromStream(new MemoryStream(System.IO.File.ReadAllBytes(StrArrayFileNames[i])))), new Size(100, 100), ImageFunction.ThumbImgae.ThumbMode.W);
  447. Image img = bmp;
  448. this.mlistImage.Images.Add(StrPhotoName, img);
  449. ListViewItem lvi = new ListViewItem();
  450. lvi.ForeColor = Color.Red;
  451. lvi.ImageKey = StrPhotoName;
  452. lvi.Text = System.IO.Path.GetFileNameWithoutExtension(StrArrayFileNames[i]);
  453. lvi.Tag = StrArrayFileNames[i].Trim();
  454. lvi.ToolTipText = lvi.Text;
  455. this.listVicePage.Items.Add(lvi);
  456. }
  457. if (StrDelete.Count > 0)
  458. { MessageBoxCustom.Show("选择的页图有与封面或其他页图同名!"); }
  459. }
  460. }
  461. /// <summary>
  462. /// 成本价格输入限制
  463. /// </summary>
  464. /// <param name="sender"></param>
  465. /// <param name="e"></param>
  466. void txtDressCostPrice_KeyPress(object sender, KeyPressEventArgs e)
  467. {
  468. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  469. { e.Handled = true; }
  470. else if (Char.IsPunctuation(e.KeyChar))
  471. {
  472. if (e.KeyChar == '.')
  473. {
  474. if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('.') != -1)
  475. { e.Handled = true; }
  476. }
  477. else
  478. { e.Handled = true; }
  479. }
  480. }
  481. /// <summary>
  482. /// 出售价格输入限制
  483. /// </summary>
  484. /// <param name="sender"></param>
  485. /// <param name="e"></param>
  486. void txtDressSalePrice_KeyPress(object sender, KeyPressEventArgs e)
  487. {
  488. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  489. { e.Handled = true; }
  490. else if (Char.IsPunctuation(e.KeyChar))
  491. {
  492. if (e.KeyChar == '.')
  493. {
  494. if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('.') != -1)
  495. { e.Handled = true; }
  496. }
  497. else
  498. { e.Handled = true; }
  499. }
  500. }
  501. /// <summary>
  502. /// 出租价格输入限制
  503. /// </summary>
  504. /// <param name="sender"></param>
  505. /// <param name="e"></param>
  506. void txtDressRentPrice_KeyPress(object sender, KeyPressEventArgs e)
  507. {
  508. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  509. { e.Handled = true; }
  510. else if (Char.IsPunctuation(e.KeyChar))
  511. {
  512. if (e.KeyChar == '.')
  513. {
  514. if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('.') != -1)
  515. { e.Handled = true; }
  516. }
  517. else
  518. { e.Handled = true; }
  519. }
  520. }
  521. /// <summary>
  522. /// 礼服数量输入限制
  523. /// </summary>
  524. /// <param name="sender"></param>
  525. /// <param name="e"></param>
  526. void txtDressQuantity_KeyPress(object sender, KeyPressEventArgs e)
  527. {
  528. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  529. { e.Handled = true; }
  530. else if (Char.IsPunctuation(e.KeyChar))
  531. { e.Handled = true; }
  532. }
  533. /// <summary>
  534. /// 上架
  535. /// </summary>
  536. /// <param name="sender"></param>
  537. /// <param name="e"></param>
  538. void chkUpperRack_Click(object sender, EventArgs e)
  539. {
  540. this.chkUpperRack.Checked = true;
  541. this.chkDownRack.Checked = false;
  542. }
  543. /// <summary>
  544. /// 下架
  545. /// </summary>
  546. /// <param name="sender"></param>
  547. /// <param name="e"></param>
  548. void chkDownRack_Click(object sender, EventArgs e)
  549. {
  550. this.chkDownRack.Checked = true;
  551. this.chkUpperRack.Checked = false;
  552. }
  553. /// <summary>
  554. /// 封面双击查看
  555. /// </summary>
  556. /// <param name="sender"></param>
  557. /// <param name="e"></param>
  558. void pictCoverPage_MouseDoubleClick(object sender, MouseEventArgs e)
  559. {
  560. if (this.pictCoverPage.Image != null && this.pictCoverPage.Tag != null && !string.IsNullOrEmpty(this.pictCoverPage.Tag.ToString().Trim()))
  561. {
  562. Image img = null;
  563. if (this.lblCoverPage.ForeColor == Color.Red)
  564. { img = new Bitmap(Image.FromStream(new MemoryStream(System.IO.File.ReadAllBytes(this.pictCoverPage.Tag.ToString().Trim())))); }
  565. else
  566. { img = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDressImage_Original(this.pictCoverPage.Tag.ToString().Trim()); }
  567. if (img != null)
  568. {
  569. LYFZ.Software.MainBusiness.InitialSet.Product.FrmProductPic frm = new InitialSet.Product.FrmProductPic();
  570. frm.FrmImage = img;
  571. frm.ShowDialog();
  572. }
  573. }
  574. }
  575. /// <summary>
  576. /// 页图双击查看
  577. /// </summary>
  578. /// <param name="sender"></param>
  579. /// <param name="e"></param>
  580. void listVicePage_MouseDoubleClick(object sender, MouseEventArgs e)
  581. {
  582. if (this.listVicePage.Items.Count > 0)
  583. {
  584. if (this.listVicePage.SelectedItems.Count > 0)
  585. {
  586. Image img = null;
  587. if (this.listVicePage.SelectedItems[0].ForeColor == Color.Red)
  588. { img = new Bitmap(Image.FromStream(new MemoryStream(System.IO.File.ReadAllBytes(this.listVicePage.SelectedItems[0].Tag.ToString().Trim())))); }
  589. else
  590. { img = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDressImage_Original(this.listVicePage.SelectedItems[0].Tag.ToString().Trim()); }
  591. if (img != null)
  592. {
  593. LYFZ.Software.MainBusiness.InitialSet.Product.FrmProductPic frm = new InitialSet.Product.FrmProductPic();
  594. frm.FrmImage = img;
  595. frm.ShowDialog();
  596. }
  597. }
  598. }
  599. }
  600. }
  601. }