using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Linq; using System.Text; using System.Windows.Forms; using System.Collections; using LYFZ.Model.API; namespace LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls { public partial class OrderInfoOneControlsEx : LYFZ.Software.UI.DoorCityProcess.SetCustomControls.OrderInfoOneControlsEx { LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder(); public delegate void SeriesUpgradeHandler(); public event SeriesUpgradeHandler SeriesUpgradeEvent; public bool bUpgrade = false; public OrderInfoOneControlsEx(object obj = null) { this.txtSinceOrderNumber.ImeMode = System.Windows.Forms.ImeMode.Disable; this.cmbtreevTaoXiName.ComboBoxTree_NodeMouseClick += cmbtreevTaoXiName_ComboBoxTree_NodeMouseClick; this.cmbtreevPackageName.ComboBoxTree_NodeMouseClick += cmbtreevPackageName_ComboBoxTree_NodeMouseClick; this.btnPackageSet.Click += btnPackageSet_Click; this.btnOrderClsssSet.Click += btnOrderClsssSet_Click; this.btnTaoXiNameSet.Click += btnTaoXiNameSet_Click; this.PictAnnotation.Click += PictAnnotation_Click; this.txtTaoXiPrice.KeyPress += txtTaoXiPrice_KeyPress; this.txtTaoXiPrice.Leave += txtTaoXiPrice_Leave; this.txtTaoXiPricePackage.KeyPress += txtTaoXiPricePackage_KeyPress; this.txtSinceOrderNumber.KeyPress += txtSinceOrderNumber_KeyPress; this.txtOrderNumber.EventTextBoxEx_TextChanged += txtOrderNumber_EventTextBoxEx_TextChanged; LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_PackagesCategoryAndName(this.cmbtreevTaoXiName, "AAAAAAB"); LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_PackagesCategoryAndName(this.cmbtreevPackageName, "AAAAACA", IsFirstNodeNull: true); LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BFAGAHBFDGCABAJIH", this.cmbtreevOrderClass); this.SetOrderPanel(obj); ///礼包功能的的版本权限 List hideControl = new List(); //LYFZSS.SystemSpecterPossessed.ISystemSpecterPossessed.GetMySystemSpecter = LYFZSS.SystemSpecterType.SST_D; hideControl.Add(this.panelEx1); bool b = LYFZ.Software.MainBusiness.VersionControl.StaticVersion.BindVersionShowHideControl( VersionControl.VersionFunctionEnum.开单礼包功能, hideControl, null, null); if(!b) { //this.Height -= this.panelEx1.Height; this.IsShowPackage = false; } //CheckAndCreatePickUpClass(); //LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("AAAAQJFS", this.cmbtreevPickup); //btn_PickUpSet.Click += btn_PickUpSet_Click; this.btn_SeriesUpgrade.Visible = false; this.btn_SeriesUpgrade.Click += btn_SeriesUpgrade_Click; } void btn_SeriesUpgrade_Click(object sender, EventArgs e) { if(MessageBoxCustom.Show("是否确定修改套系?","提示消息" , MessageBoxButtons.OKCancel)==DialogResult.OK) { if (SeriesUpgradeEvent != null) { bUpgrade = true; SeriesUpgradeEvent(); } //throw new NotImplementedException(); this.cmbtreevTaoXiName.Enabled = true; this.cmbtreevTaoXiName.Text = ""; this.cmbtreevTaoXiName.Tag = null; } } void DeleteSignAndProduct() { } public delegate void OrderInfoOne_cmbtreevOrderTaoXiNodeMouseClick(object objTaoXiNameTag, bool IsActivity, LYFZ.EnumPublic.EnumPackagesType PackagesType, Hashtable htData); /// /// 用event 关键字声明事件对象 /// [Category("控件扩展事件"), Description("提示详情")] public event OrderInfoOne_cmbtreevOrderTaoXiNodeMouseClick OrderTaoXiNodeMouseClick; /// /// 套系名称节点点击事件 /// /// /// void cmbtreevTaoXiName_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e) { if (!string.IsNullOrEmpty(this.cmbtreevTaoXiName.Text.Trim())) { bool IsUpdatePackages = true; if (this.modelOrder != null && !bUpgrade) { if (!string.IsNullOrEmpty(this.modelOrder.Ord_Number.Trim())) { DataTable tblSights = orbll.GetView_Custom("tb_ErpOrderDigital Left Join Vw_PhotographyView ON Ordv_ViceNumber = Ordpg_ViceNumber", StrWhere: "Ordv_Number = '" + this.modelOrder.Ord_Number.Trim() + "'", ShowColumnName: "(case when (isnull([dbo].[Vw_PhotographyView].Ordpg_PhotographyStatus, 1)) = 0 then '未拍' else case when (isnull([dbo].[Vw_PhotographyView].Ordpg_PhotographyStatus, 1)) = isnull([dbo].[Vw_PhotographyView].Ordpg_PhotographyCount, 1) then 'OK' else '拍照中' end end) AS 拍照状态").Tables[0]; for (int i = 0; i < tblSights.Rows.Count; i++) { if (tblSights.Rows[i]["拍照状态"].ToString().Trim() != "未拍") { IsUpdatePackages = false; break; } } if (!IsUpdatePackages) { DataTable tblOrder = orbll.GetView_Custom("tb_ErpOrder", StrWhere: "Ord_Number = '" + this.modelOrder.Ord_Number.Trim() + "'", ShowColumnName: "Ord_Class").Tables[0]; if (tblOrder.Rows[0]["Ord_Class"].ToString().Trim() == "0") { IsUpdatePackages = true; } } } } if (IsUpdatePackages) { this.cmbtreevPackageName.TextFindTag(""); this.txtTaoXiPricePackage.Text = ""; this.numIntoBottomPackage.Value = 0; this.numIntoRegisterPackage.Value = 0; DataTable dt = orbll.GetView_Custom("tb_ErpPackages", StrWhere: "Pak_PackagesID = '" + this.cmbtreevTaoXiName.Tag.ToString().Trim() + "'", ShowColumnName: "Pak_UnitPrice,Pak_IntoTheBook AS Pgm_IntoRegisterQuantity,Pak_IntoTheArchive AS Pgm_IntoBottomQuantity").Tables[0]; bool IsActivity = SetOrderValue(dt); if (this.OrderTaoXiNodeMouseClick != null) { this.OrderTaoXiNodeMouseClick(this.cmbtreevTaoXiName.Tag, IsActivity, EnumPublic.EnumPackagesType.AAAAAAB, new Hashtable()); } } } } ///// ///// 检查和创建新的取件方式 ///// //void CheckAndCreatePickUpClass() //{ // LYFZ.BLL.BLL_ErpSystemCategory bllCategory = new BLL.BLL_ErpSystemCategory(); // Model.Model_ErpSystemCategory model = new Model.Model_ErpSystemCategory(); // DataTable dt = bllCategory.GetList(" Sc_ClassCode = 'AAAAQJFS' ").Tables[0]; // if (dt.Rows.Count == 0) // { // model.Sc_ClassCode = "AAAAQJFS"; // model.Sc_ClassName = "取件方式"; // model.Sc_ClassParentID = 0; // model.Sc_IsReadOnly = true; // model.Sc_IsDisable = false; // model.Sc_IsDelete = true; // model.Sc_IsEnabledURL = false; // bllCategory.Add(model); // } //} /// /// 套系礼包名称节点点击事件 /// /// /// void cmbtreevPackageName_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e) { DataTable dt = new DataTable(); string StrUnitPrice = "0"; int StrIntoRegisterQuantity = 0; int StrIntoBottomQuantity = 0; Hashtable htData = new Hashtable(); if (!string.IsNullOrEmpty(this.cmbtreevPackageName.Text.Trim())) { dt = orbll.GetView_Custom("tb_ErpPackages", StrWhere: "Pak_PackagesID = '" + this.cmbtreevPackageName.Tag.ToString().Trim() + "'", ShowColumnName: "Pak_UnitPrice,Pak_IntoTheBook,Pak_IntoTheArchive,Pak_OptionalSeveral").Tables[0]; if (dt.Rows.Count > 0) { if (!string.IsNullOrEmpty(dt.Rows[0]["Pak_UnitPrice"].ToString().Trim())) { StrUnitPrice = dt.Rows[0]["Pak_UnitPrice"].ToString(); } if (this.IsShowIntoRegisterAndIntoBottom) { if (!string.IsNullOrEmpty(dt.Rows[0]["Pak_IntoTheBook"].ToString().Trim())) { StrIntoRegisterQuantity = Convert.ToInt32(dt.Rows[0]["Pak_IntoTheBook"]); } if (!string.IsNullOrEmpty(dt.Rows[0]["Pak_IntoTheArchive"].ToString().Trim())) { StrIntoBottomQuantity = Convert.ToInt32(dt.Rows[0]["Pak_IntoTheArchive"]); } } } htData["OptionalSeveral"] = dt.Rows[0]["Pak_OptionalSeveral"].ToString().Trim(); //if (Convert.ToInt32(dt.Rows[0]["Pak_OptionalSeveral"]) >= 0) //{ // LYFZ.Software.MainBusiness.DoorCityProcess.SetSmallForm.ToolboxPackageListViewSamllForm frm = new SetSmallForm.ToolboxPackageListViewSamllForm(); // frm.intOptionalSeveral = Convert.ToInt32(dt.Rows[0]["Pak_OptionalSeveral"]); // frm.StrPackageCode = this.cmbtreevPackageName.Tag.ToString().Trim(); // frm.ShowDialog(); //} } this.txtTaoXiPricePackage.Text = StrUnitPrice; this.numIntoRegisterPackage.Value = StrIntoRegisterQuantity; this.numIntoBottomPackage.Value = StrIntoBottomQuantity; if (this.OrderTaoXiNodeMouseClick != null) { this.OrderTaoXiNodeMouseClick(this.cmbtreevPackageName.Tag, true, EnumPublic.EnumPackagesType.AAAAACA, htData); } } /// /// 订单类别设置 /// /// /// void btnOrderClsssSet_Click(object sender, EventArgs e) { LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet(); frm.TypeName = "BFAGAHBFDGCABAJIH"; frm.Version = "Version"; if (frm.ShowDialog() == DialogResult.OK) { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BFAGAHBFDGCABAJIH", this.cmbtreevOrderClass); } } /// /// 套系礼包设置 /// /// /// void btnPackageSet_Click(object sender, EventArgs e) { LYFZ.Software.MainBusiness.InitialSet.PackagesGoodsSetFormMain frm = new InitialSet.PackagesGoodsSetFormMain("1"); frm.ShowDialog(); if (frm.IsSaveed) { object StrTaoXiNameTag = this.cmbtreevTaoXiName.Tag; LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_PackagesCategoryAndName(this.cmbtreevPackageName, "AAAAACA"); this.cmbtreevTaoXiName.TagFindText(StrTaoXiNameTag); } } /// /// 套系设置 /// /// /// void btnTaoXiNameSet_Click(object sender, EventArgs e) { LYFZ.Software.MainBusiness.InitialSet.PackagesGoodsSetFormMain frm = new InitialSet.PackagesGoodsSetFormMain("0"); frm.ShowDialog(); if (frm.IsSaveed) { object StrTaoXiNameTag = this.cmbtreevTaoXiName.Tag; LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_PackagesCategoryAndName(this.cmbtreevTaoXiName, "AAAAAAB"); this.cmbtreevTaoXiName.TagFindText(StrTaoXiNameTag); } } /// /// 编辑标注 /// /// /// void PictAnnotation_Click(object sender, EventArgs e) { Image img = null; if (Convert.ToBoolean(this.PictAnnotation.Tag)) { if (!string.IsNullOrEmpty(this.txtAnnotation.Text.Trim())) { if (MessageBoxCustom.Show("取消标注后将清空标注说明!", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No) { return; } } this.txtAnnotation.Text = ""; this.panelAnnotation.Visible = false; this.PictAnnotation.Tag = false; img = LYFZ.Software.UI.DoorCityProcess.Properties.Resources.OpenOrderplus; this.toolTip1.SetToolTip(this.PictAnnotation, "添加标注"); } else { this.panelAnnotation.Visible = true; this.PictAnnotation.Tag = true; img = LYFZ.Software.UI.DoorCityProcess.Properties.Resources.OpenOrderLess; this.toolTip1.SetToolTip(this.PictAnnotation, "取消标注"); } this.PictAnnotation.Image = img; } /// /// 套系价格限制输入 /// /// /// void txtTaoXiPrice_KeyPress(object sender, KeyPressEventArgs e) { if (Convert.ToString(e.KeyChar) == ".") { if (this.txtTaoXiPrice.Text.Trim().IndexOf('.') != -1 || string.IsNullOrEmpty(this.txtTaoXiPrice.Text.Trim())) { e.Handled = true; } return; } else if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar)) { e.Handled = true; } if (!System.Text.RegularExpressions.Regex.IsMatch(e.KeyChar.ToString(), "[0-9]") && e.KeyChar != ' ' && e.KeyChar != '\b') { e.Handled = true; } } /// /// 套系礼包价格限制输入 /// /// /// void txtTaoXiPricePackage_KeyPress(object sender, KeyPressEventArgs e) { if (Convert.ToString(e.KeyChar) == ".") { } else if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar)) { e.Handled = true; } } /// /// 自定义单号限制输入 /// /// /// void txtSinceOrderNumber_KeyPress(object sender, KeyPressEventArgs e) { if (Convert.ToString(e.KeyChar) == "-" || Convert.ToString(e.KeyChar) == "_") { } else if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar) && !Char.IsLetterOrDigit(e.KeyChar)) { e.Handled = true; } } /// /// 套系金额离开事件 /// /// /// void txtTaoXiPrice_Leave(object sender, EventArgs e) { if (!string.IsNullOrEmpty(this.txtTaoXiPrice.Text.Trim())) { try { if (!LYFZ.Command.Command_Validate.IsNumeric(this.txtTaoXiPrice.Text.Trim())) { this.txtTaoXiPrice.Text = ""; } } catch { this.txtTaoXiPrice.Text = ""; } } } /// /// 订单号的值发生变化后是否显示与隐藏 /// /// void txtOrderNumber_EventTextBoxEx_TextChanged(object sender, EventArgs e) { if (this.txtOrderNumber.Text.Trim() != "") { //this.panelOrderNumber.Visible = true; this.Height = 140; } else { //this.panelOrderNumber.Visible = false; this.Height = 115; } } #region 属性 private LYFZ.ComponentLibrary.ComboBoxTreeViewEx _cmbtreevTaoXi; /// /// 套系控件 /// public LYFZ.ComponentLibrary.ComboBoxTreeViewEx CmbtreevTaoXi { get { _cmbtreevTaoXi = this.cmbtreevTaoXiName; return _cmbtreevTaoXi; } set { _cmbtreevTaoXi = value; this.cmbtreevTaoXiName = _cmbtreevTaoXi; } } private LYFZ.Model.Model_ErpOrder _modelOrder; /// /// 当前选中的订单 /// public LYFZ.Model.Model_ErpOrder modelOrder { get { return _modelOrder; } set { _modelOrder = value; } } private decimal _taoXiPrice; /// /// 获取套系价格 /// public decimal TaoXiPrice { get { if (this.txtTaoXiPrice.Text.Trim() == "") { _taoXiPrice = 0; } else { _taoXiPrice = Convert.ToDecimal(this.txtTaoXiPrice.Text); } return _taoXiPrice; } set { _taoXiPrice = value; } } private bool _isShowTaoXiNameSet; /// /// 是否显示套系名称设置按钮 /// public bool IsShowTaoXiNameSet { get { return _isShowTaoXiNameSet; } set { _isShowTaoXiNameSet = value; this.btnTaoXiNameSet.Enabled = _isShowTaoXiNameSet; } } private bool _isOrderClsssSet; /// /// 是否显示订单类别设置按钮 /// public bool IsOrderClsssSet { get { return _isOrderClsssSet; } set { _isOrderClsssSet = value; this.btnOrderClsssSet.Enabled = _isOrderClsssSet; } } private string _strCustomPrefix; /// /// 自定义订单号前缀 /// public string StrCustomPrefix { get { _strCustomPrefix = this.lblCustomPrefix.Text.Trim(); return _strCustomPrefix; } set { _strCustomPrefix = value; this.lblCustomPrefix.Text = value; } } private bool _IsHotelInfo = false; /// /// 酒店信息 /// public bool IsHotelInfo { get { _IsHotelInfo = this.panelHotelInfo.Visible; return _IsHotelInfo; } set { _IsHotelInfo = value; this.panelHotelInfo.Visible = _IsHotelInfo; if (_IsHotelInfo) { this.panelEx4.Visible = false; this.txtRemark.Height = 79; this.panelEx5.Height = 90; } else { this.panelEx4.Visible = true; this.txtRemark.Height = 112; this.panelEx5.Height = 120; } this.SetThisHeight(); } } private bool _IsShowSinceOrderNumber; /// /// 是否显示自定义订单号 /// public bool IsShowSinceOrderNumber { get { return _IsShowSinceOrderNumber; } set { _IsShowSinceOrderNumber = value; } } private bool _IsShowIntoRegisterAndIntoBottom = true; /// /// 是否显示入册入底 /// public bool IsShowIntoRegisterAndIntoBottom { get { return _IsShowIntoRegisterAndIntoBottom; } set { _IsShowIntoRegisterAndIntoBottom = value; this.panelEx4.Visible = _IsShowIntoRegisterAndIntoBottom; this.panelEx6.Visible = _IsShowIntoRegisterAndIntoBottom; this.SetThisHeight(); } } /// /// 是否显示礼包 /// bool IsShowPackage = false; /// /// 获取入册入底 /// /// public Hashtable GetIntoRegisterAndIntoBottom() { Hashtable htData = new Hashtable(); htData["IntoRegister"] = this.numIntoRegister.Value; htData["IntoBottom"] = this.numIntoBottom.Value; return htData; } #endregion /// /// 设置订单资料(订单加载) /// public bool SetOrderValue(LYFZ.Model.Model_ErpOrder model) { string StrCustomNumber = model.Ord_SinceOrderNumber; //if (!string.IsNullOrEmpty(this.lblCustomPrefix.Text.Trim())) //{ // if (!string.IsNullOrEmpty(model.Ord_SinceOrderNumber)) // { // if (model.Ord_SinceOrderNumber.IndexOf(this.lblCustomPrefix.Text.Trim()) != -1) // { StrCustomNumber = model.Ord_SinceOrderNumber.Substring(this.lblCustomPrefix.Text.Trim().Length, model.Ord_SinceOrderNumber.Length - this.lblCustomPrefix.Text.Trim().Length); }// model.Ord_SinceOrderNumber.Replace(this.lblCustomPrefix.Text.Trim(), ""); } // } //} if (!string.IsNullOrEmpty(StrCustomNumber)) { this.lblCustomPrefix.Visible = false; this.txtSinceOrderNumber.Location = new Point(79, 0); this.txtSinceOrderNumber.Width = 188; this.lblCustomPrefix.Tag = false; } else { this.lblCustomPrefix.Tag = true; } this.txtSinceOrderNumber.Text = StrCustomNumber; if (!string.IsNullOrEmpty(this.txtSinceOrderNumber.Text.Trim())) { this.panelSinceOrderNumber.Visible = true; this.IsShowSinceOrderNumber = this.panelSinceOrderNumber.Visible; } this.txtOrderNumber.Text = model.Ord_Number; string strSeriesName = model.Ord_SeriesName.Trim(); if (strSeriesName == "") { strSeriesName = model.Ord_PhotographyCategory.Trim(); } this.cmbtreevTaoXiName.TextFindTag(strSeriesName); this.cmbtreevOrderClass.TextFindTag(model.Ord_OrderClass.Trim()); //this.cmbtreevPickup.TextFindTag(model.Ord_PickUpType); this.txtRemark.Text = model.Ord_Remark; this.txtHotelInfo.Text = model.Ord_HotelInfo; this.cmbtreevPackageName.TextFindTag(model.Ord_PackageName); this.txtTaoXiPricePackage.Text = model.Ord_PackagePrice > 0 ? model.Ord_PackagePrice.ToString().Trim() : ""; this.txtTaoXiPrice.Text = (model.Ord_SeriesPrice - model.Ord_PackagePrice).ToString(); this.txtAnnotation.Text = model.Ord_OrderAnnotation.Trim(); if (!string.IsNullOrEmpty(model.Ord_OrderAnnotation.Trim())) { this.panelAnnotation.Visible = true; this.toolTip1.SetToolTip(this.PictAnnotation, "取消标注"); this.PictAnnotation.Tag = true; this.PictAnnotation.Image = LYFZ.Software.UI.DoorCityProcess.Properties.Resources.OpenOrderLess; } else { this.panelAnnotation.Visible = false; } if (Convert.ToInt32(model.Ord_Type) != Convert.ToInt32(LYFZ.EnumPublic.OrderType.儿童订单)) { DataTable dt = orbll.GetView_Custom("tb_ErpOrderDigital", StrWhere: "Ordv_Number = '" + model.Ord_Number + "'", ShowColumnName: "Ordv_IntoRegisterQuantity,Ordv_IntoBottomQuantity,Ordv_IntoRegisterQuantityPackage,Ordv_IntoBottomQuantityPackage").Tables[0]; if (dt.Rows.Count > 0) { this.numIntoRegisterPackage.Value = Convert.ToInt32(dt.Rows[0]["Ordv_IntoRegisterQuantityPackage"]); if (!string.IsNullOrEmpty(dt.Rows[0]["Ordv_IntoRegisterQuantity"].ToString().Trim())) { if (Convert.ToInt32(dt.Rows[0]["Ordv_IntoRegisterQuantity"]) - Convert.ToInt32(dt.Rows[0]["Ordv_IntoRegisterQuantityPackage"]) < 0) { this.numIntoRegister.Value = 0; } else { this.numIntoRegister.Value = Convert.ToInt32(dt.Rows[0]["Ordv_IntoRegisterQuantity"]) - Convert.ToInt32(dt.Rows[0]["Ordv_IntoRegisterQuantityPackage"]); } } else { this.numIntoRegister.Value = 0; } this.numIntoBottomPackage.Value = Convert.ToInt32(dt.Rows[0]["Ordv_IntoBottomQuantityPackage"]); if (!string.IsNullOrEmpty(dt.Rows[0]["Ordv_IntoBottomQuantity"].ToString().Trim())) { this.numIntoBottom.Value = Convert.ToInt32(dt.Rows[0]["Ordv_IntoBottomQuantity"]); } else { this.numIntoBottom.Value = 0; } if (Convert.ToInt32(dt.Rows[0]["Ordv_IntoBottomQuantityPackage"]) >= 0) { if (Convert.ToInt32(this.numIntoBottom.Value) > 1) { this.numIntoBottom.Value -= this.numIntoBottomPackage.Value; } } } else { this.numIntoRegister.Value = 0; this.numIntoBottom.Value = 0; this.numIntoRegisterPackage.Value = 0; this.numIntoBottomPackage.Value = 0; } } DataTable tb = orbll.GetView_Custom("tb_ErpOrdersPhotography", StrWhere: "Ordpg_Number = '" + model.Ord_Number + "' And Ordpg_PhotographyStatus != '0'", ShowColumnName: "Count(ID) AS CountID").Tables[0]; if (tb.Rows.Count > 0 && Convert.ToInt32(tb.Rows[0]["CountID"]) > 0) { this.cmbtreevTaoXiName.Enabled = false; if (BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.SeriesUpgrade) { this.btn_SeriesUpgrade.Visible = true; } } if (!this.cmbtreevTaoXiName.Enabled && !string.IsNullOrEmpty(this.cmbtreevPackageName.Text.Trim())) { this.cmbtreevPackageName.Enabled = false; } this.modelOrder = model; bool IsActivity = GetIsActivity(); this.txtSinceOrderNumber.ReadOnly = IsActivity; if (!string.IsNullOrEmpty(this.txtSinceOrderNumber.Text.Trim())) { this.txtSinceOrderNumber.ReadOnly = true; } this.txtTaoXiPrice.ReadOnly = IsActivity; this.numIntoBottom.ReadOnly = IsActivity; this.numIntoRegister.ReadOnly = IsActivity; if (!model.Ord_Number.Equals(model.Ord_SinceOrderNumber)) { this.panelOrderNumber.Visible = true; } this.SetThisHeight(); if(!string.IsNullOrEmpty(modelOrder.Ord_OldSeriesName)) { pan_OldSeriesData.Visible = true; lab_OldSeriesData.Visible = true; lab_OldSeriesData.Text = "原套系:" + modelOrder.Ord_OldSeriesName + " 原套系金额:" + modelOrder.Ord_OldSeriesPrice.ToString("0.00"); } return IsActivity; } /// /// 设置订单资料(套系选择) /// /// DataRow数据源 /// 是否为活动套系 public bool SetOrderValue(DataTable dt) { bool IsActivity = GetIsActivity(); this.txtTaoXiPrice.Text = "0"; this.numIntoRegister.Value = 0; this.numIntoBottom.Value = 0; if (dt.Rows.Count > 0) { if (!string.IsNullOrEmpty(dt.Rows[0]["Pak_UnitPrice"].ToString().Trim())) { this.txtTaoXiPrice.Text = dt.Rows[0]["Pak_UnitPrice"].ToString(); } if (this.IsShowIntoRegisterAndIntoBottom) { if (!string.IsNullOrEmpty(dt.Rows[0]["Pgm_IntoRegisterQuantity"].ToString().Trim())) { this.numIntoRegister.Value = Convert.ToInt32(dt.Rows[0]["Pgm_IntoRegisterQuantity"]); } if (!string.IsNullOrEmpty(dt.Rows[0]["Pgm_IntoBottomQuantity"].ToString().Trim())) { this.numIntoBottom.Value = Convert.ToInt32(dt.Rows[0]["Pgm_IntoBottomQuantity"]); } } } return IsActivity; } /// /// 设置订单资料 /// /// DataRow数据源 public void SetOrderPackageValue(DataTable dt) { this.txtTaoXiPricePackage.Text = "0"; this.numIntoRegisterPackage.Value = 0; this.numIntoBottomPackage.Value = 0; if (dt.Rows.Count > 0) { if (!string.IsNullOrEmpty(dt.Rows[0]["Pak_UnitPrice"].ToString().Trim())) { this.txtTaoXiPricePackage.Text = dt.Rows[0]["Pak_UnitPrice"].ToString(); } if (this.IsShowIntoRegisterAndIntoBottom) { if (!string.IsNullOrEmpty(dt.Rows[0]["Pgm_IntoRegisterQuantity"].ToString().Trim())) { this.numIntoRegisterPackage.Value = Convert.ToInt32(dt.Rows[0]["Pgm_IntoRegisterQuantity"]); } if (!string.IsNullOrEmpty(dt.Rows[0]["Pgm_IntoBottomQuantity"].ToString().Trim())) { this.numIntoBottomPackage.Value = Convert.ToInt32(dt.Rows[0]["Pgm_IntoBottomQuantity"]); } } } } /// /// 移除礼包的项目 /// public void RemovePackageItem() { this.cmbtreevPackageName.SetTextAndTag_ValueNull(); this.txtTaoXiPricePackage.Text = ""; this.numIntoRegisterPackage.Value = 0; this.numIntoBottomPackage.Value = 0; } /// /// 是否能操作 /// /// bool GetIsActivity() { bool IsActivity = false; if (this.cmbtreevTaoXiName.Tag != null) { if (this.cmbtreevTaoXiName.Tag.ToString().Trim() == "AAAAAAI") { IsActivity = true; } else if (this.cmbtreevTaoXiName.Parent != null) { Hashtable htData = this.cmbtreevTaoXiName.TagFindParentIsParent(this.cmbtreevTaoXiName.Tag.ToString().Trim()); if (htData["Tag"].ToString().Trim() == "AAAAAAI") { IsActivity = true; } } } this.txtAnnotation.ReadOnly = IsActivity;//false; this.txtTaoXiPrice.ReadOnly = IsActivity;//false; this.numIntoBottom.Enabled = !IsActivity;//true; this.numIntoRegister.Enabled = !IsActivity;//true; return IsActivity; } #region 绑定数据 17-4-7 杨云奕 添加 public void BindApiData(Api_ErpOrderModel erpModel) { erpModel.strOrderClass = this.cmbtreevOrderClass.Text; erpModel.bIsShowSinceOrderNumber = this.IsShowSinceOrderNumber; if (this.IsShowSinceOrderNumber) { if (erpModel.OrderID == 0) { string strOrderPrefix = LYFZ.BLL.Common.BLL_Com_Data.GetOrderCustomPrefix(erpModel.orderType); erpModel.SinceOrderNumber = strOrderPrefix + this.txtSinceOrderNumber.Text; } else { erpModel.SinceOrderNumber = this.txtSinceOrderNumber.Text; } } erpModel.strTaoXiName = this.cmbtreevTaoXiName.Text; erpModel.strTaoXiCode = this.cmbtreevTaoXiName.Tag == null ? "" : (this.cmbtreevTaoXiName.Tag).ToString(); erpModel.strParentTaoXiName = this.cmbtreevTaoXiName.TextFindParentText(this.cmbtreevTaoXiName.Text.Trim()); erpModel.strNumIntoBottom = this.numIntoBottom.Value.ToString(); erpModel.strBottomQuantityPackage = this.numIntoBottomPackage.Value.ToString(); erpModel.strRegisterQuantityPackage = this.numIntoRegisterPackage.Value.ToString(); erpModel.strNumIntoRegister = this.numIntoRegister.Value.ToString(); erpModel.strRemark = this.txtRemark.Text; erpModel.strHotelInfo = this.txtHotelInfo.Text; erpModel.strPackageName = this.cmbtreevPackageName.Text; erpModel.strPackagePrice = this.txtTaoXiPricePackage.Text.Trim() == "" ? "0" : this.txtTaoXiPricePackage.Text; erpModel.strTaoXiPrice = (string.IsNullOrEmpty(this.txtTaoXiPrice.Text) ? "0" : this.txtTaoXiPrice.Text).ToString(); //erpModel.IsMagess = this.IsMagess; erpModel.strAnnotation = this.txtAnnotation.Text; erpModel.bIsShowIntoRegisterAndIntoBottom = this.IsShowIntoRegisterAndIntoBottom; } #endregion /// /// 获取订单资料 /// public LYFZ.Model.Model_ErpOrder GetOrderValue(ref Hashtable htData_RegisterAndBottom, string StrNewOrderNumber, string StrOrderType, string StrLovedStyle, string StrCustomerSource, string StrClass, string StrInfoID, DateTime StrTime, string StrUserID, bool IsMagess = true) { if (IsMagess) { if (this.IsShowSinceOrderNumber) { if (this.txtSinceOrderNumber.Text.Trim() == "") { MessageBoxCustom.Show("自定单号不能为空!"); return null; } } if (this.cmbtreevTaoXiName.Text.Trim() == "") { MessageBoxCustom.Show("套系名称不能为空!"); return null; } if (this.cmbtreevOrderClass.Text.Trim() == "") { MessageBoxCustom.Show("订单类别不能为空!"); return null; } if (this.txtTaoXiPrice.Text.Trim() == "") { MessageBoxCustom.Show("套系价格不能为空!"); return null; } try { Convert.ToDecimal(this.txtTaoXiPrice.Text.Trim()); } catch { MessageBoxCustom.Show("套系价格格式错误!"); return null; } } if (this.numIntoBottom.Value.ToString().Trim() == "") { MessageBoxCustom.Show("入底不能为空!"); return null; } if (this.numIntoRegister.Value.ToString().Trim() == "") { MessageBoxCustom.Show("入册不能为空!"); return null; } if (this.txtRemark.Text.Trim().Length > 300) { MessageBoxCustom.Show("订单备注不能超过300字!"); return null; } if (this.txtHotelInfo.Text.Trim().Length > 100) { MessageBoxCustom.Show("酒店信息不能超过300字!"); return null; } LYFZ.Model.Model_ErpOrder model = null; if (this.modelOrder != null) { model = this.modelOrder; //model.Ord_Number = this.txtOrderNumber.Text; model.Ord_UpdateDateTime = StrTime; model.Ord_UpdateName = StrUserID; } else { model = new Model.Model_ErpOrder(); model.Ord_Number = StrNewOrderNumber; model.Ord_Type = StrOrderType; model.Ord_CreateDateTime = StrTime; model.Ord_CreateName = StrUserID; } if (LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.IsCustomOrderNumber) { string strCustomNumber = this.txtSinceOrderNumber.Text; if (this.lblCustomPrefix.Tag != null) { if ((bool)this.lblCustomPrefix.Tag) { strCustomNumber = this.lblCustomPrefix.Text + strCustomNumber; } } model.Ord_SinceOrderNumber = strCustomNumber; DataTable tblCount = new DataTable(); if (!string.IsNullOrEmpty(model.Ord_Number)) { tblCount = new BLL.BLL_ErpOrder().GetView_Custom("tb_ErpOrder", StrWhere: "Ord_SinceOrderNumber = '" + model.Ord_SinceOrderNumber + "' and Ord_Number != '" + model.Ord_Number.Trim() + "'", ShowColumnName: "ID").Tables[0]; } else { tblCount = new BLL.BLL_ErpOrder().GetView_Custom("tb_ErpOrder", StrWhere: "Ord_SinceOrderNumber = '" + model.Ord_SinceOrderNumber + "' ", ShowColumnName: "ID").Tables[0]; } if (tblCount.Rows.Count > 0) { MessageBoxCustom.Show("自定义单已被使用,不能重复使用!"); return null; } } else { model.Ord_SinceOrderNumber = this.modelOrder.Ord_SinceOrderNumber; } if (model.Ord_DividedShop == null || string.IsNullOrEmpty(model.Ord_DividedShop.Trim())) { model.Ord_DividedShop = StrInfoID; } model.Ord_Class = StrClass; if (StrClass == "1" && string.IsNullOrEmpty(LYFZ.Command.Command_Validate.DateTimeToString(model.Ord_SaveOrderDateTime))) { model.Ord_SaveOrderDateTime = StrTime; } model.Ord_CustomerSource = StrCustomerSource; model.Ord_LovedStyle = StrLovedStyle; model.Ord_PhotographyCategory = this.cmbtreevTaoXiName.TextFindParentText(this.cmbtreevTaoXiName.Text.Trim()); model.Ord_SeriesName = this.cmbtreevTaoXiName.Text; decimal decTaoXiPrice = 0; if (!string.IsNullOrEmpty(this.txtTaoXiPrice.Text.Trim())) { decTaoXiPrice = Convert.ToDecimal(this.txtTaoXiPrice.Text.Trim()); } model.Ord_OrderClass = this.cmbtreevOrderClass.Text; model.Ord_PackageName = this.cmbtreevPackageName.Text.Trim(); model.Ord_PackagePrice = this.txtTaoXiPricePackage.Text.Trim() == "" ? 0 : Convert.ToDecimal(this.txtTaoXiPricePackage.Text); model.Ord_SeriesPrice = decTaoXiPrice + model.Ord_PackagePrice; model.Ord_OrderAnnotation = this.txtAnnotation.Text.Trim(); if (this.IsShowIntoRegisterAndIntoBottom) { htData_RegisterAndBottom["IntoRegisterQuantity"] = Convert.ToInt32(this.numIntoRegister.Value); htData_RegisterAndBottom["IntoBottomQuantity"] = Convert.ToInt32(this.numIntoBottom.Value); htData_RegisterAndBottom["IntoRegisterQuantityPackage"] = Convert.ToInt32(this.numIntoRegisterPackage.Value); htData_RegisterAndBottom["IntoBottomQuantityPackage"] = Convert.ToInt32(this.numIntoBottomPackage.Value); } model.Ord_Remark = this.txtRemark.Text; model.Ord_HotelInfo = this.txtHotelInfo.Text.Trim(); return model; } /// /// 设置自己义单号和订单号是否显示 /// /// public void SetOrderPanel(object obj) { if (obj != null) { Hashtable htData = (Hashtable)obj; this.lblCustomPrefix.Text = htData["StrPrefix"].ToString().Trim(); this.txtOrderNumber.Text = htData["IsOrderNumber"].ToString(); this.panelOrderNumber.Visible = false; if (!string.IsNullOrEmpty(this.txtSinceOrderNumber.Text.Trim())) { this.panelSinceOrderNumber.Visible = true; } else { this.panelSinceOrderNumber.Visible = LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.IsCustomOrderNumber; } this.IsShowSinceOrderNumber = this.panelSinceOrderNumber.Visible; if (htData["StrOrderType"].ToString().Trim() == "婚庆订单") { this.IsShowPackage = false; } else { this.IsShowPackage = LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.GiftsPacksSetsofLines; } this.panelEx1.Visible = this.IsShowPackage; this.SetThisHeight(); } } /// /// 设置控件高 /// public void SetThisHeight() { int IntHeight = this.flowLayoutPanel2.Location.Y + (this.panelEx5.Location.Y + this.panelEx5.Height) + 2; if (this.IsShowPackage) { IntHeight += this.panelEx1.Height; } this.Height = IntHeight; } } }