123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924 |
- 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<Control> hideControl = new List<Control>();
- //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);
- /// <summary>
- /// 用event 关键字声明事件对象
- /// </summary>
- [Category("控件扩展事件"), Description("提示详情")]
- public event OrderInfoOne_cmbtreevOrderTaoXiNodeMouseClick OrderTaoXiNodeMouseClick;
- /// <summary>
- /// 套系名称节点点击事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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()); }
- }
- }
- }
- ///// <summary>
- ///// 检查和创建新的取件方式
- ///// </summary>
- //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);
- // }
- //}
- /// <summary>
- /// 套系礼包名称节点点击事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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); }
- }
- /// <summary>
- /// 订单类别设置
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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); }
- }
- /// <summary>
- /// 套系礼包设置
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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);
- }
- }
- /// <summary>
- /// 套系设置
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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);
- }
- }
- /// <summary>
- /// 编辑标注
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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;
- }
- /// <summary>
- /// 套系价格限制输入
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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; }
- }
- /// <summary>
- /// 套系礼包价格限制输入
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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; }
- }
- /// <summary>
- /// 自定义单号限制输入
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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; }
- }
- /// <summary>
- /// 套系金额离开事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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 = ""; }
- }
- }
- /// <summary>
- /// 订单号的值发生变化后是否显示与隐藏
- /// </summary
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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;
- /// <summary>
- /// 套系控件
- /// </summary>
- public LYFZ.ComponentLibrary.ComboBoxTreeViewEx CmbtreevTaoXi
- {
- get
- {
- _cmbtreevTaoXi = this.cmbtreevTaoXiName;
- return _cmbtreevTaoXi;
- }
- set
- {
- _cmbtreevTaoXi = value;
- this.cmbtreevTaoXiName = _cmbtreevTaoXi;
- }
- }
- private LYFZ.Model.Model_ErpOrder _modelOrder;
- /// <summary>
- /// 当前选中的订单
- /// </summary>
- public LYFZ.Model.Model_ErpOrder modelOrder
- {
- get { return _modelOrder; }
- set { _modelOrder = value; }
- }
- private decimal _taoXiPrice;
- /// <summary>
- /// 获取套系价格
- /// </summary>
- 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;
- /// <summary>
- /// 是否显示套系名称设置按钮
- /// </summary>
- public bool IsShowTaoXiNameSet
- {
- get { return _isShowTaoXiNameSet; }
- set
- {
- _isShowTaoXiNameSet = value;
- this.btnTaoXiNameSet.Enabled = _isShowTaoXiNameSet;
- }
- }
- private bool _isOrderClsssSet;
- /// <summary>
- /// 是否显示订单类别设置按钮
- /// </summary>
- public bool IsOrderClsssSet
- {
- get { return _isOrderClsssSet; }
- set
- {
- _isOrderClsssSet = value;
- this.btnOrderClsssSet.Enabled = _isOrderClsssSet;
- }
- }
- private string _strCustomPrefix;
- /// <summary>
- /// 自定义订单号前缀
- /// </summary>
- public string StrCustomPrefix
- {
- get
- {
- _strCustomPrefix = this.lblCustomPrefix.Text.Trim();
- return _strCustomPrefix;
- }
- set
- {
- _strCustomPrefix = value;
- this.lblCustomPrefix.Text = value;
- }
- }
- private bool _IsHotelInfo = false;
- /// <summary>
- /// 酒店信息
- /// </summary>
- 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;
- /// <summary>
- /// 是否显示自定义订单号
- /// </summary>
- public bool IsShowSinceOrderNumber
- {
- get { return _IsShowSinceOrderNumber; }
- set { _IsShowSinceOrderNumber = value; }
- }
- private bool _IsShowIntoRegisterAndIntoBottom = true;
- /// <summary>
- /// 是否显示入册入底
- /// </summary>
- public bool IsShowIntoRegisterAndIntoBottom
- {
- get { return _IsShowIntoRegisterAndIntoBottom; }
- set
- {
- _IsShowIntoRegisterAndIntoBottom = value;
- this.panelEx4.Visible = _IsShowIntoRegisterAndIntoBottom;
- this.panelEx6.Visible = _IsShowIntoRegisterAndIntoBottom;
- this.SetThisHeight();
- }
- }
- /// <summary>
- /// 是否显示礼包
- /// </summary>
- bool IsShowPackage = false;
- /// <summary>
- /// 获取入册入底
- /// </summary>
- /// <returns></returns>
- public Hashtable GetIntoRegisterAndIntoBottom()
- {
- Hashtable htData = new Hashtable();
- htData["IntoRegister"] = this.numIntoRegister.Value;
- htData["IntoBottom"] = this.numIntoBottom.Value;
- return htData;
- }
- #endregion
- /// <summary>
- /// 设置订单资料(订单加载)
- /// </summary>
- 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;
- }
- /// <summary>
- /// 设置订单资料(套系选择)
- /// </summary>
- /// <param name="dtRow">DataRow数据源</param>
- /// <param name="IsActivity">是否为活动套系</param>
- 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;
- }
- /// <summary>
- /// 设置订单资料
- /// </summary>
- /// <param name="dtRow">DataRow数据源</param>
- 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"]);
- }
- }
- }
- }
- /// <summary>
- /// 移除礼包的项目
- /// </summary>
- public void RemovePackageItem()
- {
- this.cmbtreevPackageName.SetTextAndTag_ValueNull();
- this.txtTaoXiPricePackage.Text = "";
- this.numIntoRegisterPackage.Value = 0;
- this.numIntoBottomPackage.Value = 0;
- }
- /// <summary>
- /// 是否能操作
- /// </summary>
- /// <param name="IsActivity"></param>
- 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
- /// <summary>
- /// 获取订单资料
- /// </summary>
- 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;
- }
- /// <summary>
- /// 设置自己义单号和订单号是否显示
- /// </summary>
- /// <param name="obj"></param>
- 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();
- }
- }
- /// <summary>
- /// 设置控件高
- /// </summary>
- 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;
- }
- }
- }
|