OtherConsumeImportPhotoSetSmallForm.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  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.FinancialManagement.SetSmallForm
  11. {
  12. public partial class OtherConsumeImportPhotoSetSmallForm : LYFZ.Software.UI.FinancialManagement.SetSmallForm.OtherConsumeImportPhotoSetSmallForm
  13. {
  14. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  15. LYFZ.BLL.BLL_ErpTwoSalesOrder tobll = new BLL.BLL_ErpTwoSalesOrder();
  16. public OtherConsumeImportPhotoSetSmallForm()
  17. {
  18. this.Load += OtherConsumeImportPhotoSetSmallForm_Load;
  19. this.Shown += OtherConsumeImportPhotoSetSmallForm_Shown;
  20. this.btnExport.Click += btnExport_Click;
  21. this.btnDelete.Click += btnDelete_Click;
  22. this.btnBrowse.Click += btnBrowse_Click;
  23. this.btnSaveed.Click += btnSaveed_Click;
  24. this.btnCancel.Click += btnCancel_Click;
  25. this.btnReset.Click += btnReset_Click;
  26. this.chkPickupNot.Click += chkPickupNot_Click;
  27. this.chkPickupOK.Click += chkPickupOK_Click;
  28. }
  29. /// <summary>
  30. /// 是否保存
  31. /// </summary>
  32. public bool IsSaveed = false;
  33. /// <summary>
  34. /// 其他消费订单号
  35. /// </summary>
  36. public string StrOtherOrderNumber = "";
  37. /// <summary>
  38. /// 相片集合
  39. /// </summary>
  40. ImageList mlistImage = new ImageList();
  41. /// <summary>
  42. /// 窗体加载事件
  43. /// </summary>
  44. /// <param name="sender"></param>
  45. /// <param name="e"></param>
  46. void OtherConsumeImportPhotoSetSmallForm_Load(object sender, EventArgs e)
  47. {
  48. this.mlistImage.ImageSize = new Size(110, 120);
  49. this.mlistImage.ColorDepth = ColorDepth.Depth32Bit;
  50. this.listViewData.LargeImageList = this.mlistImage;
  51. }
  52. /// <summary>
  53. /// 窗体加载事件
  54. /// </summary>
  55. /// <param name="sender"></param>
  56. /// <param name="e"></param>
  57. void OtherConsumeImportPhotoSetSmallForm_Shown(object sender, EventArgs e)
  58. {
  59. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbtreevPhotography, IsFirstNodeNull: true, IsShowResign: false);
  60. DataTable dt = orbll.GetView_Custom("tb_ErpTwoSalesOrder", StrWhere: "Tsorder_Number = '" + this.StrOtherOrderNumber + "'", ShowColumnName: "Tsorder_PhotoNames,Tsorder_PhotoPickup,Tsorder_Photography").Tables[0];
  61. if (dt.Rows.Count > 0)
  62. {
  63. if (!string.IsNullOrEmpty(dt.Rows[0]["Tsorder_Photography"].ToString().Trim()))
  64. {
  65. this.cmbtreevPhotography.TagFindText(dt.Rows[0]["Tsorder_Photography"].ToString().Trim());
  66. this.cmbtreevPhotography.Enabled = false;
  67. }
  68. if (dt.Rows[0]["Tsorder_PhotoPickup"].ToString().Trim() == "1")
  69. {
  70. this.chkPickupOK.Checked = true;
  71. this.chkPickupOK.Enabled = false;
  72. this.chkPickupNot.Enabled = false;
  73. }
  74. else
  75. { this.chkPickupNot.Checked = true; }
  76. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  77. {
  78. string[] StrArrayList = dt.Rows[0]["Tsorder_PhotoNames"].ToString().Trim().Split('|');
  79. for (int i = 0; i < StrArrayList.Length; i++)
  80. {
  81. if (!string.IsNullOrEmpty(StrArrayList[i].Trim()))
  82. {
  83. string StrPhotoName = StrArrayList[i].Trim();
  84. Image img = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetOtherConsumeImage_Small(this.StrOtherOrderNumber + "_" + StrPhotoName, IsShowDefaultPhoto: false);
  85. if (img != null)
  86. {
  87. ListViewItem lvi = new ListViewItem();
  88. lvi.ImageKey = StrPhotoName;
  89. lvi.Text = System.IO.Path.GetFileNameWithoutExtension(StrPhotoName);
  90. lvi.Tag = StrPhotoName;
  91. lvi.ToolTipText = lvi.Text;
  92. this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate()
  93. {
  94. this.mlistImage.Images.Add(StrPhotoName, img);
  95. this.listViewData.Items.Add(lvi);
  96. }));
  97. }
  98. }
  99. }
  100. });
  101. }
  102. }
  103. /// <summary>
  104. /// 下载
  105. /// </summary>
  106. /// <param name="sender"></param>
  107. /// <param name="e"></param>
  108. void btnExport_Click(object sender, EventArgs e)
  109. {
  110. if (this.listViewData.Items.Count > 0)
  111. {
  112. if (this.listViewData.SelectedItems.Count > 0)
  113. {
  114. List<string> OutPhotoTag = new List<string>();
  115. for (int i = 0; i < this.listViewData.SelectedItems.Count; i++)
  116. {
  117. if (this.listViewData.SelectedItems[i].ForeColor != Color.Red)
  118. { OutPhotoTag.Add(this.listViewData.SelectedItems[i].Tag.ToString().Trim()); }
  119. }
  120. if (OutPhotoTag.Count > 0)
  121. {
  122. for (int i = 0; i < OutPhotoTag.Count; i++)
  123. {
  124. string StrPhotoName = System.IO.Path.GetFileName(OutPhotoTag[i].Trim());
  125. Image img = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetOtherConsumeImage_Original(this.StrOtherOrderNumber + "_" + StrPhotoName.Trim(), IsShowDefaultPhoto: false);
  126. if (img != null)
  127. {
  128. bool IsShow = false;
  129. if (i == OutPhotoTag.Count - 1)
  130. { IsShow = true; }
  131. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.DownloadLog(img, StrPhotoName, IsShowPromptOK: IsShow);
  132. }
  133. }
  134. }
  135. else
  136. { MessageBoxCustom.Show("上传的图片未保存,请先保存再下载!"); }
  137. }
  138. else
  139. { MessageBoxCustom.Show("请选择你要下载的相片!"); }
  140. }
  141. }
  142. List<string> delList = new List<string>();
  143. /// <summary>
  144. /// 删除
  145. /// </summary>
  146. /// <param name="sender"></param>
  147. /// <param name="e"></param>
  148. void btnDelete_Click(object sender, EventArgs e)
  149. {
  150. if (this.listViewData.Items.Count > 0)
  151. {
  152. if (this.listViewData.SelectedItems.Count > 0)
  153. {
  154. List<ListViewItem> listItem = new List<ListViewItem>();
  155. for (int i = 0; i < this.listViewData.SelectedItems.Count; i++)
  156. {
  157. if (this.listViewData.SelectedItems[i].ForeColor != Color.Red)
  158. { this.delList.Add(this.listViewData.SelectedItems[i].Tag.ToString().Trim()); }
  159. listItem.Add(this.listViewData.SelectedItems[i]);
  160. }
  161. for (int i = 0; i < listItem.Count; i++)
  162. { this.listViewData.Items.Remove(listItem[i]); }
  163. }
  164. }
  165. }
  166. /// <summary>
  167. /// 浏览
  168. /// </summary>
  169. /// <param name="sender"></param>
  170. /// <param name="e"></param>
  171. void btnBrowse_Click(object sender, EventArgs e)
  172. {
  173. OpenFileDialog fileDialog = new OpenFileDialog();
  174. fileDialog.Filter = "图片文件(*.jpg)|*.jpg|图片文件(*.bmp)|*.bmp|图片文件(*.png)|*.png";
  175. fileDialog.FileName = "";
  176. fileDialog.Multiselect = true;
  177. if (fileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
  178. {
  179. List<string> StrArrayFileNames = fileDialog.FileNames.ToList();
  180. for (int i = 0; i < StrArrayFileNames.Count; i++)
  181. {
  182. FileInfo f = new FileInfo(StrArrayFileNames[i].Trim());
  183. if (f.Length > 10000000)
  184. { MessageBoxCustom.Show("图片过大,建议使用大小在10M以内的图片"); return; }
  185. string StrPhotoName = System.IO.Path.GetFileName(StrArrayFileNames[i]);
  186. Bitmap bmp = new Bitmap(Image.FromStream(new MemoryStream(System.IO.File.ReadAllBytes(StrArrayFileNames[i]))));
  187. //Bitmap bmp = LYFZ.ImageFunction.ThumbImgae.Thumbnail(new Bitmap(Image.FromStream(new MemoryStream(System.IO.File.ReadAllBytes(StrArrayFileNames[i])))), new Size(2000, 2000), ImageFunction.ThumbImgae.ThumbMode.W);
  188. Image img = bmp;
  189. this.mlistImage.Images.Add(StrPhotoName, img);
  190. ListViewItem lvi = new ListViewItem();
  191. lvi.ForeColor = Color.Red;
  192. lvi.ImageKey = StrPhotoName;
  193. lvi.Text = System.IO.Path.GetFileNameWithoutExtension(StrArrayFileNames[i]);
  194. lvi.Tag = StrArrayFileNames[i].Trim();
  195. lvi.ToolTipText = lvi.Text;
  196. this.listViewData.Items.Add(lvi);
  197. }
  198. }
  199. }
  200. /// <summary>
  201. /// 保存
  202. /// </summary>
  203. /// <param name="sender"></param>
  204. /// <param name="e"></param>
  205. void btnSaveed_Click(object sender, EventArgs e)
  206. {
  207. if (string.IsNullOrEmpty(this.cmbtreevPhotography.Text.Trim()))
  208. { MessageBoxCustom.Show("摄影师不能为空!"); return; }
  209. if (this.listViewData.Items.Count == 0)
  210. { MessageBoxCustom.Show("没有上传相片,不能保存!"); return; }
  211. List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
  212. DateTime StrTime = SDateTime.Now;
  213. string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  214. LYFZ.Model.Model_ErpTwoSalesOrder model = tobll.GetModel("Tsorder_Number", this.StrOtherOrderNumber);
  215. if (model.ID <= 0)
  216. { MessageBoxCustom.Show("订单已不存在!"); return; }
  217. if (this.cmbtreevPhotography.Tag.ToString().Trim() != model.Tsorder_Photography.Trim())
  218. {
  219. model.Tsorder_Photography = this.cmbtreevPhotography.Tag.ToString().Trim();
  220. model.Tsorder_PhotoDateTime = StrTime;
  221. }
  222. if (this.chkPickupNot.Checked && model.Tsorder_PhotoPickup == 1)
  223. {
  224. model.Tsorder_PhotoPickup = 0;
  225. model.Tsorder_PhotoPickupName = StrUserID;
  226. model.Tsorder_PhotoPickupDateTime = StrTime;
  227. }
  228. else if (this.chkPickupOK.Checked && model.Tsorder_PhotoPickup == 0)
  229. {
  230. model.Tsorder_PhotoPickup = 1;
  231. model.Tsorder_PhotoPickupName = StrUserID;
  232. model.Tsorder_PhotoPickupDateTime = StrTime;
  233. }
  234. string StrPhotoNames = "";
  235. List<string> listPath = new List<string>();
  236. for (int i = 0; i < this.listViewData.Items.Count; i++)
  237. {
  238. StrPhotoNames += System.IO.Path.GetFileName(listViewData.Items[i].Tag.ToString().Trim()) + "|";
  239. if (listViewData.Items[i].ForeColor == Color.Red)
  240. { listPath.Add(listViewData.Items[i].Tag.ToString().Trim()); }
  241. }
  242. model.Tsorder_PhotoNames = StrPhotoNames.TrimEnd('|');
  243. model.Tsorder_UpdateDatetime = StrTime;
  244. model.Tsorder_UpdateName = StrUserID;
  245. clist.Add(tobll.GetUpdateCommandInfo(model));
  246. if (clist.Count > 0)
  247. {
  248. if (this.delList.Count > 0 || listPath.Count > 0)
  249. {
  250. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  251. {
  252. if (this.delList.Count > 0)
  253. {
  254. for (int i = 0; i < this.delList.Count; i++)
  255. {
  256. string[] StrArray = this.delList[i].Trim().Split('|');
  257. string StrPhotoName = this.StrOtherOrderNumber + "_" + StrArray[0].Trim();
  258. backgroundWorker.ReportProgress(0, "正在删除" + StrArray[0].Trim() + "...");
  259. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.DeleteOtherConsumePhoto(System.IO.Path.GetFileNameWithoutExtension(StrPhotoName) + ".jpg", IsRecursion: true, DeleteDressType: 0);
  260. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.DeleteOtherConsumePhoto(StrPhotoName, IsRecursion: true, DeleteDressType: 1);
  261. }
  262. }
  263. if (listPath.Count > 0)
  264. {
  265. for (int i = 0; i < listPath.Count; i++)
  266. {
  267. backgroundWorker.ReportProgress(0, "正在上传" + (i + 1) + "...");
  268. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateOtherConsumePhoto(listPath[i].Trim(), this.StrOtherOrderNumber, IsRecursion: true, UpdateDressType: 0);
  269. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateOtherConsumePhoto(listPath[i].Trim(), this.StrOtherOrderNumber, IsRecursion: true, UpdateDressType: 1);
  270. }
  271. }
  272. });
  273. }
  274. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
  275. {
  276. this.IsSaveed = true;
  277. MessageBoxCustom.Show("保存成功!");
  278. for (int i = 0; i < this.listViewData.Items.Count; i++)
  279. {
  280. if (this.listViewData.Items[i].ForeColor == Color.Red)
  281. {
  282. this.listViewData.Items[i].ForeColor = LYFZ.ComponentLibrary.UIBlueThemeResources.DefaultTextColor;
  283. this.listViewData.Items[i].Tag = System.IO.Path.GetFileName(this.listViewData.Items[i].Tag.ToString().Trim());
  284. }
  285. }
  286. }
  287. else
  288. { MessageBoxCustom.Show("保存失败!"); }
  289. }
  290. }
  291. /// <summary>
  292. /// 取消
  293. /// </summary>
  294. /// <param name="sender"></param>
  295. /// <param name="e"></param>
  296. void btnCancel_Click(object sender, EventArgs e)
  297. {
  298. this.Close();
  299. }
  300. /// <summary>
  301. /// 重置
  302. /// </summary>
  303. /// <param name="sender"></param>
  304. /// <param name="e"></param>
  305. void btnReset_Click(object sender, EventArgs e)
  306. {
  307. this.cmbtreevPhotography.Enabled = true;
  308. this.chkPickupNot.Enabled = true;
  309. this.chkPickupOK.Enabled = true;
  310. }
  311. /// <summary>
  312. /// 未取
  313. /// </summary>
  314. /// <param name="sender"></param>
  315. /// <param name="e"></param>
  316. void chkPickupNot_Click(object sender, EventArgs e)
  317. {
  318. this.chkPickupNot.Checked = true;
  319. this.chkPickupOK.Checked = false;
  320. }
  321. /// <summary>
  322. /// 已取
  323. /// </summary>
  324. /// <param name="sender"></param>
  325. /// <param name="e"></param>
  326. void chkPickupOK_Click(object sender, EventArgs e)
  327. {
  328. this.chkPickupOK.Checked = true;
  329. this.chkPickupNot.Checked = false;
  330. }
  331. }
  332. }