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.Dresses.SetSmallForm
{
public partial class DressEnteredUpdateSmallForm : LYFZ.Software.UI.Dresses.SetSmallForm.DressEnteredUpdateSmallForm
{
LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
LYFZ.BLL.BLL_ErpDressFrom dfbll = new BLL.BLL_ErpDressFrom();
public DressEnteredUpdateSmallForm()
{
this.Load += DressUpdateFormMain_Load;
this.Shown += DressUpdateFormMain_Shown;
this.btnSaveed.Click += btnSaveed_Click;
this.btnCancel.Click += btnCancel_Click;
this.btnDeleteCoverPage.Click += btnDeleteCoverPage_Click;
this.btnBrowseCoverPage.Click += btnBrowseCoverPage_Click;
this.btnDeleteVicePage.Click += btnDeleteVicePage_Click;
this.btnBrowseVicePage.Click += btnBrowseVicePage_Click;
this.txtDressCostPrice.KeyPress += txtDressCostPrice_KeyPress;
this.txtDressSalePrice.KeyPress += txtDressSalePrice_KeyPress;
this.txtDressRentPrice.KeyPress += txtDressRentPrice_KeyPress;
this.txtDressQuantity.KeyPress += txtDressQuantity_KeyPress;
this.chkUpperRack.Click += chkUpperRack_Click;
this.chkDownRack.Click += chkDownRack_Click;
this.pictCoverPage.MouseDoubleClick += pictCoverPage_MouseDoubleClick;
this.listVicePage.MouseDoubleClick += listVicePage_MouseDoubleClick;
this.btnUpdateLoad.Click += btnUpdateLoad_Click;
}
void btnUpdateLoad_Click(object sender, EventArgs e)
{
frmSubmitDataToService frmDataToService = new frmSubmitDataToService();
frmDataToService.InitDataInfo(this.txtDressNumber.Tag.ToString(), "Dress");
frmDataToService.ShowDialog();
}
///
/// 要修改的礼服编号
///
public string StrDressNumber = "";
///
/// 是否保存
///
public bool IsSaveed = false;
///
/// 相片集合
///
ImageList mlistImage = new ImageList();
///
/// 删除的相片
///
List delList = new List();
///
/// 窗体加载事件
///
///
///
void DressUpdateFormMain_Load(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(this.StrDressNumber))
{ MessageBoxCustom.Show("非法访问!"); this.Close(); }
this.mlistImage.ImageSize = new Size(60, 60);
this.mlistImage.ColorDepth = ColorDepth.Depth32Bit;
this.listVicePage.LargeImageList = this.mlistImage;
this.btnSaveed.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.DressEntry, CustomAttributes.OperatingAuthority.Update);
}
///
/// 窗体加载事件
///
///
///
void DressUpdateFormMain_Shown(object sender, EventArgs e)
{
this.btnDeleteCoverPage_Click(this, null);
this.listVicePage.Items.Clear();
LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
{
backgroundWorker.ReportProgress(0, "正在加载礼服信息...");
DataTable tbl = orbll.GetView_Custom("tb_ErpSystemCategory", StrWhere: "", ShowColumnName: "*").Tables[0];
DataTable dt = orbll.GetView_Custom("tb_ErpDressFrom", StrWhere: "Dsfm_DressNumber = '" + StrDressNumber + "'", ShowColumnName: "*").Tables[0];
if (tbl.Rows.Count > 0)
{
this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate()
{
LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEAJBGADDCBAHFFA", this.cmbtreevDressCategory, tbl: tbl);
LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEAJBGADBHCCHEFEI", this.cmbtreevDressPlacedRegion, IsFirstNodeNull: true, tbl: tbl);
}));
}
if (dt.Rows.Count > 0)
{
backgroundWorker.ReportProgress(0, "正在加载礼服相片...");
this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate()
{
this.txtDressNumber.Text = dt.Rows[0]["Dsfm_DressCustomNumber"].ToString().Trim();
this.txtDressNumber.Tag = dt.Rows[0]["Dsfm_DressNumber"].ToString().Trim();
this.txtDressName.Text = dt.Rows[0]["Dsfm_DressName"].ToString().Trim();
this.cmbtreevDressCategory.TagFindText(dt.Rows[0]["Dsfm_DressType"].ToString().Trim());
this.txtDressQuantity.Text = dt.Rows[0]["Dsfm_DressQuantity"].ToString().Trim();
this.txtDressBrand.Text = dt.Rows[0]["Dsfm_DressBrand"].ToString().Trim();
this.txtDressSize.Text = dt.Rows[0]["Dsfm_DressSize"].ToString().Trim();
this.txtDressCostPrice.Text = dt.Rows[0]["Dsfm_CostPrice"].ToString().Trim();
this.txtDressRentPrice.Text = dt.Rows[0]["Dsfm_RentPrice"].ToString().Trim();
this.txtDressSalePrice.Text = dt.Rows[0]["Dsfm_SalePrice"].ToString().Trim();
this.cmbtreevDressPlacedRegion.TagFindText(dt.Rows[0]["Dsfm_PlacedRegion"].ToString().Trim());
this.dtpDressBuyDate.DateValue = dt.Rows[0]["Dsfm_DressBuyDate"].ToString().Trim();
this.txtRemark.Text = dt.Rows[0]["Dsfm_DressRemark"].ToString().Trim();
if (dt.Rows[0]["Dsfm_IsEnabled"].ToString().Trim() == "0")
{ this.chkDownRack.Checked = true; }
else
{ this.chkUpperRack.Checked = true; }
if (!string.IsNullOrEmpty(dt.Rows[0]["Dsfm_DressPhotoNames"].ToString().Trim()))
{
string[] StrArrayPhotoName = dt.Rows[0]["Dsfm_DressPhotoNames"].ToString().Trim().Split('|');
for (int i = 0; i < StrArrayPhotoName.Length; i++)
{
if (!string.IsNullOrEmpty(StrArrayPhotoName[i].Trim()))
{
string StrPhotoName = StrArrayPhotoName[i].Trim();
if (i == 0)
{
Image img = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDressImage_Small(StrPhotoName);
if (img != null)
{
this.pictCoverPage.Image = img;
this.pictCoverPage.Tag = StrPhotoName;
}
}
else
{
Image img = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDressImage_Small(StrPhotoName, IsShowDefaultPhoto: false);
if (img != null)
{
string[] StrArray = StrArrayPhotoName[i].Trim().Split('_');
this.mlistImage.Images.Add(StrPhotoName, img);
ListViewItem lvi = new ListViewItem();
lvi.ImageKey = StrPhotoName;
lvi.Text = System.IO.Path.GetFileNameWithoutExtension(StrArray[1].Trim());
lvi.Tag = StrPhotoName;
lvi.ToolTipText = lvi.Text;
this.listVicePage.Items.Add(lvi);
}
}
}
}
}
}));
}
});
}
///
/// 保存
///
///
///
void btnSaveed_Click(object sender, EventArgs e)
{
#region 数据获取与数据检测
if (string.IsNullOrEmpty(this.StrDressNumber))
{ MessageBoxCustom.Show("非法操作!"); this.Close(); }
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; }
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 (!string.IsNullOrEmpty(StrDressCustomNumber))
{
DataTable dt = orbll.GetView_Custom("tb_ErpDressFrom", StrWhere: "Dsfm_DressNumber != '" + this.StrDressNumber + "' And Dsfm_DressNumber != Dsfm_DressCustomNumber And Dsfm_DressCustomNumber = '" + 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 && this.lblCoverPage.ForeColor == Color.Red)
{ StrSelectPathList.Add(this.pictCoverPage.Tag.ToString().Trim() + "|封面"); }
List StrVicePath = new List();
for (int i = 0; i < this.listVicePage.Items.Count; i++)
{
if (this.listVicePage.Items[i].ForeColor == Color.Red)
{ 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;
LYFZ.Model.Model_ErpDressFrom model = dfbll.GetModel("Dsfm_DressNumber", this.StrDressNumber);
if (model.ID > 0)
{
List clist = new List();
string StrPicturePathName = "";
if (this.pictCoverPage.Tag != null)
{
if (this.lblCoverPage.ForeColor == Color.Red)
{ StrPicturePathName = model.Dsfm_DressNumber + "_" + System.IO.Path.GetFileName(this.pictCoverPage.Tag.ToString().Trim()); }
else
{ StrPicturePathName = this.pictCoverPage.Tag.ToString().Trim(); }
for (int j = 0; j < this.listVicePage.Items.Count; j++)
{
if (this.listVicePage.Items[j].ForeColor == Color.Red)
{ StrPicturePathName += "|" + model.Dsfm_DressNumber + "_" + System.IO.Path.GetFileName(this.listVicePage.Items[j].Tag.ToString().Trim()); }
else
{ StrPicturePathName += "|" + 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_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_DressBuyDate = StrDressBuyDate;
model.Dsfm_DressRemark = StrDressRemark;
model.Dsfm_UpdateDateTime = StrTime;
model.Dsfm_UpdateName = StrUserID;
clist.Add(dfbll.GetUpdateCommandInfo(model));
if (clist.Count > 0)
{
if (MessageBoxCustom.Show("您确定要保存吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No)
{ return; }
if (StrSelectPathList.Count > 0 || this.delList.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.StrDressNumber + "_" + StrArray[0].Trim();
DataTable tbl = orbll.GetView_Custom("tb_ErpDressFrom", StrWhere: "Dsfm_DressNumber != '" + this.StrDressNumber + "' And Dsfm_DressPhotoNames like '%" + StrPhotoName + "%'", ShowColumnName: "ID").Tables[0];
if (tbl.Rows.Count <= 0)
{
backgroundWorker.ReportProgress(0, "正在删除" + StrArray[1].Trim() + "...");
LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.DeleteDressPhoto(System.IO.Path.GetFileNameWithoutExtension(StrPhotoName) + ".jpg", IsRecursion: true, DeleteDressType: 0);
LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.DeleteDressPhoto(StrPhotoName, IsRecursion: true, DeleteDressType: 1);
}
}
}
if (StrSelectPathList.Count > 0)
{
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)
{
this.IsSaveed = true;
this.delList.Clear();
MessageBoxCustom.Show("保存成功!");
if (this.lblCoverPage.ForeColor == Color.Red)
{
this.lblCoverPage.ForeColor = LYFZ.ComponentLibrary.UIBlueThemeResources.DefaultTextColor;
this.pictCoverPage.Tag = System.IO.Path.GetFileName(this.pictCoverPage.Tag.ToString().Trim());
}
for (int i = 0; i < this.listVicePage.Items.Count; i++)
{
if (this.listVicePage.Items[i].ForeColor == Color.Red)
{
this.listVicePage.Items[i].ForeColor = LYFZ.ComponentLibrary.UIBlueThemeResources.DefaultTextColor;
this.listVicePage.Items[i].Tag = System.IO.Path.GetFileName(this.listVicePage.Items[i].Tag.ToString().Trim());
}
}
return;
}
else
{ MessageBoxCustom.Show("保存失败!"); return; }
}
}
else
{ MessageBoxCustom.Show("礼服无效!"); return; }
}
///
/// 取消
///
///
///
void btnCancel_Click(object sender, EventArgs e)
{
this.Close();
}
///
/// 删除封页
///
///
///
void btnDeleteCoverPage_Click(object sender, EventArgs e)
{
if (this.pictCoverPage.Image != null)
{
if (this.lblCoverPage.ForeColor != Color.Red)
{ this.delList.Add(this.pictCoverPage.Tag.ToString().Trim() + "|封面"); }
this.pictCoverPage.Image = null;
this.pictCoverPage.Tag = null;
this.lblCoverPage.ForeColor = LYFZ.ComponentLibrary.UIBlueThemeResources.DefaultTextColor;
}
}
///
/// 浏览封页
///
///
///
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; }
}
this.btnDeleteCoverPage_Click(this, null);
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;
}
}
///
/// 删除页图
///
///
///
void btnDeleteVicePage_Click(object sender, EventArgs e)
{
if (this.listVicePage.Items.Count > 0)
{
if (this.listVicePage.SelectedItems.Count > 0)
{
List listItem = new List();
int forInt = 1;
for (int i = 0; i < this.listVicePage.SelectedItems.Count; i++)
{
if (this.listVicePage.SelectedItems[i].ForeColor != Color.Red)
{
this.delList.Add(this.listVicePage.SelectedItems[i].Tag.ToString().Trim() + "|页图" + forInt);
forInt++;
}
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);
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.listVicePage.Items.Add(lvi);
}
if (StrDelete.Count > 0)
{ MessageBoxCustom.Show("选择的页图有与封面或其他页图同名!"); }
}
}
///
/// 成本价格输入限制
///
///
///
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 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 pictCoverPage_MouseDoubleClick(object sender, MouseEventArgs e)
{
if (this.pictCoverPage.Image != null && this.pictCoverPage.Tag != null && !string.IsNullOrEmpty(this.pictCoverPage.Tag.ToString().Trim()))
{
Image img = null;
if (this.lblCoverPage.ForeColor == Color.Red)
{ img = new Bitmap(Image.FromStream(new MemoryStream(System.IO.File.ReadAllBytes(this.pictCoverPage.Tag.ToString().Trim())))); }
else
{ img = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDressImage_Original(this.pictCoverPage.Tag.ToString().Trim()); }
if (img != null)
{
LYFZ.Software.MainBusiness.InitialSet.Product.FrmProductPic frm = new InitialSet.Product.FrmProductPic();
frm.FrmImage = img;
frm.ShowDialog();
}
}
}
///
/// 页图双击查看
///
///
///
void listVicePage_MouseDoubleClick(object sender, MouseEventArgs e)
{
if (this.listVicePage.Items.Count > 0)
{
if (this.listVicePage.SelectedItems.Count > 0)
{
Image img = null;
if (this.listVicePage.SelectedItems[0].ForeColor == Color.Red)
{ img = new Bitmap(Image.FromStream(new MemoryStream(System.IO.File.ReadAllBytes(this.listVicePage.SelectedItems[0].Tag.ToString().Trim())))); }
else
{ img = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDressImage_Original(this.listVicePage.SelectedItems[0].Tag.ToString().Trim()); }
if (img != null)
{
LYFZ.Software.MainBusiness.InitialSet.Product.FrmProductPic frm = new InitialSet.Product.FrmProductPic();
frm.FrmImage = img;
frm.ShowDialog();
}
}
}
}
}
}