DressEnteredAddedSmallForm.cs 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.IO;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Windows.Forms;
  11. namespace LYFZ.Software.MainBusiness.Dresses.SetSmallForm
  12. {
  13. public partial class DressEnteredAddedSmallForm : LYFZ.Software.UI.Dresses.SetSmallForm.DressEnteredAddedSmallForm
  14. {
  15. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  16. LYFZ.BLL.BLL_ErpDressFrom dfbll = new BLL.BLL_ErpDressFrom();
  17. public DressEnteredAddedSmallForm()
  18. {
  19. this.Load += DressEnteredFormMain_Load;
  20. this.Shown += DressEnteredFormMain_Shown;
  21. this.btnCategorySet.Click += btnCategorySet_Click;
  22. this.btnRegionSet.Click += btnRegionSet_Click;
  23. this.txtDressCostPrice.KeyPress += txtDressCostPrice_KeyPress;
  24. this.txtDressSalePrice.KeyPress += txtDressSalePrice_KeyPress;
  25. this.txtDressRentPrice.KeyPress += txtDressRentPrice_KeyPress;
  26. this.txtDressQuantity.KeyPress += txtDressQuantity_KeyPress;
  27. this.txtDressQuantity.Leave += txtDressQuantity_Leave;
  28. this.chkUpperRack.Click += chkUpperRack_Click;
  29. this.chkDownRack.Click += chkDownRack_Click;
  30. this.btnDeleteCoverPage.Click += btnDeleteCoverPage_Click;
  31. this.btnBrowseCoverPage.Click += btnBrowseCoverPage_Click;
  32. this.btnDeleteVicePage.Click += btnDeleteVicePage_Click;
  33. this.btnBrowseVicePage.Click += btnBrowseVicePage_Click;
  34. this.btnReset.Click += btnReset_Click;
  35. this.btnSaveed.Click += btnSaveed_Click;
  36. this.btnCancel.Click += btnCancel_Click;
  37. this.pictCoverPage.MouseDoubleClick += pictCoverPage_MouseDoubleClick;
  38. this.listVicePage.MouseDoubleClick += listVicePage_MouseDoubleClick;
  39. this.listViewData_Dress.MouseDoubleClick += listViewData_Dress_MouseDoubleClick;
  40. //this.btnUpdateLoad.Click += btnUpdateLoad_Click;
  41. }
  42. /// <summary>
  43. /// 是否保存
  44. /// </summary>
  45. public bool IsSaveed = false;
  46. /// <summary>
  47. /// 相片集合
  48. /// </summary>
  49. ImageList mlistImage = new ImageList();
  50. /// <summary>
  51. /// 内页相片集合
  52. /// </summary>
  53. ImageList mlistImage_VicePage = new ImageList();
  54. /// <summary>
  55. /// 当前页打开时添加的礼服编号
  56. /// </summary>
  57. List<string> AddDressNumber = new List<string>();
  58. /// <summary>
  59. /// 窗体加载
  60. /// </summary>
  61. /// <param name="sender"></param>
  62. /// <param name="e"></param>
  63. void DressEnteredFormMain_Load(object sender, EventArgs e)
  64. {
  65. this.mlistImage.ImageSize = new Size(50, 50);
  66. this.mlistImage.ColorDepth = ColorDepth.Depth32Bit;
  67. this.listVicePage.LargeImageList = this.mlistImage;
  68. this.listViewData_Dress.View = View.Details;
  69. this.listViewData_Dress.GridLines = true;
  70. string[] StrColumns = "礼服编号,礼服名称,摆放区域,礼服品牌,礼服尺寸,礼服状态,购买日期".Split(',');
  71. int SurplusCount = 90 * 3 + 120 + 150 * 2 + 23;// 70 * 6 + 23;
  72. for (int i = 0; i < StrColumns.Length; i++)
  73. {
  74. ColumnHeader ch = new ColumnHeader();
  75. ch.Text = StrColumns[i].Trim();
  76. ch.TextAlign = HorizontalAlignment.Left;
  77. switch (StrColumns[i].Trim())
  78. {
  79. case "礼服编号":
  80. ch.Width = 150;
  81. break;
  82. case "礼服名称":
  83. ch.Width = this.listViewData_Dress.Width - SurplusCount;
  84. break;
  85. case "摆放区域":
  86. ch.Width = 150;
  87. break;
  88. case "礼服品牌":
  89. ch.Width = 120;
  90. break;
  91. case "礼服尺寸":
  92. ch.Width = 90;
  93. break;
  94. case "礼服状态":
  95. ch.Width = 90;
  96. break;
  97. case "购买日期":
  98. ch.Width = 90;
  99. break;
  100. }
  101. switch (StrColumns[i].Trim())
  102. {
  103. case "成本价格":
  104. case "出售价格":
  105. case "出租价格":
  106. ch.TextAlign = HorizontalAlignment.Right;
  107. break;
  108. default:
  109. ch.TextAlign = HorizontalAlignment.Center;
  110. break;
  111. }
  112. this.listViewData_Dress.Columns.Add(ch);
  113. }
  114. this.mlistImage.ImageSize = new Size(30, 30);
  115. this.mlistImage.ColorDepth = ColorDepth.Depth32Bit;
  116. this.listViewData_Dress.SmallImageList = mlistImage;
  117. this.btnSaveed.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.DressEntry, CustomAttributes.OperatingAuthority.Add);
  118. }
  119. /// <summary>
  120. /// 窗体加载
  121. /// </summary>
  122. /// <param name="sender"></param>
  123. /// <param name="e"></param>
  124. void DressEnteredFormMain_Shown(object sender, EventArgs e)
  125. {
  126. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEAJBGADDCBAHFFA", this.cmbtreevDressCategory);
  127. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEAJBGADBHCCHEFEI", this.cmbtreevDressPlacedRegion, IsFirstNodeNull: true);
  128. this.CreateListViewGroup();
  129. }
  130. /// <summary>
  131. /// 礼服类别设置
  132. /// </summary>
  133. /// <param name="sender"></param>
  134. /// <param name="e"></param>
  135. void btnCategorySet_Click(object sender, EventArgs e)
  136. {
  137. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
  138. frm.TypeName = "BEAJBGADDCBAHFFA";
  139. frm.Version = "Version";
  140. if (frm.ShowDialog() == DialogResult.OK)
  141. { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEAJBGADDCBAHFFA", this.cmbtreevDressCategory); }
  142. }
  143. /// <summary>
  144. /// 礼服区域设置
  145. /// </summary>
  146. /// <param name="sender"></param>
  147. /// <param name="e"></param>
  148. void btnRegionSet_Click(object sender, EventArgs e)
  149. {
  150. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
  151. frm.TypeName = "BEAJBGADBHCCHEFEI";
  152. frm.Version = "Version";
  153. if (frm.ShowDialog() == DialogResult.OK)
  154. { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEAJBGADBHCCHEFEI", this.cmbtreevDressPlacedRegion, IsFirstNodeNull: true); }
  155. }
  156. /// <summary>
  157. /// 成本价格输入限制
  158. /// </summary>
  159. /// <param name="sender"></param>
  160. /// <param name="e"></param>
  161. void txtDressCostPrice_KeyPress(object sender, KeyPressEventArgs e)
  162. {
  163. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  164. { e.Handled = true; }
  165. else if (Char.IsPunctuation(e.KeyChar))
  166. {
  167. if (e.KeyChar == '.')
  168. {
  169. if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('.') != -1)
  170. { e.Handled = true; }
  171. }
  172. else
  173. { e.Handled = true; }
  174. }
  175. }
  176. /// <summary>
  177. /// 出售价格输入限制
  178. /// </summary>
  179. /// <param name="sender"></param>
  180. /// <param name="e"></param>
  181. void txtDressSalePrice_KeyPress(object sender, KeyPressEventArgs e)
  182. {
  183. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  184. { e.Handled = true; }
  185. else if (Char.IsPunctuation(e.KeyChar))
  186. {
  187. if (e.KeyChar == '.')
  188. {
  189. if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('.') != -1)
  190. { e.Handled = true; }
  191. }
  192. else
  193. { e.Handled = true; }
  194. }
  195. }
  196. /// <summary>
  197. /// 出租价格输入限制
  198. /// </summary>
  199. /// <param name="sender"></param>
  200. /// <param name="e"></param>
  201. void txtDressRentPrice_KeyPress(object sender, KeyPressEventArgs e)
  202. {
  203. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  204. { e.Handled = true; }
  205. else if (Char.IsPunctuation(e.KeyChar))
  206. {
  207. if (e.KeyChar == '.')
  208. {
  209. if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('.') != -1)
  210. { e.Handled = true; }
  211. }
  212. else
  213. { e.Handled = true; }
  214. }
  215. }
  216. /// <summary>
  217. /// 礼服数量输入限制
  218. /// </summary>
  219. /// <param name="sender"></param>
  220. /// <param name="e"></param>
  221. void txtDressQuantity_KeyPress(object sender, KeyPressEventArgs e)
  222. {
  223. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  224. { e.Handled = true; }
  225. else if (Char.IsPunctuation(e.KeyChar))
  226. { e.Handled = true; }
  227. }
  228. /// <summary>
  229. /// 根据数量来设置是否要填写礼服编号
  230. /// </summary>
  231. /// <param name="sender"></param>
  232. /// <param name="e"></param>
  233. void txtDressQuantity_Leave(object sender, EventArgs e)
  234. {
  235. bool IsFind = false;
  236. if (!string.IsNullOrEmpty(this.txtDressQuantity.Text.Trim()))
  237. {
  238. switch (Convert.ToInt32(this.txtDressQuantity.Text))
  239. {
  240. case 0:
  241. case 1:
  242. IsFind = true;
  243. break;
  244. }
  245. }
  246. if (IsFind)
  247. { this.txtRemark.Width = 608; this.panelDressNumber.Visible = true; }
  248. else
  249. { this.txtRemark.Width = 806; this.panelDressNumber.Visible = false; }
  250. }
  251. /// <summary>
  252. /// 上架
  253. /// </summary>
  254. /// <param name="sender"></param>
  255. /// <param name="e"></param>
  256. void chkUpperRack_Click(object sender, EventArgs e)
  257. {
  258. this.chkUpperRack.Checked = true;
  259. this.chkDownRack.Checked = false;
  260. }
  261. /// <summary>
  262. /// 下架
  263. /// </summary>
  264. /// <param name="sender"></param>
  265. /// <param name="e"></param>
  266. void chkDownRack_Click(object sender, EventArgs e)
  267. {
  268. this.chkDownRack.Checked = true;
  269. this.chkUpperRack.Checked = false;
  270. }
  271. /// <summary>
  272. /// 删除封面
  273. /// </summary>
  274. /// <param name="sender"></param>
  275. /// <param name="e"></param>
  276. void btnDeleteCoverPage_Click(object sender, EventArgs e)
  277. {
  278. this.pictCoverPage.Image = null;
  279. this.pictCoverPage.Tag = null;
  280. this.lblCoverPage.ForeColor = LYFZ.ComponentLibrary.UIBlueThemeResources.DefaultTextColor;
  281. this.btnBrowseVicePage.Enabled = false;
  282. }
  283. /// <summary>
  284. /// 浏览封面
  285. /// </summary>
  286. /// <param name="sender"></param>
  287. /// <param name="e"></param>
  288. void btnBrowseCoverPage_Click(object sender, EventArgs e)
  289. {
  290. OpenFileDialog fileDialog = new OpenFileDialog();
  291. fileDialog.Filter = "图片文件(*.jpg)|*.jpg|图片文件(*.bmp)|*.bmp|图片文件(*.png)|*.png";
  292. fileDialog.FileName = "";
  293. if (fileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
  294. {
  295. //if (System.IO.Path.GetFileNameWithoutExtension(fileDialog.FileName).Trim().Contains('&'))
  296. //{ MessageBoxCustom.Show("选择的封面名称中不能含有'&'字符"); return; }
  297. if (System.IO.Path.GetFileNameWithoutExtension(fileDialog.FileName).Trim().Contains('_'))
  298. { MessageBoxCustom.Show("选择的封面名称中不能含有下划线'_'字符"); return; }
  299. for (int j = 0; j < this.listVicePage.Items.Count; j++)
  300. {
  301. if (this.listVicePage.Items[j].Tag.ToString().Trim() == fileDialog.FileName.Trim())
  302. { MessageBoxCustom.Show("选择的封面在页图里已存在"); return; }
  303. }
  304. 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);
  305. this.pictCoverPage.Image = bmp;
  306. this.pictCoverPage.Tag = fileDialog.FileName.Trim();
  307. this.lblCoverPage.ForeColor = Color.Red;
  308. this.btnBrowseVicePage.Enabled = true;
  309. }
  310. }
  311. /// <summary>
  312. /// 删除副图
  313. /// </summary>
  314. /// <param name="sender"></param>
  315. /// <param name="e"></param>
  316. void btnDeleteVicePage_Click(object sender, EventArgs e)
  317. {
  318. if (this.listVicePage.Items.Count > 0)
  319. {
  320. if (this.listVicePage.SelectedItems.Count > 0)
  321. {
  322. List<ListViewItem> listItem = new List<ListViewItem>();
  323. for (int i = 0; i < this.listVicePage.SelectedItems.Count; i++)
  324. { listItem.Add(this.listVicePage.SelectedItems[i]); }
  325. for (int i = 0; i < listItem.Count; i++)
  326. { this.listVicePage.Items.Remove(listItem[i]); }
  327. }
  328. }
  329. }
  330. /// <summary>
  331. /// 浏览页图
  332. /// </summary>
  333. /// <param name="sender"></param>
  334. /// <param name="e"></param>
  335. void btnBrowseVicePage_Click(object sender, EventArgs e)
  336. {
  337. OpenFileDialog fileDialog = new OpenFileDialog();
  338. fileDialog.Filter = "图片文件(*.jpg)|*.jpg|图片文件(*.gif)|*.gif|图片文件(*.bmp)|*.bmp|图片文件(*.png)|*.png";
  339. fileDialog.FileName = "";
  340. fileDialog.Multiselect = true;
  341. if (fileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
  342. {
  343. List<string> StrDelete = new List<string>();
  344. List<string> StrArrayFileNames = fileDialog.FileNames.ToList();
  345. if (StrArrayFileNames.Count > 20)
  346. { MessageBoxCustom.Show("每个景点上传相片最多不能超过10张"); return; }
  347. if (StrArrayFileNames.Count + this.listVicePage.Items.Count > 20)
  348. { MessageBoxCustom.Show("每个景点上传相片最多不能超过10张"); return; }
  349. for (int i = 0; i < StrArrayFileNames.Count; i++)
  350. {
  351. //if (System.IO.Path.GetFileNameWithoutExtension(StrArrayFileNames[i]).Trim().Contains('&'))
  352. //{ MessageBoxCustom.Show("选择的页图名称中不能含有'&'字符"); return; }
  353. if (System.IO.Path.GetFileNameWithoutExtension(StrArrayFileNames[i]).Trim().Contains('_'))
  354. { MessageBoxCustom.Show("选择的页图名称中不能含有下划线'_'字符"); return; }
  355. if (this.pictCoverPage.Tag != null)
  356. {
  357. if (this.pictCoverPage.Tag.ToString().Trim() == StrArrayFileNames[i].Trim())
  358. { StrDelete.Add(StrArrayFileNames[i]); }
  359. }
  360. for (int j = 0; j < this.listVicePage.Items.Count; j++)
  361. {
  362. if (this.listVicePage.Items[j].Tag.ToString().Trim() == StrArrayFileNames[i].Trim())
  363. { StrDelete.Add(StrArrayFileNames[i]); }
  364. }
  365. }
  366. for (int i = 0; i < StrDelete.Count; i++)
  367. { StrArrayFileNames.Remove(StrDelete[i]); }
  368. for (int i = 0; i < StrArrayFileNames.Count; i++)
  369. {
  370. string StrPhotoName = System.IO.Path.GetFileName(StrArrayFileNames[i]);
  371. 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);
  372. this.mlistImage.Images.Add(StrPhotoName, bmp);
  373. ListViewItem lvi = new ListViewItem();
  374. lvi.ForeColor = Color.Red;
  375. lvi.ImageKey = StrPhotoName;
  376. lvi.Text = System.IO.Path.GetFileNameWithoutExtension(StrArrayFileNames[i]);
  377. lvi.Tag = StrArrayFileNames[i].Trim();
  378. lvi.ToolTipText = lvi.Text;
  379. this.listVicePage.Items.Add(lvi);
  380. }
  381. if (StrDelete.Count > 0)
  382. { MessageBoxCustom.Show("选择的页图有与封面或其他页图同名!"); }
  383. }
  384. }
  385. /// <summary>
  386. /// 重置
  387. /// </summary>
  388. /// <param name="sender"></param>
  389. /// <param name="e"></param>
  390. void btnReset_Click(object sender, EventArgs e)
  391. {
  392. this.cmbtreevDressCategory.SetTextAndTag_ValueNull();
  393. this.cmbtreevDressPlacedRegion.SetTextAndTag_ValueNull();
  394. this.txtDressBrand.Text = "";
  395. this.txtDressCostPrice.Text = "";
  396. this.txtDressName.Text = "";
  397. this.txtDressQuantity.Text = "";
  398. this.txtDressRentPrice.Text = "";
  399. this.txtDressSalePrice.Text = "";
  400. this.txtDressSize.Text = "";
  401. this.txtRemark.Text = "";
  402. this.dtpDressBuyDate.DateValue = "";
  403. this.listVicePage.Items.Clear();
  404. this.mlistImage.Images.Clear();
  405. this.btnDeleteCoverPage_Click(this, null);
  406. }
  407. /// <summary>
  408. /// 保存
  409. /// </summary>
  410. /// <param name="sender"></param>
  411. /// <param name="e"></param>
  412. void btnSaveed_Click(object sender, EventArgs e)
  413. {
  414. #region 数据获取与数据检测
  415. if (this.cmbtreevDressCategory.Tag == null)
  416. { MessageBoxCustom.Show("礼服类别不能为空"); return; }
  417. string StrDressType = this.cmbtreevDressCategory.Tag.ToString().Trim();
  418. if (string.IsNullOrEmpty(this.cmbtreevDressCategory.Text.Trim()))
  419. { MessageBoxCustom.Show("礼服类别不能为空"); return; }
  420. string StrDressName = this.txtDressName.Text.Trim();
  421. if (string.IsNullOrEmpty(StrDressName))
  422. { MessageBoxCustom.Show("礼服名称不能为空"); return; }
  423. int DressQuantity = 0;
  424. if (string.IsNullOrEmpty(this.txtDressQuantity.Text.Trim()))
  425. { MessageBoxCustom.Show("礼服数量不能为空"); return; }
  426. else if (Convert.ToInt32(this.txtDressQuantity.Text) == 0)
  427. { MessageBoxCustom.Show("礼服数量不能为必须大于0"); return; }
  428. DressQuantity = Convert.ToInt32(this.txtDressQuantity.Text);
  429. string StrDressBrand = this.txtDressBrand.Text.Trim();
  430. string StrDressSize = this.txtDressSize.Text.Trim();
  431. string StrCostPrice = this.txtDressCostPrice.Text.Trim();
  432. if (string.IsNullOrEmpty(StrCostPrice))
  433. { MessageBoxCustom.Show("礼服成本价不能为空"); return; }
  434. string StrRentPrice = this.txtDressRentPrice.Text.Trim();
  435. if (string.IsNullOrEmpty(StrRentPrice))
  436. { MessageBoxCustom.Show("礼服出租价不能为空"); return; }
  437. string StrSalePrice = this.txtDressSalePrice.Text.Trim();
  438. if (string.IsNullOrEmpty(StrSalePrice))
  439. { MessageBoxCustom.Show("礼服出售价不能为空"); return; }
  440. if (this.cmbtreevDressPlacedRegion.Tag == null)
  441. { MessageBoxCustom.Show("礼服摆放区域不能为空"); return; }
  442. string StrPlacedRegion = this.cmbtreevDressPlacedRegion.Tag.ToString().Trim();
  443. if (string.IsNullOrEmpty(StrPlacedRegion))
  444. { MessageBoxCustom.Show("礼服摆放区域不能为空"); return; }
  445. DateTime StrDressBuyDate = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime();
  446. if (!string.IsNullOrEmpty(this.dtpDressBuyDate.DateValue.Trim()))
  447. { StrDressBuyDate = Convert.ToDateTime(this.dtpDressBuyDate.DateValue); }
  448. string StrDressRemark = this.txtRemark.Text.Trim();
  449. string StrIsEnabled = "";
  450. if (this.chkUpperRack.Checked)
  451. { StrIsEnabled = "1"; }
  452. if (this.chkDownRack.Checked)
  453. { StrIsEnabled = "0"; }
  454. if (string.IsNullOrEmpty(StrIsEnabled))
  455. { MessageBoxCustom.Show("礼服状态必选一项"); return; }
  456. string StrDressCustomNumber = this.txtDressNumber.Text.Trim();
  457. if (this.panelDressNumber.Visible)
  458. {
  459. if (!string.IsNullOrEmpty(StrDressCustomNumber))
  460. {
  461. DataTable dt = orbll.GetView_Custom("tb_ErpDressFrom", StrWhere: "Dsfm_DressCustomNumber = '" + StrDressCustomNumber + "' or Dsfm_DressNumber = '" + StrDressCustomNumber + "'", ShowColumnName: "ID").Tables[0];
  462. if (dt.Rows.Count > 0)
  463. { MessageBoxCustom.Show("礼服编号已被使用不能重复使用!"); return; }
  464. }
  465. }
  466. if (this.listVicePage.Items.Count > 0 && this.pictCoverPage.Image == null && this.pictCoverPage.Tag == null)
  467. { MessageBoxCustom.Show("礼服页图有图片时封面图片不能为空!"); return; }
  468. List<string> StrSelectPathList = new List<string>();
  469. if (this.pictCoverPage.Tag != null)
  470. { StrSelectPathList.Add(this.pictCoverPage.Tag.ToString().Trim() + "|封面"); }
  471. List<string> StrVicePath = new List<string>();
  472. for (int i = 0; i < this.listVicePage.Items.Count; i++)
  473. { StrSelectPathList.Add(this.listVicePage.Items[i].Tag.ToString().Trim() + "|页图" + (i + 1)); }
  474. #endregion
  475. DateTime StrTime = SDateTime.Now;
  476. string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  477. // string StrDressNumber = "LF" + LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().ToString("yyyyMM") + new Random().Next(100, 1000);
  478. //2017-04-11 刘工修改 临时修改解决用户在录入时容易造成编号冲突问题
  479. string StrDressNumber = "LF" + LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().ToString("yyyyMMHHmmssf") + new Random().Next(1, 1000);
  480. LYFZ.Model.Model_ErpDressFrom model = null;
  481. List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
  482. string StrPicturePathName = "";
  483. List<string> ListDressNumber = new List<string>();
  484. for (int i = 0; i < DressQuantity; i++)
  485. {
  486. model = new Model.Model_ErpDressFrom();
  487. model.Dsfm_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  488. model.Dsfm_DressNumber = StrDressNumber + (i + 1);
  489. if (i == 0 && this.pictCoverPage.Tag != null)
  490. {
  491. string StrPhotoName = model.Dsfm_DressNumber + "_" + System.IO.Path.GetFileName(this.pictCoverPage.Tag.ToString().Trim());
  492. StrPicturePathName = StrPhotoName;
  493. for (int j = 0; j < this.listVicePage.Items.Count; j++)
  494. { StrPicturePathName += "|" + model.Dsfm_DressNumber + "_" + System.IO.Path.GetFileName(this.listVicePage.Items[j].Tag.ToString().Trim()); }
  495. }
  496. if (string.IsNullOrEmpty(StrDressCustomNumber))
  497. { model.Dsfm_DressCustomNumber = model.Dsfm_DressNumber; }
  498. else
  499. { model.Dsfm_DressCustomNumber = StrDressCustomNumber; }
  500. model.Dsfm_DressType = StrDressType;
  501. model.Dsfm_DressName = StrDressName;
  502. model.Dsfm_DressBrand = StrDressBrand;
  503. model.Dsfm_DressSize = StrDressSize;
  504. model.Dsfm_DressQuantity = 1;
  505. model.Dsfm_CostPrice = Convert.ToDecimal(StrCostPrice);
  506. model.Dsfm_RentPrice = Convert.ToDecimal(StrRentPrice);
  507. model.Dsfm_SalePrice = Convert.ToDecimal(StrSalePrice);
  508. model.Dsfm_IsEnabled = StrIsEnabled;
  509. model.Dsfm_PlacedRegion = StrPlacedRegion;
  510. model.Dsfm_DressPhotoNames = StrPicturePathName;
  511. model.Dsfm_PicturePath = "";
  512. model.Dsfm_DressIntroduce = "";
  513. model.Dsfm_DressDetail = "";
  514. model.Dsfm_DressBuyDate = StrDressBuyDate;
  515. model.Dsfm_DressRemark = StrDressRemark;
  516. model.Dsfm_CreateDateTime = StrTime;
  517. model.Dsfm_CreateName = StrUserID;
  518. model.Dsfm_UpdateName = "";
  519. clist.Add(dfbll.GetAddCommandInfo(model));
  520. ListDressNumber.Add(model.Dsfm_DressNumber);
  521. }
  522. if (clist.Count > 0)
  523. {
  524. if (MessageBoxCustom.Show("您确定要保存吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No)
  525. { return; }
  526. if (StrSelectPathList.Count > 0)
  527. {
  528. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  529. {
  530. StrDressNumber += "1";
  531. for (int i = 0; i < StrSelectPathList.Count; i++)
  532. {
  533. string[] StrArray = StrSelectPathList[i].Trim().Split('|');
  534. backgroundWorker.ReportProgress(0, "正在上传" + StrArray[1].Trim() + "...");
  535. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateDressPhoto(StrSelectPathList[i].Trim(), StrDressNumber, IsRecursion: true, UpdateDressType: 0);
  536. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateDressPhoto(StrSelectPathList[i].Trim(), StrDressNumber, IsRecursion: true, UpdateDressType: 1);
  537. }
  538. });
  539. }
  540. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
  541. {
  542. for (int i = 0; i < ListDressNumber.Count; i++)
  543. { AddDressNumber.Add(ListDressNumber[i].Trim()); }
  544. this.IsSaveed = true;
  545. MessageBoxCustom.Show("保存成功!");
  546. this.btnReset_Click(this, null);
  547. this.CreateListViewGroup();
  548. return;
  549. }
  550. else
  551. { MessageBoxCustom.Show("保存失败!"); return; }
  552. }
  553. }
  554. /// <summary>
  555. /// 取消
  556. /// </summary>
  557. /// <param name="sender"></param>
  558. /// <param name="e"></param>
  559. void btnCancel_Click(object sender, EventArgs e)
  560. {
  561. this.Close();
  562. }
  563. /// <summary>
  564. /// 图片双击
  565. /// </summary>
  566. /// <param name="sender"></param>
  567. /// <param name="e"></param>
  568. void pictCoverPage_MouseDoubleClick(object sender, MouseEventArgs e)
  569. {
  570. if (this.pictCoverPage.Image != null && this.pictCoverPage.Tag != null)
  571. {
  572. LYFZ.Software.MainBusiness.InitialSet.Product.FrmProductPic frm = new InitialSet.Product.FrmProductPic();
  573. frm.FrmImage = new Bitmap(Image.FromStream(new MemoryStream(System.IO.File.ReadAllBytes(this.pictCoverPage.Tag.ToString().Trim()))));
  574. frm.ShowDialog();
  575. }
  576. }
  577. /// <summary>
  578. /// 图片列表双击
  579. /// </summary>
  580. /// <param name="sender"></param>
  581. /// <param name="e"></param>
  582. void listVicePage_MouseDoubleClick(object sender, MouseEventArgs e)
  583. {
  584. if (this.listVicePage.Items.Count > 0)
  585. {
  586. if (this.listVicePage.SelectedItems.Count > 0)
  587. {
  588. LYFZ.Software.MainBusiness.InitialSet.Product.FrmProductPic frm = new InitialSet.Product.FrmProductPic();
  589. frm.FrmImage = new Bitmap(Image.FromStream(new MemoryStream(System.IO.File.ReadAllBytes(this.listVicePage.SelectedItems[0].Tag.ToString().Trim()))));
  590. frm.ShowDialog();
  591. }
  592. }
  593. }
  594. /// <summary>
  595. /// 双击修改礼服信息
  596. /// </summary>
  597. /// <param name="sender"></param>
  598. /// <param name="e"></param>
  599. void listViewData_Dress_MouseDoubleClick(object sender, MouseEventArgs e)
  600. {
  601. if (this.listViewData_Dress.Items.Count > 0 && this.listViewData_Dress.SelectedItems.Count > 0)
  602. {
  603. LYFZ.Software.MainBusiness.Dresses.SetSmallForm.DressEnteredUpdateSmallForm frm = new DressEnteredUpdateSmallForm();
  604. frm.StrDressNumber = this.listViewData_Dress.SelectedItems[0].ImageKey.Trim();
  605. frm.ShowDialog();
  606. if (frm.IsSaveed)
  607. {
  608. this.mlistImage.Images.RemoveByKey(this.listViewData_Dress.SelectedItems[0].ImageKey.Trim());
  609. this.GetCreateListViewItem();
  610. }
  611. }
  612. }
  613. /// <summary>
  614. /// 创建默认分组
  615. /// </summary>
  616. void CreateListViewGroup()
  617. {
  618. string StrWhere = "";
  619. for (int i = 0; i < AddDressNumber.Count; i++)
  620. { StrWhere += "'" + AddDressNumber[i].Trim() + "',"; }
  621. if (!string.IsNullOrEmpty(StrWhere))
  622. {
  623. StrWhere = "Dsfm_DressNumber in (" + StrWhere.TrimEnd(',') + ")";
  624. DataTable dtGroup = orbll.GetView_Custom("tb_ErpDressFrom Left Join tb_ErpSystemCategory on Dsfm_DressType = Sc_ClassCode", StrWhere: StrWhere, ShowColumnName: "Sc_ClassName,Dsfm_DressType", GroupBy: "Sc_ClassName,Dsfm_DressType").Tables[0];
  625. //DataTable dtGroup = orbll.GetView_Custom("tb_ErpDressFrom Left Join tb_ErpSystemCategory on Dsfm_DressType = Sc_ClassCode", StrWhere: "", ShowColumnName: "Sc_ClassName,Dsfm_DressType", GroupBy: "Sc_ClassName,Dsfm_DressType").Tables[0];
  626. if (dtGroup.Rows.Count > 0)
  627. {
  628. for (int i = 0; i < dtGroup.Rows.Count; i++)
  629. {
  630. if (this.listViewData_Dress.Groups[dtGroup.Rows[i]["Dsfm_DressType"].ToString().Trim()] == null)
  631. {
  632. ListViewGroup man_lvg = new ListViewGroup();
  633. man_lvg.Name = dtGroup.Rows[i]["Dsfm_DressType"].ToString().Trim();
  634. man_lvg.Header = dtGroup.Rows[i]["Sc_ClassName"].ToString().Trim();
  635. man_lvg.HeaderAlignment = HorizontalAlignment.Left;
  636. this.listViewData_Dress.Groups.Add(man_lvg);
  637. }
  638. }
  639. if (!this.listViewData_Dress.ShowGroups)
  640. { this.listViewData_Dress.ShowGroups = true; }
  641. }
  642. this.GetCreateListViewItem();
  643. }
  644. }
  645. /// <summary>
  646. /// 获取ListView的Item项
  647. /// </summary>
  648. void GetCreateListViewItem()
  649. {
  650. this.listViewData_Dress.Items.Clear();
  651. string StrWhere = "";
  652. for (int i = 0; i < AddDressNumber.Count; i++)
  653. { StrWhere += "'" + AddDressNumber[i].Trim() + "',"; }
  654. if (!string.IsNullOrEmpty(StrWhere))
  655. {
  656. StrWhere = "Dsfm_DressNumber in (" + StrWhere.TrimEnd(',') + ")";
  657. DataTable dtDress = orbll.GetView_Custom("tb_ErpDressFrom Left Join tb_ErpSystemCategory on Sc_ClassCode = Dsfm_PlacedRegion", StrWhere: StrWhere, ShowColumnName: "tb_ErpDressFrom.*,Sc_ClassName", filedOrder: "Dsfm_CreateDateTime Desc").Tables[0];
  658. for (int i = 0; i < dtDress.Rows.Count; i++)
  659. {
  660. string[] StrArray = dtDress.Rows[i]["Dsfm_DressPhotoNames"].ToString().Trim().Split('|');
  661. if (!this.mlistImage.Images.Keys.Contains(dtDress.Rows[i]["Dsfm_DressNumber"].ToString().Trim()))
  662. {
  663. Image img = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDressImage_Small(StrArray[0].Trim());
  664. this.mlistImage.Images.Add(dtDress.Rows[i]["Dsfm_DressNumber"].ToString().Trim(), img);
  665. }
  666. ListViewItem lvItem = new ListViewItem();
  667. lvItem.Tag = StrArray[0].Trim();
  668. lvItem.ImageKey = dtDress.Rows[i]["Dsfm_DressNumber"].ToString().Trim();
  669. lvItem.Text = dtDress.Rows[i]["Dsfm_DressCustomNumber"].ToString().Trim();
  670. ListViewItem.ListViewSubItem ListSubItem = new ListViewItem.ListViewSubItem();
  671. ListSubItem.Name = "礼服名称";
  672. ListSubItem.Text = dtDress.Rows[i]["Dsfm_DressName"].ToString().Trim();
  673. lvItem.SubItems.Add(ListSubItem);
  674. ListSubItem = new ListViewItem.ListViewSubItem();
  675. ListSubItem.Name = "摆放区域";
  676. ListSubItem.Text = dtDress.Rows[i]["Sc_ClassName"].ToString().Trim();
  677. lvItem.SubItems.Add(ListSubItem);
  678. ListSubItem = new ListViewItem.ListViewSubItem();
  679. ListSubItem.Name = "礼服品牌";
  680. ListSubItem.Text = dtDress.Rows[i]["Dsfm_DressBrand"].ToString().Trim();
  681. lvItem.SubItems.Add(ListSubItem);
  682. ListSubItem = new ListViewItem.ListViewSubItem();
  683. ListSubItem.Name = "礼服尺寸";
  684. ListSubItem.Text = dtDress.Rows[i]["Dsfm_DressSize"].ToString().Trim();
  685. lvItem.SubItems.Add(ListSubItem);
  686. ListSubItem = new ListViewItem.ListViewSubItem();
  687. ListSubItem.Name = "礼服状态";
  688. ListSubItem.Text = dtDress.Rows[i]["Dsfm_IsEnabled"].ToString().Trim();
  689. lvItem.SubItems.Add(ListSubItem);
  690. ListSubItem = new ListViewItem.ListViewSubItem();
  691. ListSubItem.Name = "购买日期";
  692. ListSubItem.Text = LYFZ.Command.Command_Validate.DateTimeToString(dtDress.Rows[i]["Dsfm_DressBuyDate"]);
  693. lvItem.SubItems.Add(ListSubItem);
  694. if (this.listViewData_Dress.Groups.Count > 0)
  695. { this.listViewData_Dress.Groups[dtDress.Rows[i]["Dsfm_DressType"].ToString().Trim()].Items.Add(lvItem); }
  696. this.listViewData_Dress.Items.Add(lvItem);
  697. }
  698. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.ListViewDrawSingleOrDoubleRows(this.listViewData_Dress);
  699. }
  700. }
  701. }
  702. }