123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.IO;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.Software.MainBusiness.FinancialManagement.SetSmallForm
- {
- public partial class OtherConsumeImportPhotoSetSmallForm : LYFZ.Software.UI.FinancialManagement.SetSmallForm.OtherConsumeImportPhotoSetSmallForm
- {
- LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
- LYFZ.BLL.BLL_ErpTwoSalesOrder tobll = new BLL.BLL_ErpTwoSalesOrder();
- public OtherConsumeImportPhotoSetSmallForm()
- {
- this.Load += OtherConsumeImportPhotoSetSmallForm_Load;
- this.Shown += OtherConsumeImportPhotoSetSmallForm_Shown;
- this.btnExport.Click += btnExport_Click;
- this.btnDelete.Click += btnDelete_Click;
- this.btnBrowse.Click += btnBrowse_Click;
- this.btnSaveed.Click += btnSaveed_Click;
- this.btnCancel.Click += btnCancel_Click;
- this.btnReset.Click += btnReset_Click;
- this.chkPickupNot.Click += chkPickupNot_Click;
- this.chkPickupOK.Click += chkPickupOK_Click;
- }
- /// <summary>
- /// 是否保存
- /// </summary>
- public bool IsSaveed = false;
- /// <summary>
- /// 其他消费订单号
- /// </summary>
- public string StrOtherOrderNumber = "";
- /// <summary>
- /// 相片集合
- /// </summary>
- ImageList mlistImage = new ImageList();
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void OtherConsumeImportPhotoSetSmallForm_Load(object sender, EventArgs e)
- {
- this.mlistImage.ImageSize = new Size(110, 120);
- this.mlistImage.ColorDepth = ColorDepth.Depth32Bit;
- this.listViewData.LargeImageList = this.mlistImage;
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void OtherConsumeImportPhotoSetSmallForm_Shown(object sender, EventArgs e)
- {
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbtreevPhotography, IsFirstNodeNull: true, IsShowResign: false);
- DataTable dt = orbll.GetView_Custom("tb_ErpTwoSalesOrder", StrWhere: "Tsorder_Number = '" + this.StrOtherOrderNumber + "'", ShowColumnName: "Tsorder_PhotoNames,Tsorder_PhotoPickup,Tsorder_Photography").Tables[0];
- if (dt.Rows.Count > 0)
- {
- if (!string.IsNullOrEmpty(dt.Rows[0]["Tsorder_Photography"].ToString().Trim()))
- {
- this.cmbtreevPhotography.TagFindText(dt.Rows[0]["Tsorder_Photography"].ToString().Trim());
- this.cmbtreevPhotography.Enabled = false;
- }
- if (dt.Rows[0]["Tsorder_PhotoPickup"].ToString().Trim() == "1")
- {
- this.chkPickupOK.Checked = true;
- this.chkPickupOK.Enabled = false;
- this.chkPickupNot.Enabled = false;
- }
- else
- { this.chkPickupNot.Checked = true; }
- LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
- {
- string[] StrArrayList = dt.Rows[0]["Tsorder_PhotoNames"].ToString().Trim().Split('|');
- for (int i = 0; i < StrArrayList.Length; i++)
- {
- if (!string.IsNullOrEmpty(StrArrayList[i].Trim()))
- {
- string StrPhotoName = StrArrayList[i].Trim();
- Image img = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetOtherConsumeImage_Small(this.StrOtherOrderNumber + "_" + StrPhotoName, IsShowDefaultPhoto: false);
- if (img != null)
- {
- ListViewItem lvi = new ListViewItem();
- lvi.ImageKey = StrPhotoName;
- lvi.Text = System.IO.Path.GetFileNameWithoutExtension(StrPhotoName);
- lvi.Tag = StrPhotoName;
- lvi.ToolTipText = lvi.Text;
- this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate()
- {
- this.mlistImage.Images.Add(StrPhotoName, img);
- this.listViewData.Items.Add(lvi);
- }));
- }
- }
- }
- });
- }
- }
- /// <summary>
- /// 下载
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnExport_Click(object sender, EventArgs e)
- {
- if (this.listViewData.Items.Count > 0)
- {
- if (this.listViewData.SelectedItems.Count > 0)
- {
- List<string> OutPhotoTag = new List<string>();
- for (int i = 0; i < this.listViewData.SelectedItems.Count; i++)
- {
- if (this.listViewData.SelectedItems[i].ForeColor != Color.Red)
- { OutPhotoTag.Add(this.listViewData.SelectedItems[i].Tag.ToString().Trim()); }
- }
- if (OutPhotoTag.Count > 0)
- {
- for (int i = 0; i < OutPhotoTag.Count; i++)
- {
- string StrPhotoName = System.IO.Path.GetFileName(OutPhotoTag[i].Trim());
- Image img = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetOtherConsumeImage_Original(this.StrOtherOrderNumber + "_" + StrPhotoName.Trim(), IsShowDefaultPhoto: false);
- if (img != null)
- {
- bool IsShow = false;
- if (i == OutPhotoTag.Count - 1)
- { IsShow = true; }
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.DownloadLog(img, StrPhotoName, IsShowPromptOK: IsShow);
- }
- }
- }
- else
- { MessageBoxCustom.Show("上传的图片未保存,请先保存再下载!"); }
- }
- else
- { MessageBoxCustom.Show("请选择你要下载的相片!"); }
- }
- }
- List<string> delList = new List<string>();
- /// <summary>
- /// 删除
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnDelete_Click(object sender, EventArgs e)
- {
- if (this.listViewData.Items.Count > 0)
- {
- if (this.listViewData.SelectedItems.Count > 0)
- {
- List<ListViewItem> listItem = new List<ListViewItem>();
- for (int i = 0; i < this.listViewData.SelectedItems.Count; i++)
- {
- if (this.listViewData.SelectedItems[i].ForeColor != Color.Red)
- { this.delList.Add(this.listViewData.SelectedItems[i].Tag.ToString().Trim()); }
- listItem.Add(this.listViewData.SelectedItems[i]);
- }
- for (int i = 0; i < listItem.Count; i++)
- { this.listViewData.Items.Remove(listItem[i]); }
- }
- }
- }
- /// <summary>
- /// 浏览
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnBrowse_Click(object sender, EventArgs e)
- {
- OpenFileDialog fileDialog = new OpenFileDialog();
- fileDialog.Filter = "图片文件(*.jpg)|*.jpg|图片文件(*.bmp)|*.bmp|图片文件(*.png)|*.png";
- fileDialog.FileName = "";
- fileDialog.Multiselect = true;
- if (fileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
- {
- List<string> StrArrayFileNames = fileDialog.FileNames.ToList();
- for (int i = 0; i < StrArrayFileNames.Count; i++)
- {
- FileInfo f = new FileInfo(StrArrayFileNames[i].Trim());
- if (f.Length > 10000000)
- { MessageBoxCustom.Show("图片过大,建议使用大小在10M以内的图片"); return; }
- string StrPhotoName = System.IO.Path.GetFileName(StrArrayFileNames[i]);
- Bitmap bmp = new Bitmap(Image.FromStream(new MemoryStream(System.IO.File.ReadAllBytes(StrArrayFileNames[i]))));
- //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);
- Image img = bmp;
- this.mlistImage.Images.Add(StrPhotoName, img);
- ListViewItem lvi = new ListViewItem();
- lvi.ForeColor = Color.Red;
- lvi.ImageKey = StrPhotoName;
- lvi.Text = System.IO.Path.GetFileNameWithoutExtension(StrArrayFileNames[i]);
- lvi.Tag = StrArrayFileNames[i].Trim();
- lvi.ToolTipText = lvi.Text;
- this.listViewData.Items.Add(lvi);
- }
- }
- }
- /// <summary>
- /// 保存
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnSaveed_Click(object sender, EventArgs e)
- {
- if (string.IsNullOrEmpty(this.cmbtreevPhotography.Text.Trim()))
- { MessageBoxCustom.Show("摄影师不能为空!"); return; }
- if (this.listViewData.Items.Count == 0)
- { MessageBoxCustom.Show("没有上传相片,不能保存!"); return; }
- List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
- DateTime StrTime = SDateTime.Now;
- string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
- LYFZ.Model.Model_ErpTwoSalesOrder model = tobll.GetModel("Tsorder_Number", this.StrOtherOrderNumber);
- if (model.ID <= 0)
- { MessageBoxCustom.Show("订单已不存在!"); return; }
- if (this.cmbtreevPhotography.Tag.ToString().Trim() != model.Tsorder_Photography.Trim())
- {
- model.Tsorder_Photography = this.cmbtreevPhotography.Tag.ToString().Trim();
- model.Tsorder_PhotoDateTime = StrTime;
- }
- if (this.chkPickupNot.Checked && model.Tsorder_PhotoPickup == 1)
- {
- model.Tsorder_PhotoPickup = 0;
- model.Tsorder_PhotoPickupName = StrUserID;
- model.Tsorder_PhotoPickupDateTime = StrTime;
- }
- else if (this.chkPickupOK.Checked && model.Tsorder_PhotoPickup == 0)
- {
- model.Tsorder_PhotoPickup = 1;
- model.Tsorder_PhotoPickupName = StrUserID;
- model.Tsorder_PhotoPickupDateTime = StrTime;
- }
- string StrPhotoNames = "";
- List<string> listPath = new List<string>();
- for (int i = 0; i < this.listViewData.Items.Count; i++)
- {
- StrPhotoNames += System.IO.Path.GetFileName(listViewData.Items[i].Tag.ToString().Trim()) + "|";
- if (listViewData.Items[i].ForeColor == Color.Red)
- { listPath.Add(listViewData.Items[i].Tag.ToString().Trim()); }
- }
- model.Tsorder_PhotoNames = StrPhotoNames.TrimEnd('|');
- model.Tsorder_UpdateDatetime = StrTime;
- model.Tsorder_UpdateName = StrUserID;
- clist.Add(tobll.GetUpdateCommandInfo(model));
- if (clist.Count > 0)
- {
- if (this.delList.Count > 0 || listPath.Count > 0)
- {
- LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
- {
- if (this.delList.Count > 0)
- {
- for (int i = 0; i < this.delList.Count; i++)
- {
- string[] StrArray = this.delList[i].Trim().Split('|');
- string StrPhotoName = this.StrOtherOrderNumber + "_" + StrArray[0].Trim();
- backgroundWorker.ReportProgress(0, "正在删除" + StrArray[0].Trim() + "...");
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.DeleteOtherConsumePhoto(System.IO.Path.GetFileNameWithoutExtension(StrPhotoName) + ".jpg", IsRecursion: true, DeleteDressType: 0);
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.DeleteOtherConsumePhoto(StrPhotoName, IsRecursion: true, DeleteDressType: 1);
- }
- }
- if (listPath.Count > 0)
- {
- for (int i = 0; i < listPath.Count; i++)
- {
- backgroundWorker.ReportProgress(0, "正在上传" + (i + 1) + "...");
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateOtherConsumePhoto(listPath[i].Trim(), this.StrOtherOrderNumber, IsRecursion: true, UpdateDressType: 0);
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateOtherConsumePhoto(listPath[i].Trim(), this.StrOtherOrderNumber, IsRecursion: true, UpdateDressType: 1);
- }
- }
- });
- }
- if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
- {
- this.IsSaveed = true;
- MessageBoxCustom.Show("保存成功!");
- for (int i = 0; i < this.listViewData.Items.Count; i++)
- {
- if (this.listViewData.Items[i].ForeColor == Color.Red)
- {
- this.listViewData.Items[i].ForeColor = LYFZ.ComponentLibrary.UIBlueThemeResources.DefaultTextColor;
- this.listViewData.Items[i].Tag = System.IO.Path.GetFileName(this.listViewData.Items[i].Tag.ToString().Trim());
- }
- }
- }
- else
- { MessageBoxCustom.Show("保存失败!"); }
- }
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnCancel_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- /// <summary>
- /// 重置
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnReset_Click(object sender, EventArgs e)
- {
- this.cmbtreevPhotography.Enabled = true;
- this.chkPickupNot.Enabled = true;
- this.chkPickupOK.Enabled = true;
- }
- /// <summary>
- /// 未取
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void chkPickupNot_Click(object sender, EventArgs e)
- {
- this.chkPickupNot.Checked = true;
- this.chkPickupOK.Checked = false;
- }
- /// <summary>
- /// 已取
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void chkPickupOK_Click(object sender, EventArgs e)
- {
- this.chkPickupOK.Checked = true;
- this.chkPickupNot.Checked = false;
- }
- }
- }
|