123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730 |
- using System;
- using System.Collections;
- 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.Dresses.SetSmallForm
- {
- public partial class DressEnteredAddedSmallForm : LYFZ.Software.UI.Dresses.SetSmallForm.DressEnteredAddedSmallForm
- {
- LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
- LYFZ.BLL.BLL_ErpDressFrom dfbll = new BLL.BLL_ErpDressFrom();
- public DressEnteredAddedSmallForm()
- {
- this.Load += DressEnteredFormMain_Load;
- this.Shown += DressEnteredFormMain_Shown;
- this.btnCategorySet.Click += btnCategorySet_Click;
- this.btnRegionSet.Click += btnRegionSet_Click;
- this.txtDressCostPrice.KeyPress += txtDressCostPrice_KeyPress;
- this.txtDressSalePrice.KeyPress += txtDressSalePrice_KeyPress;
- this.txtDressRentPrice.KeyPress += txtDressRentPrice_KeyPress;
- this.txtDressQuantity.KeyPress += txtDressQuantity_KeyPress;
- this.txtDressQuantity.Leave += txtDressQuantity_Leave;
- this.chkUpperRack.Click += chkUpperRack_Click;
- this.chkDownRack.Click += chkDownRack_Click;
- this.btnDeleteCoverPage.Click += btnDeleteCoverPage_Click;
- this.btnBrowseCoverPage.Click += btnBrowseCoverPage_Click;
- this.btnDeleteVicePage.Click += btnDeleteVicePage_Click;
- this.btnBrowseVicePage.Click += btnBrowseVicePage_Click;
- this.btnReset.Click += btnReset_Click;
- this.btnSaveed.Click += btnSaveed_Click;
- this.btnCancel.Click += btnCancel_Click;
- this.pictCoverPage.MouseDoubleClick += pictCoverPage_MouseDoubleClick;
- this.listVicePage.MouseDoubleClick += listVicePage_MouseDoubleClick;
- this.listViewData_Dress.MouseDoubleClick += listViewData_Dress_MouseDoubleClick;
- //this.btnUpdateLoad.Click += btnUpdateLoad_Click;
- }
-
- /// <summary>
- /// 是否保存
- /// </summary>
- public bool IsSaveed = false;
- /// <summary>
- /// 相片集合
- /// </summary>
- ImageList mlistImage = new ImageList();
- /// <summary>
- /// 内页相片集合
- /// </summary>
- ImageList mlistImage_VicePage = new ImageList();
- /// <summary>
- /// 当前页打开时添加的礼服编号
- /// </summary>
- List<string> AddDressNumber = new List<string>();
- /// <summary>
- /// 窗体加载
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void DressEnteredFormMain_Load(object sender, EventArgs e)
- {
- this.mlistImage.ImageSize = new Size(50, 50);
- this.mlistImage.ColorDepth = ColorDepth.Depth32Bit;
- this.listVicePage.LargeImageList = this.mlistImage;
- this.listViewData_Dress.View = View.Details;
- this.listViewData_Dress.GridLines = true;
- string[] StrColumns = "礼服编号,礼服名称,摆放区域,礼服品牌,礼服尺寸,礼服状态,购买日期".Split(',');
- int SurplusCount = 90 * 3 + 120 + 150 * 2 + 23;// 70 * 6 + 23;
- for (int i = 0; i < StrColumns.Length; i++)
- {
- ColumnHeader ch = new ColumnHeader();
- ch.Text = StrColumns[i].Trim();
- ch.TextAlign = HorizontalAlignment.Left;
- switch (StrColumns[i].Trim())
- {
- case "礼服编号":
- ch.Width = 150;
- break;
- case "礼服名称":
- ch.Width = this.listViewData_Dress.Width - SurplusCount;
- break;
- case "摆放区域":
- ch.Width = 150;
- break;
- case "礼服品牌":
- ch.Width = 120;
- break;
- case "礼服尺寸":
- ch.Width = 90;
- break;
- case "礼服状态":
- ch.Width = 90;
- break;
- case "购买日期":
- ch.Width = 90;
- break;
- }
- switch (StrColumns[i].Trim())
- {
- case "成本价格":
- case "出售价格":
- case "出租价格":
- ch.TextAlign = HorizontalAlignment.Right;
- break;
- default:
- ch.TextAlign = HorizontalAlignment.Center;
- break;
- }
- this.listViewData_Dress.Columns.Add(ch);
- }
- this.mlistImage.ImageSize = new Size(30, 30);
- this.mlistImage.ColorDepth = ColorDepth.Depth32Bit;
- this.listViewData_Dress.SmallImageList = mlistImage;
- this.btnSaveed.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.DressEntry, CustomAttributes.OperatingAuthority.Add);
- }
- /// <summary>
- /// 窗体加载
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void DressEnteredFormMain_Shown(object sender, EventArgs e)
- {
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEAJBGADDCBAHFFA", this.cmbtreevDressCategory);
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEAJBGADBHCCHEFEI", this.cmbtreevDressPlacedRegion, IsFirstNodeNull: true);
- this.CreateListViewGroup();
- }
- /// <summary>
- /// 礼服类别设置
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnCategorySet_Click(object sender, EventArgs e)
- {
- LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
- frm.TypeName = "BEAJBGADDCBAHFFA";
- frm.Version = "Version";
- if (frm.ShowDialog() == DialogResult.OK)
- { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEAJBGADDCBAHFFA", this.cmbtreevDressCategory); }
- }
- /// <summary>
- /// 礼服区域设置
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnRegionSet_Click(object sender, EventArgs e)
- {
- LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
- frm.TypeName = "BEAJBGADBHCCHEFEI";
- frm.Version = "Version";
- if (frm.ShowDialog() == DialogResult.OK)
- { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEAJBGADBHCCHEFEI", this.cmbtreevDressPlacedRegion, IsFirstNodeNull: true); }
- }
- /// <summary>
- /// 成本价格输入限制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void txtDressCostPrice_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
- { e.Handled = true; }
- else if (Char.IsPunctuation(e.KeyChar))
- {
- if (e.KeyChar == '.')
- {
- if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('.') != -1)
- { e.Handled = true; }
- }
- else
- { e.Handled = true; }
- }
- }
- /// <summary>
- /// 出售价格输入限制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void txtDressSalePrice_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
- { e.Handled = true; }
- else if (Char.IsPunctuation(e.KeyChar))
- {
- if (e.KeyChar == '.')
- {
- if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('.') != -1)
- { e.Handled = true; }
- }
- else
- { e.Handled = true; }
- }
- }
- /// <summary>
- /// 出租价格输入限制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void txtDressRentPrice_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
- { e.Handled = true; }
- else if (Char.IsPunctuation(e.KeyChar))
- {
- if (e.KeyChar == '.')
- {
- if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('.') != -1)
- { e.Handled = true; }
- }
- else
- { e.Handled = true; }
- }
- }
- /// <summary>
- /// 礼服数量输入限制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void txtDressQuantity_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
- { e.Handled = true; }
- else if (Char.IsPunctuation(e.KeyChar))
- { e.Handled = true; }
- }
- /// <summary>
- /// 根据数量来设置是否要填写礼服编号
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void txtDressQuantity_Leave(object sender, EventArgs e)
- {
- bool IsFind = false;
- if (!string.IsNullOrEmpty(this.txtDressQuantity.Text.Trim()))
- {
- switch (Convert.ToInt32(this.txtDressQuantity.Text))
- {
- case 0:
- case 1:
- IsFind = true;
- break;
- }
- }
- if (IsFind)
- { this.txtRemark.Width = 608; this.panelDressNumber.Visible = true; }
- else
- { this.txtRemark.Width = 806; this.panelDressNumber.Visible = false; }
- }
- /// <summary>
- /// 上架
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void chkUpperRack_Click(object sender, EventArgs e)
- {
- this.chkUpperRack.Checked = true;
- this.chkDownRack.Checked = false;
- }
- /// <summary>
- /// 下架
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void chkDownRack_Click(object sender, EventArgs e)
- {
- this.chkDownRack.Checked = true;
- this.chkUpperRack.Checked = false;
- }
- /// <summary>
- /// 删除封面
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnDeleteCoverPage_Click(object sender, EventArgs e)
- {
- this.pictCoverPage.Image = null;
- this.pictCoverPage.Tag = null;
- this.lblCoverPage.ForeColor = LYFZ.ComponentLibrary.UIBlueThemeResources.DefaultTextColor;
- this.btnBrowseVicePage.Enabled = false;
- }
- /// <summary>
- /// 浏览封面
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnBrowseCoverPage_Click(object sender, EventArgs e)
- {
- OpenFileDialog fileDialog = new OpenFileDialog();
- fileDialog.Filter = "图片文件(*.jpg)|*.jpg|图片文件(*.bmp)|*.bmp|图片文件(*.png)|*.png";
- fileDialog.FileName = "";
- if (fileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
- {
- //if (System.IO.Path.GetFileNameWithoutExtension(fileDialog.FileName).Trim().Contains('&'))
- //{ MessageBoxCustom.Show("选择的封面名称中不能含有'&'字符"); return; }
- if (System.IO.Path.GetFileNameWithoutExtension(fileDialog.FileName).Trim().Contains('_'))
- { MessageBoxCustom.Show("选择的封面名称中不能含有下划线'_'字符"); return; }
- for (int j = 0; j < this.listVicePage.Items.Count; j++)
- {
- if (this.listVicePage.Items[j].Tag.ToString().Trim() == fileDialog.FileName.Trim())
- { MessageBoxCustom.Show("选择的封面在页图里已存在"); return; }
- }
- 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);
- this.pictCoverPage.Image = bmp;
- this.pictCoverPage.Tag = fileDialog.FileName.Trim();
- this.lblCoverPage.ForeColor = Color.Red;
- this.btnBrowseVicePage.Enabled = true;
- }
- }
- /// <summary>
- /// 删除副图
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnDeleteVicePage_Click(object sender, EventArgs e)
- {
- if (this.listVicePage.Items.Count > 0)
- {
- if (this.listVicePage.SelectedItems.Count > 0)
- {
- List<ListViewItem> listItem = new List<ListViewItem>();
- for (int i = 0; i < this.listVicePage.SelectedItems.Count; i++)
- { listItem.Add(this.listVicePage.SelectedItems[i]); }
- for (int i = 0; i < listItem.Count; i++)
- { this.listVicePage.Items.Remove(listItem[i]); }
- }
- }
- }
- /// <summary>
- /// 浏览页图
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnBrowseVicePage_Click(object sender, EventArgs e)
- {
- OpenFileDialog fileDialog = new OpenFileDialog();
- fileDialog.Filter = "图片文件(*.jpg)|*.jpg|图片文件(*.gif)|*.gif|图片文件(*.bmp)|*.bmp|图片文件(*.png)|*.png";
- fileDialog.FileName = "";
- fileDialog.Multiselect = true;
- if (fileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
- {
- List<string> StrDelete = new List<string>();
- List<string> StrArrayFileNames = fileDialog.FileNames.ToList();
- if (StrArrayFileNames.Count > 20)
- { MessageBoxCustom.Show("每个景点上传相片最多不能超过10张"); return; }
- if (StrArrayFileNames.Count + this.listVicePage.Items.Count > 20)
- { MessageBoxCustom.Show("每个景点上传相片最多不能超过10张"); return; }
- for (int i = 0; i < StrArrayFileNames.Count; i++)
- {
- //if (System.IO.Path.GetFileNameWithoutExtension(StrArrayFileNames[i]).Trim().Contains('&'))
- //{ MessageBoxCustom.Show("选择的页图名称中不能含有'&'字符"); return; }
- if (System.IO.Path.GetFileNameWithoutExtension(StrArrayFileNames[i]).Trim().Contains('_'))
- { MessageBoxCustom.Show("选择的页图名称中不能含有下划线'_'字符"); return; }
- if (this.pictCoverPage.Tag != null)
- {
- if (this.pictCoverPage.Tag.ToString().Trim() == StrArrayFileNames[i].Trim())
- { StrDelete.Add(StrArrayFileNames[i]); }
- }
- for (int j = 0; j < this.listVicePage.Items.Count; j++)
- {
- if (this.listVicePage.Items[j].Tag.ToString().Trim() == StrArrayFileNames[i].Trim())
- { StrDelete.Add(StrArrayFileNames[i]); }
- }
- }
- for (int i = 0; i < StrDelete.Count; i++)
- { StrArrayFileNames.Remove(StrDelete[i]); }
- for (int i = 0; i < StrArrayFileNames.Count; i++)
- {
- string StrPhotoName = System.IO.Path.GetFileName(StrArrayFileNames[i]);
- 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);
- this.mlistImage.Images.Add(StrPhotoName, bmp);
- 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.listVicePage.Items.Add(lvi);
- }
- if (StrDelete.Count > 0)
- { MessageBoxCustom.Show("选择的页图有与封面或其他页图同名!"); }
- }
- }
- /// <summary>
- /// 重置
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnReset_Click(object sender, EventArgs e)
- {
- this.cmbtreevDressCategory.SetTextAndTag_ValueNull();
- this.cmbtreevDressPlacedRegion.SetTextAndTag_ValueNull();
- this.txtDressBrand.Text = "";
- this.txtDressCostPrice.Text = "";
- this.txtDressName.Text = "";
- this.txtDressQuantity.Text = "";
- this.txtDressRentPrice.Text = "";
- this.txtDressSalePrice.Text = "";
- this.txtDressSize.Text = "";
- this.txtRemark.Text = "";
- this.dtpDressBuyDate.DateValue = "";
- this.listVicePage.Items.Clear();
- this.mlistImage.Images.Clear();
- this.btnDeleteCoverPage_Click(this, null);
- }
- /// <summary>
- /// 保存
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnSaveed_Click(object sender, EventArgs e)
- {
- #region 数据获取与数据检测
- if (this.cmbtreevDressCategory.Tag == null)
- { MessageBoxCustom.Show("礼服类别不能为空"); return; }
- string StrDressType = this.cmbtreevDressCategory.Tag.ToString().Trim();
- if (string.IsNullOrEmpty(this.cmbtreevDressCategory.Text.Trim()))
- { MessageBoxCustom.Show("礼服类别不能为空"); return; }
- string StrDressName = this.txtDressName.Text.Trim();
- if (string.IsNullOrEmpty(StrDressName))
- { MessageBoxCustom.Show("礼服名称不能为空"); return; }
- int DressQuantity = 0;
- if (string.IsNullOrEmpty(this.txtDressQuantity.Text.Trim()))
- { MessageBoxCustom.Show("礼服数量不能为空"); return; }
- else if (Convert.ToInt32(this.txtDressQuantity.Text) == 0)
- { MessageBoxCustom.Show("礼服数量不能为必须大于0"); return; }
- DressQuantity = Convert.ToInt32(this.txtDressQuantity.Text);
- string StrDressBrand = this.txtDressBrand.Text.Trim();
- string StrDressSize = this.txtDressSize.Text.Trim();
- string StrCostPrice = this.txtDressCostPrice.Text.Trim();
- if (string.IsNullOrEmpty(StrCostPrice))
- { MessageBoxCustom.Show("礼服成本价不能为空"); return; }
- string StrRentPrice = this.txtDressRentPrice.Text.Trim();
- if (string.IsNullOrEmpty(StrRentPrice))
- { MessageBoxCustom.Show("礼服出租价不能为空"); return; }
- string StrSalePrice = this.txtDressSalePrice.Text.Trim();
- if (string.IsNullOrEmpty(StrSalePrice))
- { MessageBoxCustom.Show("礼服出售价不能为空"); return; }
- if (this.cmbtreevDressPlacedRegion.Tag == null)
- { MessageBoxCustom.Show("礼服摆放区域不能为空"); return; }
- string StrPlacedRegion = this.cmbtreevDressPlacedRegion.Tag.ToString().Trim();
- if (string.IsNullOrEmpty(StrPlacedRegion))
- { MessageBoxCustom.Show("礼服摆放区域不能为空"); return; }
- DateTime StrDressBuyDate = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime();
- if (!string.IsNullOrEmpty(this.dtpDressBuyDate.DateValue.Trim()))
- { StrDressBuyDate = Convert.ToDateTime(this.dtpDressBuyDate.DateValue); }
- string StrDressRemark = this.txtRemark.Text.Trim();
- string StrIsEnabled = "";
- if (this.chkUpperRack.Checked)
- { StrIsEnabled = "1"; }
- if (this.chkDownRack.Checked)
- { StrIsEnabled = "0"; }
- if (string.IsNullOrEmpty(StrIsEnabled))
- { MessageBoxCustom.Show("礼服状态必选一项"); return; }
- string StrDressCustomNumber = this.txtDressNumber.Text.Trim();
- if (this.panelDressNumber.Visible)
- {
- if (!string.IsNullOrEmpty(StrDressCustomNumber))
- {
- DataTable dt = orbll.GetView_Custom("tb_ErpDressFrom", StrWhere: "Dsfm_DressCustomNumber = '" + StrDressCustomNumber + "' or Dsfm_DressNumber = '" + StrDressCustomNumber + "'", ShowColumnName: "ID").Tables[0];
- if (dt.Rows.Count > 0)
- { MessageBoxCustom.Show("礼服编号已被使用不能重复使用!"); return; }
- }
- }
- if (this.listVicePage.Items.Count > 0 && this.pictCoverPage.Image == null && this.pictCoverPage.Tag == null)
- { MessageBoxCustom.Show("礼服页图有图片时封面图片不能为空!"); return; }
- List<string> StrSelectPathList = new List<string>();
- if (this.pictCoverPage.Tag != null)
- { StrSelectPathList.Add(this.pictCoverPage.Tag.ToString().Trim() + "|封面"); }
- List<string> StrVicePath = new List<string>();
- for (int i = 0; i < this.listVicePage.Items.Count; i++)
- { StrSelectPathList.Add(this.listVicePage.Items[i].Tag.ToString().Trim() + "|页图" + (i + 1)); }
- #endregion
- DateTime StrTime = SDateTime.Now;
- string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
- // string StrDressNumber = "LF" + LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().ToString("yyyyMM") + new Random().Next(100, 1000);
- //2017-04-11 刘工修改 临时修改解决用户在录入时容易造成编号冲突问题
- string StrDressNumber = "LF" + LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().ToString("yyyyMMHHmmssf") + new Random().Next(1, 1000);
- LYFZ.Model.Model_ErpDressFrom model = null;
- List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
- string StrPicturePathName = "";
- List<string> ListDressNumber = new List<string>();
- for (int i = 0; i < DressQuantity; i++)
- {
- model = new Model.Model_ErpDressFrom();
- model.Dsfm_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
- model.Dsfm_DressNumber = StrDressNumber + (i + 1);
- if (i == 0 && this.pictCoverPage.Tag != null)
- {
- string StrPhotoName = model.Dsfm_DressNumber + "_" + System.IO.Path.GetFileName(this.pictCoverPage.Tag.ToString().Trim());
- StrPicturePathName = StrPhotoName;
- for (int j = 0; j < this.listVicePage.Items.Count; j++)
- { StrPicturePathName += "|" + model.Dsfm_DressNumber + "_" + System.IO.Path.GetFileName(this.listVicePage.Items[j].Tag.ToString().Trim()); }
- }
- if (string.IsNullOrEmpty(StrDressCustomNumber))
- { model.Dsfm_DressCustomNumber = model.Dsfm_DressNumber; }
- else
- { model.Dsfm_DressCustomNumber = StrDressCustomNumber; }
- model.Dsfm_DressType = StrDressType;
- model.Dsfm_DressName = StrDressName;
- model.Dsfm_DressBrand = StrDressBrand;
- model.Dsfm_DressSize = StrDressSize;
- model.Dsfm_DressQuantity = 1;
- model.Dsfm_CostPrice = Convert.ToDecimal(StrCostPrice);
- model.Dsfm_RentPrice = Convert.ToDecimal(StrRentPrice);
- model.Dsfm_SalePrice = Convert.ToDecimal(StrSalePrice);
- model.Dsfm_IsEnabled = StrIsEnabled;
- model.Dsfm_PlacedRegion = StrPlacedRegion;
- model.Dsfm_DressPhotoNames = StrPicturePathName;
- model.Dsfm_PicturePath = "";
- model.Dsfm_DressIntroduce = "";
- model.Dsfm_DressDetail = "";
- model.Dsfm_DressBuyDate = StrDressBuyDate;
- model.Dsfm_DressRemark = StrDressRemark;
- model.Dsfm_CreateDateTime = StrTime;
- model.Dsfm_CreateName = StrUserID;
- model.Dsfm_UpdateName = "";
- clist.Add(dfbll.GetAddCommandInfo(model));
- ListDressNumber.Add(model.Dsfm_DressNumber);
- }
- if (clist.Count > 0)
- {
- if (MessageBoxCustom.Show("您确定要保存吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No)
- { return; }
- if (StrSelectPathList.Count > 0)
- {
- LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
- {
- StrDressNumber += "1";
- for (int i = 0; i < StrSelectPathList.Count; i++)
- {
- string[] StrArray = StrSelectPathList[i].Trim().Split('|');
- backgroundWorker.ReportProgress(0, "正在上传" + StrArray[1].Trim() + "...");
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateDressPhoto(StrSelectPathList[i].Trim(), StrDressNumber, IsRecursion: true, UpdateDressType: 0);
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateDressPhoto(StrSelectPathList[i].Trim(), StrDressNumber, IsRecursion: true, UpdateDressType: 1);
- }
- });
- }
- if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
- {
- for (int i = 0; i < ListDressNumber.Count; i++)
- { AddDressNumber.Add(ListDressNumber[i].Trim()); }
- this.IsSaveed = true;
- MessageBoxCustom.Show("保存成功!");
- this.btnReset_Click(this, null);
- this.CreateListViewGroup();
- return;
- }
- else
- { MessageBoxCustom.Show("保存失败!"); return; }
- }
- }
- /// <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 pictCoverPage_MouseDoubleClick(object sender, MouseEventArgs e)
- {
- if (this.pictCoverPage.Image != null && this.pictCoverPage.Tag != null)
- {
- LYFZ.Software.MainBusiness.InitialSet.Product.FrmProductPic frm = new InitialSet.Product.FrmProductPic();
- frm.FrmImage = new Bitmap(Image.FromStream(new MemoryStream(System.IO.File.ReadAllBytes(this.pictCoverPage.Tag.ToString().Trim()))));
- frm.ShowDialog();
- }
- }
- /// <summary>
- /// 图片列表双击
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void listVicePage_MouseDoubleClick(object sender, MouseEventArgs e)
- {
- if (this.listVicePage.Items.Count > 0)
- {
- if (this.listVicePage.SelectedItems.Count > 0)
- {
- LYFZ.Software.MainBusiness.InitialSet.Product.FrmProductPic frm = new InitialSet.Product.FrmProductPic();
- frm.FrmImage = new Bitmap(Image.FromStream(new MemoryStream(System.IO.File.ReadAllBytes(this.listVicePage.SelectedItems[0].Tag.ToString().Trim()))));
- frm.ShowDialog();
- }
- }
- }
- /// <summary>
- /// 双击修改礼服信息
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void listViewData_Dress_MouseDoubleClick(object sender, MouseEventArgs e)
- {
- if (this.listViewData_Dress.Items.Count > 0 && this.listViewData_Dress.SelectedItems.Count > 0)
- {
- LYFZ.Software.MainBusiness.Dresses.SetSmallForm.DressEnteredUpdateSmallForm frm = new DressEnteredUpdateSmallForm();
- frm.StrDressNumber = this.listViewData_Dress.SelectedItems[0].ImageKey.Trim();
- frm.ShowDialog();
- if (frm.IsSaveed)
- {
- this.mlistImage.Images.RemoveByKey(this.listViewData_Dress.SelectedItems[0].ImageKey.Trim());
- this.GetCreateListViewItem();
- }
- }
- }
- /// <summary>
- /// 创建默认分组
- /// </summary>
- void CreateListViewGroup()
- {
- string StrWhere = "";
- for (int i = 0; i < AddDressNumber.Count; i++)
- { StrWhere += "'" + AddDressNumber[i].Trim() + "',"; }
- if (!string.IsNullOrEmpty(StrWhere))
- {
- StrWhere = "Dsfm_DressNumber in (" + StrWhere.TrimEnd(',') + ")";
- 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];
- //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];
- if (dtGroup.Rows.Count > 0)
- {
- for (int i = 0; i < dtGroup.Rows.Count; i++)
- {
- if (this.listViewData_Dress.Groups[dtGroup.Rows[i]["Dsfm_DressType"].ToString().Trim()] == null)
- {
- ListViewGroup man_lvg = new ListViewGroup();
- man_lvg.Name = dtGroup.Rows[i]["Dsfm_DressType"].ToString().Trim();
- man_lvg.Header = dtGroup.Rows[i]["Sc_ClassName"].ToString().Trim();
- man_lvg.HeaderAlignment = HorizontalAlignment.Left;
- this.listViewData_Dress.Groups.Add(man_lvg);
- }
- }
- if (!this.listViewData_Dress.ShowGroups)
- { this.listViewData_Dress.ShowGroups = true; }
- }
- this.GetCreateListViewItem();
- }
- }
- /// <summary>
- /// 获取ListView的Item项
- /// </summary>
- void GetCreateListViewItem()
- {
- this.listViewData_Dress.Items.Clear();
- string StrWhere = "";
- for (int i = 0; i < AddDressNumber.Count; i++)
- { StrWhere += "'" + AddDressNumber[i].Trim() + "',"; }
- if (!string.IsNullOrEmpty(StrWhere))
- {
- StrWhere = "Dsfm_DressNumber in (" + StrWhere.TrimEnd(',') + ")";
- 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];
- for (int i = 0; i < dtDress.Rows.Count; i++)
- {
- string[] StrArray = dtDress.Rows[i]["Dsfm_DressPhotoNames"].ToString().Trim().Split('|');
- if (!this.mlistImage.Images.Keys.Contains(dtDress.Rows[i]["Dsfm_DressNumber"].ToString().Trim()))
- {
- Image img = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDressImage_Small(StrArray[0].Trim());
- this.mlistImage.Images.Add(dtDress.Rows[i]["Dsfm_DressNumber"].ToString().Trim(), img);
- }
- ListViewItem lvItem = new ListViewItem();
- lvItem.Tag = StrArray[0].Trim();
- lvItem.ImageKey = dtDress.Rows[i]["Dsfm_DressNumber"].ToString().Trim();
- lvItem.Text = dtDress.Rows[i]["Dsfm_DressCustomNumber"].ToString().Trim();
- ListViewItem.ListViewSubItem ListSubItem = new ListViewItem.ListViewSubItem();
- ListSubItem.Name = "礼服名称";
- ListSubItem.Text = dtDress.Rows[i]["Dsfm_DressName"].ToString().Trim();
- lvItem.SubItems.Add(ListSubItem);
- ListSubItem = new ListViewItem.ListViewSubItem();
- ListSubItem.Name = "摆放区域";
- ListSubItem.Text = dtDress.Rows[i]["Sc_ClassName"].ToString().Trim();
- lvItem.SubItems.Add(ListSubItem);
- ListSubItem = new ListViewItem.ListViewSubItem();
- ListSubItem.Name = "礼服品牌";
- ListSubItem.Text = dtDress.Rows[i]["Dsfm_DressBrand"].ToString().Trim();
- lvItem.SubItems.Add(ListSubItem);
- ListSubItem = new ListViewItem.ListViewSubItem();
- ListSubItem.Name = "礼服尺寸";
- ListSubItem.Text = dtDress.Rows[i]["Dsfm_DressSize"].ToString().Trim();
- lvItem.SubItems.Add(ListSubItem);
- ListSubItem = new ListViewItem.ListViewSubItem();
- ListSubItem.Name = "礼服状态";
- ListSubItem.Text = dtDress.Rows[i]["Dsfm_IsEnabled"].ToString().Trim();
- lvItem.SubItems.Add(ListSubItem);
- ListSubItem = new ListViewItem.ListViewSubItem();
- ListSubItem.Name = "购买日期";
- ListSubItem.Text = LYFZ.Command.Command_Validate.DateTimeToString(dtDress.Rows[i]["Dsfm_DressBuyDate"]);
- lvItem.SubItems.Add(ListSubItem);
- if (this.listViewData_Dress.Groups.Count > 0)
- { this.listViewData_Dress.Groups[dtDress.Rows[i]["Dsfm_DressType"].ToString().Trim()].Items.Add(lvItem); }
- this.listViewData_Dress.Items.Add(lvItem);
- }
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.ListViewDrawSingleOrDoubleRows(this.listViewData_Dress);
- }
- }
- }
- }
|