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;
}
///
/// 是否保存
///
public bool IsSaveed = false;
///
/// 相片集合
///
ImageList mlistImage = new ImageList();
///
/// 内页相片集合
///
ImageList mlistImage_VicePage = new ImageList();
///
/// 当前页打开时添加的礼服编号
///
List AddDressNumber = new List();
///
/// 窗体加载
///
///
///
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);
}
///
/// 窗体加载
///
///
///
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();
}
///
/// 礼服类别设置
///
///
///
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); }
}
///
/// 礼服区域设置
///
///
///
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); }
}
///
/// 成本价格输入限制
///
///
///
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; }
}
}
///
/// 出售价格输入限制
///
///
///
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; }
}
}
///
/// 出租价格输入限制
///
///
///
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; }
}
}
///
/// 礼服数量输入限制
///
///
///
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; }
}
///
/// 根据数量来设置是否要填写礼服编号
///
///
///
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; }
}
///
/// 上架
///
///
///
void chkUpperRack_Click(object sender, EventArgs e)
{
this.chkUpperRack.Checked = true;
this.chkDownRack.Checked = false;
}
///
/// 下架
///
///
///
void chkDownRack_Click(object sender, EventArgs e)
{
this.chkDownRack.Checked = true;
this.chkUpperRack.Checked = false;
}
///
/// 删除封面
///
///
///
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;
}
///
/// 浏览封面
///
///
///
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;
}
}
///
/// 删除副图
///
///
///
void btnDeleteVicePage_Click(object sender, EventArgs e)
{
if (this.listVicePage.Items.Count > 0)
{
if (this.listVicePage.SelectedItems.Count > 0)
{
List listItem = new List();
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]); }
}
}
}
///
/// 浏览页图
///
///
///
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 StrDelete = new List();
List 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("选择的页图有与封面或其他页图同名!"); }
}
}
///
/// 重置
///
///
///
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);
}
///
/// 保存
///
///
///
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 StrSelectPathList = new List();
if (this.pictCoverPage.Tag != null)
{ StrSelectPathList.Add(this.pictCoverPage.Tag.ToString().Trim() + "|封面"); }
List StrVicePath = new List();
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 clist = new List();
string StrPicturePathName = "";
List ListDressNumber = new List();
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; }
}
}
///
/// 取消
///
///
///
void btnCancel_Click(object sender, EventArgs e)
{
this.Close();
}
///
/// 图片双击
///
///
///
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();
}
}
///
/// 图片列表双击
///
///
///
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();
}
}
}
///
/// 双击修改礼服信息
///
///
///
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();
}
}
}
///
/// 创建默认分组
///
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();
}
}
///
/// 获取ListView的Item项
///
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);
}
}
}
}