using LYFZ.ComponentLibrary; using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace LYFZ.Software.MainBusiness.DoorCityProcess { public partial class OnSingleFormMain : LYFZ.Software.UI.DoorCityProcess.OnSingleFormMain { LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder(); LYFZ.BLL.BLL_ErpStyle stbll = new BLL.BLL_ErpStyle(); LYFZ.BLL.BLL_ErpPayment ptbll = new BLL.BLL_ErpPayment(); LYFZ.BLL.BLL_ErpCustomer ctbll = new BLL.BLL_ErpCustomer(); LYFZ.BLL.BLL_ErpMemberCard mcbll = new BLL.BLL_ErpMemberCard(); LYFZ.BLL.BLL_ErpSystemLogs slogbll = new BLL.BLL_ErpSystemLogs(); LYFZ.BLL.BLL_ErpOrderDigital odbll = new BLL.BLL_ErpOrderDigital(); LYFZ.BLL.BLL_ErpOrdersPerson orpbll = new BLL.BLL_ErpOrdersPerson(); LYFZ.BLL.BLL_SMSTemplates smsTemplates = new BLL.BLL_SMSTemplates(); LYFZ.BLL.BLL_ErpCustomerGroup cgbll = new BLL.BLL_ErpCustomerGroup(); LYFZ.BLL.BLL_ErpHospitalClient hcbll = new BLL.BLL_ErpHospitalClient(); LYFZ.BLL.BLL_ErpWeddingService wsbll = new BLL.BLL_ErpWeddingService(); LYFZ.BLL.BLL_ErpOrderProductLOG ptlog = new BLL.BLL_ErpOrderProductLOG(); LYFZ.BLL.BLL_ErpSystemConfigure sgbll = new BLL.BLL_ErpSystemConfigure(); LYFZ.BLL.BLL_ErpOrderProductList libll = new BLL.BLL_ErpOrderProductList(); LYFZ.BLL.BLL_ErpOrdersPhotography opbll = new BLL.BLL_ErpOrdersPhotography(); LYFZ.BLL.BLL_ErpMemberCardPoints mcptsbll = new BLL.BLL_ErpMemberCardPoints(); LYFZ.BLL.BLL_ErpOrderNumberRecord ornrbll = new BLL.BLL_ErpOrderNumberRecord(); LYFZ.BLL.BLL_ErpMemberCardViceCard mcvbll = new BLL.BLL_ErpMemberCardViceCard(); LYFZ.BLL.BLL_ErpOrderDigitalStatus orsbll = new BLL.BLL_ErpOrderDigitalStatus(); LYFZ.BLL.BLL_ErpMemberCardBackCash mcbcbll = new BLL.BLL_ErpMemberCardBackCash(); LYFZ.BLL.BLL_ErpCustomerGroupMembers cgmbll = new BLL.BLL_ErpCustomerGroupMembers(); LYFZ.BLL.BLL_ErpMemberCardOperateLOG mcopbll = new BLL.BLL_ErpMemberCardOperateLOG(); LYFZ.BLL.BLL_ErpMemberCardPointsLOG mcpslogbll = new BLL.BLL_ErpMemberCardPointsLOG(); LYFZ.BLL.BLL_ErpPackagesGiftMerchandise pgbll = new BLL.BLL_ErpPackagesGiftMerchandise(); LYFZ.BLL.BLL_ErpMemberCardBackCashSet mcbcsetbll = new BLL.BLL_ErpMemberCardBackCashSet(); LYFZ.BLL.BLL_ErpMemberCardInterfaceManagement mcimbll = new BLL.BLL_ErpMemberCardInterfaceManagement(); #region 属性 /// /// 是否是修改订单(从订单报表、保存后这里都会为true) /// public bool IsUpdateOrderLoad = false; /// /// 关闭窗体前判断是否提示 /// private bool isClose = true; /// /// 订单编号 /// public string StrNumber = ""; /// /// 是否保存 /// public bool IsSaveed = false; /// /// 订单类型 /// public LYFZ.EnumPublic.OrderType OrdType; /// /// 用于写入成人客户控件的序号 /// private int ClientAdultNameCount = 1; /// /// 用于写入儿童客户控件的序号 /// private int ClientChildNameCount = 1; /// /// 是否显示写真版 /// private bool IsPortrait = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.IsEnablePhotoEdition; /// /// 登录都姓名 /// string StrUserName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name; /// /// 登录者员工ID /// string strUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID; /// /// 本地分店ID /// string strInfoID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); /// /// 当前客户数量 /// int AddClinetCount = 0; /// /// 订单客户组编号 /// string OrderGroupNumber = ""; /// /// 来单批号 /// string ComeSingleLotNumber = ""; /// /// 覆盖订单数据时候,是否覆盖客户数据 /// bool UpdateOrderIsUpdateClientData = true; /// /// 如果没有保存权限,是否已授过权 /// bool IsSaveedHadAuthorized = false; /// /// 当前登录者、授权者的保利系数 /// decimal dec_OrderDiscounts = 0; /// /// 客户来源《朋友介绍——副卡资料》 /// LYFZ.Model.Model_ErpMemberCardViceCard modelViceCard = null; /// /// 客户来源《朋友介绍——朋友资料》 /// LYFZ.Model.Model_ErpCustomer modelFriends = null; /// /// 老客户信息 /// LYFZ.Model.Model_ErpCustomer modelOldClient = null; /// /// 介绍人要办理的会员卡号 /// public string StrReferralsMemberCardNumber = ""; /// /// 介绍人要修改的电话号码 /// public string StrReferralsClientPhone = ""; bool _isIntentionOrder = false; /// /// 当前打开的是否为意向订单 /// bool IsIntentionOrder { get { return _isIntentionOrder; } set { _isIntentionOrder = value; } } public LoadFormType EnumLoadFormType; public enum LoadFormType { 订单报表, 开单选择 } #endregion #region 窗体事件 public OnSingleFormMain() { this.Shown += OnSingleFormMain_Shown; this.Load += OnSingleFormMain_Load; this.btnSaveIntent.Click += btnSaveIntent_Click; this.btnSave.Click += btnSave_Click; this.btnPrint.Click += btnPrint_Click; this.btnNewOrder.Click += btnNewOrder_Click; this.btnOrderClose.Click += btnOrderClose_Click; this.FormClosing += OnSingleFormMain_FormClosing; this.FormClosed += OnSingleFormMain_FormClosed; this.Resize += OnSingleFormMain_Resize; #region 第一页 this.btnSourceSet.Click += btnSourceSet_Click; this.btnStyleSet.Click += btnStyleSet_Click; this.pictAddClient.Click += pictAddClient_Click; this.btnSelectUser.Click += btnSelectUser_Click; this.panelEx3.Click += panelEx3_Click; this.panelEx2.Click += panelEx2_Click; this.panelVice1.Click += panelVice1_Click; this.PanelMain1.Click += PanelMain1_Click; this.chkOldClient.Click += chkOldClient_Click; this.chkFriends.Click += chkFriends_Click; this.chkHospitalClient.Click += chkHospitalClient_Click; this.chkOther.Click += chkOther_Click; this.lblYiXiangClient.Click += lblYiXiangClient_Click; this.lblBrowseSelect.Click += lblBrowseSelect_Click; #endregion #region 第二页 this.tabControl.SelectedIndexChanged += tabControl_SelectedIndexChanged; this.PanelMain2.Click += PanelMain2_Click; this.PanelMain3.Click += PanelMain3_Click; #endregion } /// /// 窗体加载事件 /// /// /// void OnSingleFormMain_Shown(object sender, EventArgs e) { this.Text = "开单(" + this.OrdType.ToString().Trim() + ")"; this.flowPanel0.Location = new Point(this.flowPanel0.Location.X, tabControl.Location.Y - 2);// this.flowPanel0.Location.Y); this.FillClientDataPanelHeight(); this.PanelMain1_Click(this, null); } /// /// 窗体加载事件 /// /// /// void OnSingleFormMain_Load(object sender, EventArgs e) { this.StyleSetAdd(); LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientSourec("AAAAAAF", this.cmbtreevClientSource, strHideFiled: "BFACBABGBGBJGDHIE,BFAFBCBADBDCABFDD,AAAAABT"); this.chBox_Click(); #region 权限与加载 if (this.StrNumber == "") { this.tap3.Parent = null; //this.btnSave.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StoresOPenSingle, LYFZ.CustomAttributes.OperatingAuthority.NewOrder); this.GetTransactmemberCard(); } else { this.btnSaveIntent.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StoresOPenSingle, LYFZ.CustomAttributes.OperatingAuthority.ModifyOrder); this.OpenSingleLoad(); } this.btnPrint.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StoresOPenSingle, LYFZ.CustomAttributes.OperatingAuthority.Print); this.btnStyleSet.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StoresOPenSingle, LYFZ.CustomAttributes.OperatingAuthority.OrderLoveStyleSet); this.btnSourceSet.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StoresOPenSingle, LYFZ.CustomAttributes.OperatingAuthority.OrderClientSourceSet); #endregion } /// /// 打开订单数据 /// void OpenSingleLoad() { this.IsSaveedHadAuthorized = false; LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker) { LYFZ.Model.Model_ErpOrder modelorder = orbll.GetModel(this.StrNumber); if (modelorder.ID <= 0) { return; } else { this.OrdType = (LYFZ.EnumPublic.OrderType)Enum.Parse(typeof(LYFZ.EnumPublic.OrderType), modelorder.Ord_Type); if (modelorder.Ord_Class == "0") { IsIntentionOrder = true; } DataTable tbl_P = orbll.GetView_Custom("tb_ErpOrdersPerson", StrWhere: "OrdPe_OrderNumber = '" + this.StrNumber + "'", filedOrder: "OrdPe_Type ASC", ShowColumnName: "dbo.fn_CheckUserIDGetUserName(OrdPe_OrdersPerson) AS OrdPe_OrdersPersonName,OrdPe_OrdersPerson,OrdPe_Type").Tables[0]; DataTable tblFriends = orbll.GetView_Custom("tb_ErpCustomerGroup", StrWhere: "GP_OrderNumber = '" + this.StrNumber + "'", ShowColumnName: "GP_CustomerGroupID,GP_IntroducerCustomerID").Tables[0]; List mlistClient = new List(); List mlistClientRelation = new List(); string StrMasterNumber = ""; string StrChildNumber = ""; DataTable tblGroup = orbll.GetView_Custom("tb_ErpCustomerGroup", StrWhere: "GP_OrderNumber = '" + this.StrNumber + "'", ShowColumnName: "GP_CustomerGroupID").Tables[0]; if (tblGroup.Rows.Count > 0) { DataTable tblClientGroup = orbll.GetView_Custom("View_CustomerGroupMembersAndErpCustomer", StrWhere: "GM_CustomerGroupID = '" + tblGroup.Rows[0]["GP_CustomerGroupID"].ToString().Trim() + "'", ShowColumnName: "Cus_CustomerNumber,GM_Master,GM_RelatedPersonID,GM_Relation,GM_ProtagonistCustomer").Tables[0]; for (int i = 0; i < tblClientGroup.Rows.Count; i++) { if (tblClientGroup.Rows[i]["GM_Master"].ToString().Trim() == "1") { StrMasterNumber = tblClientGroup.Rows[i]["Cus_CustomerNumber"].ToString().Trim(); } if (modelorder.Ord_Type == "1") { if (tblClientGroup.Rows[i]["GM_ProtagonistCustomer"].ToString().Trim() == "1") { StrChildNumber = tblClientGroup.Rows[i]["Cus_CustomerNumber"].ToString().Trim(); } } LYFZ.Model.Model_ErpCustomer modelClient = ctbll.GetModel("Cus_CustomerNumber", tblClientGroup.Rows[i]["Cus_CustomerNumber"].ToString().Trim()); if (modelClient.ID > 0) { mlistClient.Add(modelClient); mlistClientRelation.Add(tblClientGroup.Rows[i]["GM_Relation"].ToString().Trim()); } } } try { this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate() { if (modelorder.Ord_Class == "1") { this.btnSaveIntent.Visible = false; } else { this.btnSaveIntent.Visible = true; } if (this.IsUpdateOrderLoad) { this.lblYiXiangClient.Enabled = false; this.panelTransactmemberCard.Visible = false; } #region 订单资料 if (this.UpdateOrderIsUpdateClientData) { this.AddClinetCount = 0; } this.tabControl.SelectedIndex = 1; bool IsActivity = false; switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.儿童订单: case EnumPublic.OrderType.写真订单: case EnumPublic.OrderType.婚庆订单: this.OrderEx.StrCustomPrefix = this.GetOrderCustomPrefix(); IsActivity = this.OrderEx.SetOrderValue(modelorder); if (this.OrderSightsEx != null) { this.OrderSightsEx.SetOrderSightsValue(this.StrNumber, modelorder.Ord_SeriesName); } else if (this.OrderStagesEx != null) { this.OrderStagesEx.SetOrderStagesValue(this.StrNumber, modelorder.Ord_SeriesName); } break; case EnumPublic.OrderType.服务订单: this.ServiceOrderEx.StrCustomPrefix = this.GetOrderCustomPrefix(); this.ServiceOrderEx.SetOrderValue(modelorder); break; } try { this.OrderServiceEx.SetOrderServiceValue(this.StrNumber, IsActivity, modelorder.Ord_SeriesName); this.OrderProductEx.SetOrderProductValue(this.StrNumber, IsActivity, modelorder.Ord_SeriesName); } catch (Exception ex) { MessageBoxCustom.Show(ex.Message + ",原因:可能是“tb_ErpOrderProductList”商品唯一标识重复"); } #endregion #region 接单人 string PersonName = ""; string PersonTag = ""; string PersonType = ""; for (int i = 0; i < tbl_P.Rows.Count; i++) { if (i == 0) { PersonName = tbl_P.Rows[i]["OrdPe_OrdersPersonName"].ToString().Trim(); PersonTag = tbl_P.Rows[i]["OrdPe_OrdersPerson"].ToString().Trim(); PersonType = tbl_P.Rows[i]["OrdPe_Type"].ToString().Trim(); } else { PersonName += "," + tbl_P.Rows[i]["OrdPe_OrdersPersonName"].ToString().Trim(); PersonTag += "," + tbl_P.Rows[i]["OrdPe_OrdersPerson"].ToString().Trim(); PersonType += "," + tbl_P.Rows[i]["OrdPe_Type"].ToString().Trim(); } } this.txtOrderPerson.Text = PersonName; this.txtOrderPerson.Tag = PersonTag + "|" + PersonType; #endregion #region 客户来源 if (modelorder.Ord_CustomerSource.Trim() == "朋友介绍") { this.chkFriends.Checked = true; if (tblFriends.Rows.Count > 0) { if (tblFriends.Rows[0]["GP_IntroducerCustomerID"].ToString().Trim() != "") { this.modelFriends = ctbll.GetModel("Cus_CustomerNumber", tblFriends.Rows[0]["GP_IntroducerCustomerID"]); string StrCardType = ""; string StrCardTypeShow = ""; DataTable dt = orbll.GetView_Custom("tb_ErpMemberCard", StrWhere: "Mc_CustomerNumber = '" + this.modelFriends.Cus_CustomerNumber + "' And Mc_CradNumber != ''", ShowColumnName: "Mc_CardType").Tables[0]; if (dt.Rows.Count > 0) { StrCardType = ";主卡等级:" + dt.Rows[0]["Mc_CardType"].ToString().Trim(); if (dt.Rows[0]["Mc_CardType"].ToString().Trim() != "无") { StrCardTypeShow = " - " + dt.Rows[0]["Mc_CardType"].ToString().Trim(); } } LYFZ.Model.Model_ErpMemberCardBackCashSet modelCashSet = mcbcsetbll.GetModel("Mcb_OrderNumber", modelorder.Ord_Number); if (modelCashSet.ID > 0) { this.modelViceCard = mcvbll.GetModel("Mvc_ViceNumber", modelCashSet.Mcb_ViceNumber); this.chkFriends.Text = this.chkFriends.Tag + "(" + this.modelFriends.Cus_Name.Trim() + StrCardTypeShow + " - 副卡)"; this.toolTip1.SetToolTip(this.chkFriends, "朋友介绍(介绍人:" + this.modelFriends.Cus_Name + StrCardType + ";副卡卡号:" + this.modelViceCard.Mvc_ViceCardNumber + ")"); } else { if (this.modelFriends.Cus_Name != null) { this.chkFriends.Text = this.chkFriends.Tag + "(" + this.modelFriends.Cus_Name.Trim() + StrCardTypeShow + ")"; this.toolTip1.SetToolTip(this.chkFriends, "朋友介绍(介绍人:" + this.modelFriends.Cus_Name + StrCardType + ")"); } } } } } else if (modelorder.Ord_CustomerSource.Trim() == "老客户") { this.chkOldClient.Checked = true; } else if (modelorder.Ord_CustomerSource.Trim() == "老客户") { this.chkOldClient.Checked = true; } else if (modelorder.Ord_CustomerSource.Trim() == "医院跟踪客户") { this.chkHospitalClient.Checked = true; } else { this.chkOther.Checked = true; this.cmbtreevClientSource.Enabled = true; this.cmbtreevClientSource.TextFindTag(modelorder.Ord_CustomerSource.Trim()); } #endregion #region 喜爱格调 if (modelorder.Ord_LovedStyle.Trim() != "") { if (modelorder.Ord_LovedStyle.Trim().IndexOf('|') != -1) { string[] LovedStylelist = modelorder.Ord_LovedStyle.Trim().Split('|'); if (LovedStylelist.Length > 0) { for (int i = 0; i < LovedStylelist.Length; i++) { try { ((CheckBoxEx)panelEx3.Controls[LovedStylelist[i]]).Checked = true; } catch { } } } } else { ((CheckBoxEx)panelEx3.Controls[modelorder.Ord_LovedStyle.Trim()]).Checked = true; } } #endregion #region 客户资料 this.chBox_Click(); if (this.UpdateOrderIsUpdateClientData) { foreach (Control control in this.flowPanel1.Controls) { if (control is SetCustomControls.OrderClientParentsControlsEx) { SetCustomControls.OrderClientParentsControlsEx tmp = (SetCustomControls.OrderClientParentsControlsEx)control; if (tmp.StrClientAttribute == "Man_") { for (int i = 0; i < mlistClient.Count; i++) { if (mlistClient[i].Cus_CustomerNumber == StrMasterNumber) { this.SetMarriageValue(mlistClient[i].Cus_DayForMarriage.Trim(), mlistClient[i].Cus_DayForMarriageLunar); tmp.SetClientValue(mlistClient[i], true, mlistClientRelation[i].Trim()); tmp.IsPictResetShow = true; tmp.IsPictEditShow = true; mlistClient.RemoveAt(i); mlistClientRelation.RemoveAt(i); break; } } } else { for (int i = 0; i < mlistClient.Count; i++) { if (mlistClient[i].Cus_CustomerNumber != StrChildNumber && mlistClient[i].Cus_CustomerNumber.Trim() == StrMasterNumber) { this.SetMarriageValue(mlistClient[i].Cus_DayForMarriage.Trim(), mlistClient[i].Cus_DayForMarriageLunar); tmp.SetClientValue(mlistClient[i], true, mlistClientRelation[i].Trim()); tmp.IsPictResetShow = true; tmp.IsPictEditShow = true; mlistClient.RemoveAt(i); mlistClientRelation.RemoveAt(i); break; } } } } else if (control is SetCustomControls.OrderClientChildrenControlsEx) { SetCustomControls.OrderClientChildrenControlsEx tmp = (SetCustomControls.OrderClientChildrenControlsEx)control; for (int i = 0; i < mlistClient.Count; i++) { if (mlistClient[i].Cus_CustomerNumber.Trim() == StrChildNumber) { tmp.SetClientValue(mlistClient[i], true); tmp.IsPictResetShow = true; tmp.IsPictEditShow = true; mlistClient.RemoveAt(i); mlistClientRelation.RemoveAt(i); break; } } } } if (mlistClient.Count > 0) { for (int i = 0; i < mlistClient.Count; i++) { this.SetMarriageValue(mlistClient[i].Cus_DayForMarriage.Trim(), mlistClient[i].Cus_DayForMarriageLunar); this.ClientAdultPanelAdd("其他联系人" + ClientAdultNameCount, model: mlistClient[i], MainClientRelation: mlistClientRelation[i].Trim()); this.AddClinetCount++; } } } #endregion this.Text = "开单(" + this.OrdType.ToString().Trim() + ")"; })); } catch { } } }); this.tabControl.SelectedIndex = 0; } /// /// 赋婚期值 /// /// /// void SetMarriageValue(string StrValue, string StrLunar) { switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.婚庆订单: case EnumPublic.OrderType.服务订单: this.mskMarriage.StrValue = StrValue; this.chkMarriage.Checked = LYFZ.Command.Command_Validate.DateLunar(StrLunar); break; } } /// /// 获取前缀 /// /// private string GetOrderCustomPrefix() { string StrCustomPrefix = ""; if (this.OrdType == LYFZ.EnumPublic.OrderType.婚纱订单) { StrCustomPrefix = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetPrefix(LYFZ.EnumPublic.OrderNumberPrefixType.婚纱订单).Trim(); } else if (this.OrdType == LYFZ.EnumPublic.OrderType.儿童订单) { StrCustomPrefix = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetPrefix(LYFZ.EnumPublic.OrderNumberPrefixType.儿童订单).Trim(); } else if (this.OrdType == LYFZ.EnumPublic.OrderType.写真订单) { StrCustomPrefix = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetPrefix(LYFZ.EnumPublic.OrderNumberPrefixType.写真订单).Trim(); } else if (this.OrdType == LYFZ.EnumPublic.OrderType.服务订单) { StrCustomPrefix = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetPrefix(LYFZ.EnumPublic.OrderNumberPrefixType.服务订单).Trim(); } else if (this.OrdType == LYFZ.EnumPublic.OrderType.婚庆订单) { StrCustomPrefix = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetPrefix(LYFZ.EnumPublic.OrderNumberPrefixType.婚庆订单).Trim(); } return StrCustomPrefix; } /// /// 填充客户层的高 /// void FillClientDataPanelHeight() { if (this.panelVice1.Height < (this.tap1.Height - 12)) { this.panelVice1.Height = this.tap1.Height - 12; this.flowPanel1.Height = this.panelVice1.Height - this.flowPanel1.Location.Y; } } /// /// 检查数据是否被修改过 /// /// bool CheckDataIsUpdate() { bool IsUpdateSaveed = false; if (this.OrdType == EnumPublic.OrderType.服务订单) { } else { ComboBoxTreeViewEx cmbtreevTaoXiName = OrderEx.CmbtreevTaoXi; if (cmbtreevTaoXiName.Tag != null) { DataRow[] dtRow0 = null; DataRow[] dtRow1 = null; DataRow[] dtRow2 = null; DataTable tbl0 = null; DataTable tbl1 = null; DataTable tbl2 = null; string ExecuteSql = "select tb_ErpPackagesGiftMerchandise.ID,Sc_ClassName,Pgm_GiveType,Pgm_IntoRegisterQuantity,Pgm_IntoBottomQuantity,Pgm_Quantity " + "from tb_ErpPackagesGiftMerchandise Left Join tb_ErpTheScenery on cast(tb_ErpTheScenery.ID as varchar(20)) = Pgm_ProductNumber " + "Left Join tb_ErpSystemCategory on Tsc_Rating = Sc_ClassCode where Pgm_GiveType in ('2','3') And Pgm_PackagesCode = '" + cmbtreevTaoXiName.Tag.ToString().Trim() + "';"; ExecuteSql += "select tb_ErpPackagesGiftMerchandise.ID,Prod_Batch,Pgm_Quantity,Pgm_GiveType from tb_ErpPackagesGiftMerchandise " + "Left Join tb_ErpProduct on Prod_Number = Pgm_ProductNumber where Pgm_GiveType in ('0','1') And Pgm_PackagesCode = '" + cmbtreevTaoXiName.Tag.ToString().Trim() + "';"; ExecuteSql += "select Pak_UnitPrice from tb_ErpPackages where Pak_PackagesID = '" + cmbtreevTaoXiName.Tag.ToString().Trim() + "';"; DataSet dsData = orbll.GetView_Custom(ExecuteSql); DataTable dt0 = dsData.Tables["ds"]; DataTable dt1 = dsData.Tables["ds1"]; DataTable dt2 = dsData.Tables["ds2"]; switch (this.OrdType) { case EnumPublic.OrderType.儿童订单: case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.写真订单: case EnumPublic.OrderType.婚庆订单: #region 判断价格 if (dt2.Rows.Count > 0) { if (Convert.ToDecimal(dt2.Rows[0]["Pak_UnitPrice"]) != Convert.ToDecimal(this.OrderEx.TaoXiPrice)) { IsUpdateSaveed = true; } } #endregion #region 判断入底入册 switch (this.OrdType) { case EnumPublic.OrderType.写真订单: case EnumPublic.OrderType.婚庆订单: try { DataTable dt = orbll.GetView_Custom("tb_ErpPackages", StrWhere: "Pak_PackagesID = '" + cmbtreevTaoXiName.Tag.ToString().Trim() + "'", ShowColumnName: "Pak_IntoTheArchive,Pak_IntoTheBook").Tables[0]; Hashtable htDataPackages = this.OrderEx.GetIntoRegisterAndIntoBottom(); if (dt.Rows.Count == 0 && htDataPackages.Count > 0) { IsUpdateSaveed = true; } else if (Convert.ToInt32(dt.Rows[0]["Pak_IntoTheArchive"]) != Convert.ToInt32(htDataPackages["IntoBottom"].ToString()) || Convert.ToInt32(dt.Rows[0]["Pak_IntoTheBook"]) != Convert.ToInt32(htDataPackages["IntoRegister"].ToString())) { IsUpdateSaveed = true; } } catch { } break; } #endregion #region 商品与服务 if (!IsUpdateSaveed) { dtRow0 = dt1.Select("Pgm_GiveType = '0'"); tbl0 = this.OrderProductEx.GetListViewData(); if (dtRow0.Length != tbl0.Rows.Count) { IsUpdateSaveed = true; } else if (dtRow0.Length > 0 && tbl0.Rows.Count > 0) { for (int j = 0; j < tbl0.Rows.Count; j++) { if (string.IsNullOrEmpty(tbl0.Rows[j]["PgmID"].ToString().Trim())) { IsUpdateSaveed = true; break; } } if (!IsUpdateSaveed) { for (int i = 0; i < dtRow0.Length; i++) { DataRow[] dtRow = tbl0.Select("PgmID = '" + dtRow0[i]["ID"].ToString().Trim() + "'"); if (dtRow0.Length <= 0) { IsUpdateSaveed = true; } else { if (Convert.ToInt32(dtRow[0]["商品P数"]) != Convert.ToInt32(dtRow0[i]["Prod_Batch"]) || Convert.ToInt32(dtRow[0]["商品数量"]) != Convert.ToInt32(dtRow0[i]["Pgm_Quantity"])) { IsUpdateSaveed = true; break; } } } } } } if (!IsUpdateSaveed) { dtRow1 = dt1.Select("Pgm_GiveType = '1'"); tbl1 = this.OrderServiceEx.GetListViewData(); if (dtRow1.Length != tbl1.Rows.Count) { IsUpdateSaveed = true; } else if (dtRow1.Length > 0 && tbl1.Rows.Count > 0) { for (int j = 0; j < tbl1.Rows.Count; j++) { if (string.IsNullOrEmpty(tbl1.Rows[j]["PgmID"].ToString().Trim())) { IsUpdateSaveed = true; break; } } if (!IsUpdateSaveed) { for (int i = 0; i < dtRow1.Length; i++) { DataRow[] dtRow = tbl1.Select("PgmID = '" + dtRow1[i]["ID"].ToString().Trim() + "'"); if (dtRow1.Length <= 0) { IsUpdateSaveed = true; } else { if (Convert.ToInt32(dtRow[0]["服务数量"]) != Convert.ToInt32(dtRow1[i]["Pgm_Quantity"])) { IsUpdateSaveed = true; break; } } } } } } #endregion #region 景点与拍摄次数 if (!IsUpdateSaveed) { switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.写真订单: dtRow2 = dt0.Select("Pgm_GiveType = '2'"); tbl2 = this.OrderSightsEx.GetListViewData(); break; case EnumPublic.OrderType.儿童订单: dtRow2 = dt0.Select("Pgm_GiveType = '3'"); tbl2 = this.OrderStagesEx.GetListViewData(); break; } if (dtRow2.Length != tbl2.Rows.Count) { IsUpdateSaveed = true; } else if (dtRow2.Length > 0 && tbl2.Rows.Count > 0) { for (int j = 0; j < tbl2.Rows.Count; j++) { if (string.IsNullOrEmpty(tbl2.Rows[j]["PgmID"].ToString().Trim())) { IsUpdateSaveed = true; break; } } if (!IsUpdateSaveed) { for (int i = 0; i < dtRow2.Length; i++) { DataRow[] dtRow = tbl2.Select("PgmID = '" + dtRow2[i]["ID"].ToString().Trim() + "'"); if (dtRow2.Length <= 0) { IsUpdateSaveed = true; } else { if (dtRow[0]["拍摄级别"].ToString().Trim() != dtRow2[i]["Sc_ClassName"].ToString().Trim() || Convert.ToInt32(dtRow[0]["服装套数"]) != Convert.ToInt32(dtRow2[i]["Pgm_Quantity"])) { IsUpdateSaveed = true; break; } if (!IsUpdateSaveed) { switch (this.OrdType) { case EnumPublic.OrderType.儿童订单: if (Convert.ToInt32(dtRow[0]["入册"]) != Convert.ToInt32(dtRow2[i]["Pgm_IntoRegisterQuantity"]) || Convert.ToInt32(dtRow[0]["入底"]) != Convert.ToInt32(dtRow2[i]["Pgm_IntoBottomQuantity"]) || Convert.ToInt32(dtRow[0]["服装套数"]) != Convert.ToInt32(dtRow2[i]["Pgm_Quantity"])) { IsUpdateSaveed = true; break; } break; } } } } } } } #endregion break; } } } return IsUpdateSaveed; } /// /// 保存意向 /// /// /// void btnSaveIntent_Click(object sender, EventArgs e) { DateTime strTime = SDateTime.Now; string strOrderPrefix = this.GetOrderCustomPrefix(); List clist = null; bool IsSaveedOK = false; while (!IsSaveedOK) { clist = new List(); #region 客户资料 LYFZ.Model.Model_ErpCustomer modelCilent = null; LYFZ.Model.Model_ErpCustomer modelCilentMain = null; LYFZ.Model.Model_ErpCustomer modelChildCilent = null; List ctmlist = new List(); string CilentMainRelation = "本人"; string ChildCilentRelation = "本人"; List ClientRelation = new List(); int ClientIndex = 1; foreach (Control control in this.flowPanel1.Controls) { if (control is SetCustomControls.OrderClientParentsControlsEx) { #region 如果是婚纱版,则验证并设置婚期 string Marriage = ""; string MarriageLunar = ""; switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.婚庆订单: case EnumPublic.OrderType.服务订单: int intMasse = this.mskMarriage.CheckDateValue(this.mskMarriage, chkMarriage); if (intMasse == 1) { MessageBoxCustom.Show("婚期日期日期格式输入错误"); return; } else if (intMasse == 2) { MessageBoxCustom.Show("婚期日期:" + this.mskMarriage.StrValue.Trim() + "不是公历日期,若要保存请勾上农历"); return; } if (this.mskMarriage.StrValue.Trim() != "") { Marriage = this.mskMarriage.StrValue.Trim();//婚期 if (this.chkMarriage.Checked)//婚期历类 { MarriageLunar = "1"; } else { MarriageLunar = "0"; } } break; } #endregion SetCustomControls.OrderClientParentsControlsEx tmp = (SetCustomControls.OrderClientParentsControlsEx)control; if (tmp.StrClientAttribute == "Man_") { #region 主要联系人 if (this.OrdType == EnumPublic.OrderType.儿童订单) { CilentMainRelation = ""; } LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.ClientModel ClientModel = tmp.GetClientValue(ref CilentMainRelation); if (ClientModel == null) { return; } if (ClientModel.ID > 0) { modelCilentMain = ctbll.GetModel(ClientModel.ID); modelCilentMain.Cus_UpdateDateTime = strTime; modelCilentMain.Cus_UpdateName = strUserID; } else { modelCilentMain = new Model.Model_ErpCustomer(); modelCilentMain.Cus_CustomerNumber = LYFZ.BLL.BLL_ErpCustomer.GetClientNumber(); modelCilentMain.Cus_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelCilentMain.Cus_CreateDateTime = strTime; modelCilentMain.Cus_CreateName = strUserID; } modelCilentMain.Cus_Type = ""; modelCilentMain.Cus_Address = ClientModel.CusAddress; modelCilentMain.Cus_Birthday = ClientModel.CusBirthday; modelCilentMain.Cus_BirthdayLunar = ClientModel.CusBirthdayLunar; modelCilentMain.Cus_DayForMarriage = ""; modelCilentMain.Cus_DayForMarriageLunar = ""; switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.婚庆订单: case EnumPublic.OrderType.服务订单: modelCilentMain.Cus_DayForMarriage = Marriage; modelCilentMain.Cus_DayForMarriageLunar = MarriageLunar; break; } if (LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.EnabledIDNumber) { modelCilentMain.Cus_IDNumber = ClientModel.CusIDNumber; } modelCilentMain.Cus_FixedPhone = ClientModel.CusFixedPhone; modelCilentMain.Cus_MicroSignal = ClientModel.CusMicroSignal; modelCilentMain.Cus_Name = ClientModel.CusName; modelCilentMain.Cus_NamePinyin = ClientModel.CusNamePinyin; modelCilentMain.Cus_QQ = ClientModel.CusQQ; modelCilentMain.Cus_Region = ClientModel.CusRegion; modelCilentMain.Cus_Relations = ClientModel.CusRelations; modelCilentMain.Cus_Sex = ClientModel.CusSex; modelCilentMain.Cus_Telephone = ClientModel.CusTelephone; modelCilentMain.Cus_WorkUnit = ClientModel.CusWorkUnit; modelCilentMain.Cus_Zodiac = ClientModel.CusZodiac; if (modelCilentMain.ID == 0) { clist.Add(ctbll.GetAddCommandInfo(modelCilentMain)); } else { clist.Add(ctbll.GetUpdateCommandInfo(modelCilentMain)); } #endregion } else { #region 其他联系人 string strOtherClienRelation = ""; LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.ClientModel ClientModel = tmp.GetClientValue(ref strOtherClienRelation); ClientRelation.Add(strOtherClienRelation); if (ClientModel == null) { return; } if (ClientModel.ID > 0) { modelCilent = ctbll.GetModel(ClientModel.ID); modelCilent.Cus_UpdateDateTime = strTime; modelCilent.Cus_UpdateName = strUserID; } else { modelCilent = new Model.Model_ErpCustomer(); modelCilent.Cus_CustomerNumber = LYFZ.BLL.BLL_ErpCustomer.GetClientNumber(); modelCilent.Cus_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelCilent.Cus_CreateDateTime = strTime; modelCilent.Cus_CreateName = strUserID; } modelCilent.Cus_Type = ""; modelCilent.Cus_Address = ClientModel.CusAddress; modelCilent.Cus_Birthday = ClientModel.CusBirthday; modelCilent.Cus_BirthdayLunar = ClientModel.CusBirthdayLunar; modelCilent.Cus_DayForMarriage = ""; modelCilent.Cus_DayForMarriageLunar = ""; switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.婚庆订单: case EnumPublic.OrderType.服务订单: modelCilent.Cus_DayForMarriage = Marriage; modelCilent.Cus_DayForMarriageLunar = MarriageLunar; break; } if (LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.EnabledIDNumber) { modelCilent.Cus_IDNumber = ClientModel.CusIDNumber; } modelCilent.Cus_FixedPhone = ClientModel.CusFixedPhone; modelCilent.Cus_MicroSignal = ClientModel.CusMicroSignal; modelCilent.Cus_Name = ClientModel.CusName; modelCilent.Cus_NamePinyin = ClientModel.CusNamePinyin; modelCilent.Cus_QQ = ClientModel.CusQQ; modelCilent.Cus_Region = ClientModel.CusRegion; modelCilent.Cus_Relations = ClientModel.CusRelations; modelCilent.Cus_Sex = ClientModel.CusSex; modelCilent.Cus_Telephone = ClientModel.CusTelephone; modelCilent.Cus_WorkUnit = ClientModel.CusWorkUnit; modelCilent.Cus_Zodiac = ClientModel.CusZodiac; if (modelCilent.ID <= 0) { clist.Add(ctbll.GetAddCommandInfo(modelCilent)); } else { clist.Add(ctbll.GetUpdateCommandInfo(modelCilent)); } ctmlist.Add(modelCilent); #endregion } } if (control is SetCustomControls.OrderClientChildrenControlsEx) { #region 儿童客户 SetCustomControls.OrderClientChildrenControlsEx tmp = (SetCustomControls.OrderClientChildrenControlsEx)control; LYFZ.Model.Model_ErpCustomer ChildClientModel = tmp.GetClientValue(ref ChildCilentRelation); if (ChildClientModel == null) { return; } if (ChildClientModel.ID > 0) { modelChildCilent = ctbll.GetModel(ChildClientModel.ID); modelChildCilent.Cus_UpdateDateTime = strTime; modelChildCilent.Cus_UpdateName = strUserID; } else { modelChildCilent = new Model.Model_ErpCustomer(); modelChildCilent.Cus_CustomerNumber = LYFZ.BLL.BLL_ErpCustomer.GetClientNumber(); modelChildCilent.Cus_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelChildCilent.Cus_CreateDateTime = strTime; modelChildCilent.Cus_CreateName = strUserID; } modelChildCilent.Cus_Type = "儿童"; modelChildCilent.Cus_Birthday = ChildClientModel.Cus_Birthday; modelChildCilent.Cus_BirthdayLunar = ChildClientModel.Cus_BirthdayLunar; modelChildCilent.Cus_Name = ChildClientModel.Cus_Name; modelChildCilent.Cus_NamePinyin = ChildClientModel.Cus_NamePinyin; modelChildCilent.Cus_Sex = ChildClientModel.Cus_Sex; modelChildCilent.Cus_Zodiac = ChildClientModel.Cus_Zodiac; if (modelChildCilent.ID == 0) { clist.Add(ctbll.GetAddCommandInfo(modelChildCilent)); } else { clist.Add(ctbll.GetUpdateCommandInfo(modelChildCilent)); } #endregion } ClientIndex++; } #endregion #region 订单资料 //int IntoRegisterQuantity = 0; //int IntoBottomQuantity = 0; //int IntoRegisterQuantityPackage = 0; //int IntoBottomQuantityPackage = 0; Hashtable htData_RegisterAndBottom = new Hashtable(); htData_RegisterAndBottom["IntoRegisterQuantity"] = 0; htData_RegisterAndBottom["IntoBottomQuantity"] = 0; htData_RegisterAndBottom["IntoRegisterQuantityPackage"] = 0; htData_RegisterAndBottom["IntoBottomQuantityPackage"] = 0; LYFZ.Model.Model_ErpOrder modelOrder = null; string StrLovedStyle = this.GetStyle(); string StrCustomerSource = this.GetClientSource(); string StrNewOrderNumber = LYFZ.BLL.BLL_ErpOrder.GenerateNewMainOrderNo(SDateTime.Now, strOrderPrefix); string StrOrderType = Convert.ToInt32(this.OrdType).ToString(); bool IsOrderFind = false; switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.儿童订单: case EnumPublic.OrderType.写真订单: case EnumPublic.OrderType.婚庆订单: if (this.OrderEx != null) { modelOrder = this.OrderEx.GetOrderValue(ref htData_RegisterAndBottom, StrNewOrderNumber: StrNewOrderNumber, StrOrderType: StrOrderType, StrLovedStyle: StrLovedStyle, StrCustomerSource: StrCustomerSource, StrClass: "0", StrInfoID: strInfoID, StrTime: strTime, StrUserID: strUserID, IsMagess: false); IsOrderFind = true; } break; case EnumPublic.OrderType.服务订单: if (this.ServiceOrderEx != null) { modelOrder = this.ServiceOrderEx.GetOrderValue(StrNewOrderNumber: StrNewOrderNumber, StrOrderType: StrOrderType, StrLovedStyle: StrLovedStyle, StrCustomerSource: StrCustomerSource, StrClass: "0", StrInfoID: strInfoID, StrTime: strTime, StrUserID: strUserID, IsMagess: false); IsOrderFind = true; } break; } if (!IsOrderFind) { modelOrder = new Model.Model_ErpOrder(); modelOrder.Ord_Number = StrNewOrderNumber; modelOrder.Ord_SinceOrderNumber = modelOrder.Ord_Number; modelOrder.Ord_Type = StrOrderType; modelOrder.Ord_DividedShop = strInfoID; modelOrder.Ord_Class = "0"; modelOrder.Ord_CustomerSource = StrCustomerSource; modelOrder.Ord_LovedStyle = StrLovedStyle; modelOrder.Ord_CreateDateTime = strTime; modelOrder.Ord_CreateName = strUserID; } #endregion #region 订单客户组 LYFZ.Model.Model_ErpCustomerGroup modelClientGroup = null; if (this.OrderGroupNumber != "") { modelClientGroup = cgbll.GetModel("GP_CustomerGroupID", this.OrderGroupNumber); } else { modelClientGroup = cgbll.GetModel("GP_OrderNumber", modelOrder.Ord_Number); } string strClientSource = this.GetClientSource(); if (strClientSource == "") { MessageBoxCustom.Show("请选择客户来源!"); return; } if (modelClientGroup.ID > 0) { modelClientGroup.GP_GroupType = 2; modelClientGroup.GP_CustomerType = Convert.ToInt32(this.OrdType); modelClientGroup.GP_OrderNumber = modelOrder.Ord_Number; modelClientGroup.GP_CustomerSource = strClientSource; modelClientGroup.GP_CustomerStatus = "意向"; modelClientGroup.GP_UpdateDatetime = strTime; modelClientGroup.GP_UpdateName = strUserID; modelClientGroup.GP_ISIntentionCustomer = 2; if (this.modelFriends != null) { modelClientGroup.GP_IntroducerCustomerID = this.modelFriends.Cus_CustomerNumber; } else { modelClientGroup.GP_IntroducerCustomerID = ""; } clist.Add(cgbll.GetUpdateCommandInfo(modelClientGroup)); } else { modelClientGroup = new Model.Model_ErpCustomerGroup(); modelClientGroup.GP_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelClientGroup.GP_OrderNumber = modelOrder.Ord_Number; modelClientGroup.GP_CustomerGroupID = LYFZ.BLL.BLL_ErpCustomer.GetNewClientGroupNumber(); modelClientGroup.GP_GroupType = 2; modelClientGroup.GP_CustomerType = Convert.ToInt32(this.OrdType); modelClientGroup.GP_CustomerStatus = "意向"; modelClientGroup.GP_LossReason = ""; modelClientGroup.GP_DegreeOfIntent = ""; modelClientGroup.GP_CustomerSource = strClientSource; if (this.modelFriends != null) { modelClientGroup.GP_IntroducerCustomerID = this.modelFriends.Cus_CustomerNumber; } else { modelClientGroup.GP_IntroducerCustomerID = ""; } modelClientGroup.GP_Remark = ""; modelClientGroup.GP_BelongsPersonID = strUserID; modelClientGroup.GP_CreateDatetime = strTime; modelClientGroup.GP_CreateName = strUserID; modelClientGroup.GP_ISIntentionCustomer = 2; clist.Add(cgbll.GetAddCommandInfo(modelClientGroup)); } #endregion #region 客户成员组 LYFZ.Model.Model_ErpCustomerGroupMembers modelGroupMember = null; List Gmlist = cgmbll.GetModelList("GM_CustomerGroupID='" + modelClientGroup.GP_CustomerGroupID + "'"); List ctmlistGroup = ctmlist; List ClientRelationGroup = ClientRelation; if (Gmlist.Count > 0) { if (modelChildCilent != null) { bool IsBl = true; for (int i = 0; i < Gmlist.Count; i++) { if (Gmlist[i].GM_CustomerID.Trim() == modelChildCilent.Cus_CustomerNumber) { modelGroupMember = Gmlist[i]; modelGroupMember.GM_Master = 0; modelGroupMember.GM_Relation = ChildCilentRelation; clist.Add(cgmbll.GetUpdateCommandInfo(modelGroupMember)); IsBl = false; Gmlist.RemoveAt(i); break; } } if (IsBl) { modelGroupMember = new Model.Model_ErpCustomerGroupMembers(); modelGroupMember.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelGroupMember.GM_CustomerGroupID = modelClientGroup.GP_CustomerGroupID; modelGroupMember.GM_CustomerID = modelChildCilent.Cus_CustomerNumber; modelGroupMember.GM_Master = 0; modelGroupMember.GM_ProtagonistCustomer = 1; modelGroupMember.GM_RelatedPersonID = modelChildCilent.Cus_CustomerNumber; modelGroupMember.GM_Relation = ChildCilentRelation; clist.Add(cgmbll.GetAddCommandInfo(modelGroupMember)); } } if (modelCilentMain != null) { bool IsBl = true; for (int i = 0; i < Gmlist.Count; i++) { if (Gmlist[i].GM_CustomerID.Trim() == modelCilentMain.Cus_CustomerNumber) { modelGroupMember = Gmlist[i]; modelGroupMember.GM_Master = 1; switch (this.OrdType) { case EnumPublic.OrderType.儿童订单: modelGroupMember.GM_RelatedPersonID = modelChildCilent.Cus_CustomerNumber; modelGroupMember.GM_ProtagonistCustomer = 0; break; default: modelGroupMember.GM_RelatedPersonID = modelCilentMain.Cus_CustomerNumber; modelGroupMember.GM_ProtagonistCustomer = 1; break; } modelGroupMember.GM_Relation = CilentMainRelation; clist.Add(cgmbll.GetUpdateCommandInfo(modelGroupMember)); IsBl = false; Gmlist.RemoveAt(i); break; } } if (IsBl) { modelGroupMember = new Model.Model_ErpCustomerGroupMembers(); modelGroupMember.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelGroupMember.GM_CustomerGroupID = modelClientGroup.GP_CustomerGroupID; modelGroupMember.GM_CustomerID = modelCilentMain.Cus_CustomerNumber; modelGroupMember.GM_Master = 1; switch (this.OrdType) { case EnumPublic.OrderType.儿童订单: modelGroupMember.GM_RelatedPersonID = modelChildCilent.Cus_CustomerNumber; modelGroupMember.GM_ProtagonistCustomer = 0; break; default: modelGroupMember.GM_RelatedPersonID = modelCilentMain.Cus_CustomerNumber; modelGroupMember.GM_ProtagonistCustomer = 1; break; } modelGroupMember.GM_Relation = CilentMainRelation; clist.Add(cgmbll.GetAddCommandInfo(modelGroupMember)); } } for (int i = 0; i < Gmlist.Count; i++) { bool IsBl = true; for (int j = 0; j < ctmlistGroup.Count; j++) { if (Gmlist[i].GM_CustomerID == ctmlistGroup[j].Cus_CustomerNumber) { modelGroupMember = Gmlist[i]; switch (this.OrdType) { case EnumPublic.OrderType.儿童订单: modelGroupMember.GM_RelatedPersonID = modelChildCilent.Cus_CustomerNumber; modelGroupMember.GM_ProtagonistCustomer = 0; break; default: modelGroupMember.GM_RelatedPersonID = modelCilentMain.Cus_CustomerNumber; modelGroupMember.GM_ProtagonistCustomer = 1; break; } modelGroupMember.GM_Master = 0; modelGroupMember.GM_Relation = ClientRelationGroup[j].Trim(); clist.Add(cgmbll.GetUpdateCommandInfo(modelGroupMember)); ctmlistGroup.RemoveAt(j); ClientRelationGroup.RemoveAt(j); IsBl = false; } } if (IsBl) { clist.Add(cgmbll.GetDeleteCommandInfo("ID", "=", Gmlist[i].ID)); } } } else { switch (this.OrdType) { case EnumPublic.OrderType.儿童订单: modelGroupMember = new Model.Model_ErpCustomerGroupMembers(); modelGroupMember.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelGroupMember.GM_CustomerGroupID = modelClientGroup.GP_CustomerGroupID; modelGroupMember.GM_CustomerID = modelChildCilent.Cus_CustomerNumber; modelGroupMember.GM_Master = 0; modelGroupMember.GM_ProtagonistCustomer = 1; modelGroupMember.GM_RelatedPersonID = modelChildCilent.Cus_CustomerNumber; modelGroupMember.GM_Relation = ChildCilentRelation; clist.Add(cgmbll.GetAddCommandInfo(modelGroupMember)); modelGroupMember = new Model.Model_ErpCustomerGroupMembers(); modelGroupMember.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelGroupMember.GM_CustomerGroupID = modelClientGroup.GP_CustomerGroupID; modelGroupMember.GM_CustomerID = modelCilentMain.Cus_CustomerNumber; modelGroupMember.GM_Master = 1; modelGroupMember.GM_ProtagonistCustomer = 0; modelGroupMember.GM_RelatedPersonID = modelChildCilent.Cus_CustomerNumber; modelGroupMember.GM_Relation = CilentMainRelation; clist.Add(cgmbll.GetAddCommandInfo(modelGroupMember)); break; default: modelGroupMember = new Model.Model_ErpCustomerGroupMembers(); modelGroupMember.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelGroupMember.GM_CustomerGroupID = modelClientGroup.GP_CustomerGroupID; modelGroupMember.GM_CustomerID = modelCilentMain.Cus_CustomerNumber; modelGroupMember.GM_Master = 1; modelGroupMember.GM_ProtagonistCustomer = 1; modelGroupMember.GM_RelatedPersonID = modelCilentMain.Cus_CustomerNumber; modelGroupMember.GM_Relation = CilentMainRelation; clist.Add(cgmbll.GetAddCommandInfo(modelGroupMember)); break; } } for (int i = 0; i < ctmlistGroup.Count; i++) { modelGroupMember = new Model.Model_ErpCustomerGroupMembers(); modelGroupMember.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelGroupMember.GM_CustomerGroupID = modelClientGroup.GP_CustomerGroupID; modelGroupMember.GM_CustomerID = ctmlistGroup[i].Cus_CustomerNumber; modelGroupMember.GM_Master = 0; modelGroupMember.GM_Relation = ClientRelationGroup[i].Trim(); switch (this.OrdType) { case EnumPublic.OrderType.儿童订单: modelGroupMember.GM_RelatedPersonID = modelChildCilent.Cus_CustomerNumber; modelGroupMember.GM_ProtagonistCustomer = 0; break; default: modelGroupMember.GM_RelatedPersonID = modelCilentMain.Cus_CustomerNumber; modelGroupMember.GM_ProtagonistCustomer = 1; break; } clist.Add(cgmbll.GetAddCommandInfo(modelGroupMember)); } #endregion #region 订单人员表 if (this.txtOrderPerson.Text.Trim() == "") { MessageBoxCustom.Show("接单人员不能为空!"); return; } string[] StrValue = txtOrderPerson.Tag.ToString().Trim().Split('|')[0].Trim().Split(','); string[] StrTag = txtOrderPerson.Tag.ToString().Trim().Split('|')[1].Trim().Split(','); DataTable dtList = orbll.GetView_Custom("tb_ErpOrdersPerson", StrWhere: "OrdPe_OrderNumber='" + modelOrder.Ord_Number + "'", ShowColumnName: "*", filedOrder: "OrdPe_Type ASC").Tables[0];// orpbll.GetModelList("OrdPe_OrderNumber='" + modelOrder.Ord_Number + "'"); //List nmlist = orpbll.GetModelList("OrdPe_OrderNumber='" + modelOrder.Ord_Number + "'"); LYFZ.Model.Model_ErpOrdersPerson modelPerson = null; ArrayList Removelist = new ArrayList(); for (int i = 0; i < StrValue.Length; i++) { bool IsFind = false; for (int j = 0; j < dtList.Rows.Count; j++) { if (dtList.Rows[j]["OrdPe_OrdersPerson"].ToString().Trim() == StrValue[i].Trim()) { IsFind = true; modelPerson = orpbll.DataRowToModel(dtList.Rows[j]); modelPerson.OrdPe_Type = StrTag[i].Trim(); modelPerson.OrdPe_UpdateDateTime = strTime; modelPerson.OrdPe_UpdateName = strUserID; clist.Add(orpbll.GetUpdateCommandInfo(modelPerson)); dtList.Rows.Remove(dtList.Rows[j]); break; } } if (!IsFind) { modelPerson = new Model.Model_ErpOrdersPerson(); modelPerson.OrdPe_OrderNumber = modelOrder.Ord_Number; modelPerson.OrdPe_OrdersPerson = StrValue[i].Trim(); modelPerson.OrdPe_Type = StrTag[i].Trim(); modelPerson.OrdPe_CreateDateTime = strTime; modelPerson.OrdPe_CreateName = strUserID; clist.Add(orpbll.GetAddCommandInfo(modelPerson)); } } for (int i = 0; i < dtList.Rows.Count; i++) { clist.Add(orpbll.GetDeleteCommandInfo("ID", "=", dtList.Rows[i]["ID"].ToString().Trim())); } modelOrder.Ord_OrderPersonNumber = txtOrderPerson.Tag.ToString().Trim().Split('|')[0].Trim(); modelOrder.Ord_OrderPersonName = txtOrderPerson.Text.Trim(); //if (this.txtOrderPerson.Text.Trim() == "") //{ MessageBoxCustom.Show("接单人员不能为空!"); return; } //string[] StrValue = txtOrderPerson.Tag.ToString().Trim().Split('|')[0].Trim().Split(','); //string[] StrTag = txtOrderPerson.Tag.ToString().Trim().Split('|')[1].Trim().Split(','); //List nmlist = orpbll.GetModelList("OrdPe_OrderNumber='" + modelOrder.Ord_Number + "'"); //LYFZ.Model.Model_ErpOrdersPerson modelPerson = null; //ArrayList Removelist = new ArrayList(); //for (int i = 0; i < nmlist.Count; i++) //{ // bool isbl = true; // for (int k = 0; k < StrValue.Length; k++) // { // if (nmlist[i].OrdPe_OrdersPerson.Trim() == StrValue[k].Trim())//说明有 // { // if (nmlist[i].OrdPe_Type.Trim() != StrTag[k].Trim()) // { // modelPerson = nmlist[i]; // modelPerson.OrdPe_Type = StrTag[k].Trim(); // modelPerson.OrdPe_UpdateDateTime = strTime; // modelPerson.OrdPe_UpdateName = strUserID; // clist.Add(orpbll.GetUpdateCommandInfo(modelPerson)); // } // Removelist.Add(k); // isbl = false; // break; // } // } // if (isbl) // { clist.Add(orpbll.GetDeleteCommandInfo("ID", "=", nmlist[i].ID)); } //} //for (int l = 0; l < Removelist.Count; l++) //{ // List a = StrValue.ToList(); // a.RemoveAt(l); // StrValue = a.ToArray(); // List b = StrTag.ToList(); // b.RemoveAt(l); // StrTag = b.ToArray(); // Removelist.RemoveAt(l); // l--; //} //for (int k = 0; k < StrValue.Length; k++) //{ // modelPerson = new Model.Model_ErpOrdersPerson(); // modelPerson.OrdPe_OrderNumber = modelOrder.Ord_Number; // modelPerson.OrdPe_OrdersPerson = StrValue[k].Trim(); // modelPerson.OrdPe_Type = StrTag[k].Trim(); // modelPerson.OrdPe_CreateDateTime = strTime; // modelPerson.OrdPe_CreateName = strUserID; // clist.Add(orpbll.GetAddCommandInfo(modelPerson)); //} #endregion #region 景点与阶段资料 Hashtable htGroupList = new Hashtable(); List plist = new List(); List pmlist = new List(); switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.写真订单: if (this.OrderSightsEx != null) { bool IsContinueA = false; List mClistA = this.OrderSightsEx.GetOrderSightsValue(htData_RegisterAndBottom, modelOrder.Ord_Number, strTime, ref IsContinueA, IsMagess: false); if (!IsContinueA) { clist.AddRange(mClistA); } } break; case EnumPublic.OrderType.儿童订单: if (this.OrderStagesEx != null) { bool IsContinueB = false; List mClistB = OrderStagesEx.GetOrderStagesValue(modelOrder.Ord_Number, strTime, ref IsContinueB, ref htGroupList, IsMagess: false); if (!IsContinueB) { clist.AddRange(mClistB); } } break; } #endregion #region 订单数码 switch (this.OrdType) { case EnumPublic.OrderType.服务订单: case EnumPublic.OrderType.婚庆订单: DataTable dt = orbll.GetView_Custom("tb_ErpOrderDigital", StrWhere: "Ordv_Number = '" + modelOrder.Ord_Number + "'", ShowColumnName: "ID").Tables[0]; if (dt.Rows.Count <= 0) { LYFZ.Model.Model_ErpOrderDigital ViceModel = new Model.Model_ErpOrderDigital(); ViceModel.Ordv_Number = modelOrder.Ord_Number; ViceModel.Ordv_ViceNumber = ViceModel.Ordv_Number + "_001"; ViceModel.Ordv_DigitalNumber = 1; ViceModel.Ordv_IntoRegisterQuantity = 0; ViceModel.Ordv_IntoBottomQuantity = 0; ViceModel.Ordv_IntoRegisterQuantityPackage = 0; ViceModel.Ordv_IntoBottomQuantityPackage = 0; ViceModel.Ordv_IntoBottomAddPickQuantity = 0; ViceModel.Ordv_IntoRegisterAddPickQuantity = 0; ViceModel.Ordv_ClothingDispatcher = ""; ViceModel.Ordv_ClothingName = ""; ViceModel.Ordv_ClothingRemark = ""; ViceModel.Ordv_ClothingStatus = "0"; ViceModel.Ordv_DesignerDispatcher = ""; ViceModel.Ordv_DesignerName = ""; ViceModel.Ordv_DesignerStatus = "0"; ViceModel.Ordv_DesignValidation = ""; ViceModel.Ordv_EarlyRepairDispatcher = ""; ViceModel.Ordv_EarlyRepairName = ""; ViceModel.Ordv_EarlyRepairStatus = "0"; ViceModel.Ordv_FilmSelectionDispatcher = ""; ViceModel.Ordv_FilmSelectionName = ""; ViceModel.Ordv_FilmSelectionStatus = "0"; ViceModel.Ordv_LookDesignClaim = ""; ViceModel.Ordv_LookDesignDispatcher = ""; ViceModel.Ordv_LookDesignName = ""; ViceModel.Ordv_LookDesignStatus = "0"; ViceModel.Ordv_RefinementDispatcher = ""; ViceModel.Ordv_RefinementName = ""; ViceModel.Ordv_RefinementStatus = "0"; ViceModel.Ordv_ReservationClothingName = ""; ViceModel.Ordv_ReservationDesignerName = ""; ViceModel.Ordv_ReservationEarlyRepairName = ""; ViceModel.Ordv_ReservationFilmSelectionName = ""; ViceModel.Ordv_ReservationLookDesignName = ""; ViceModel.Ordv_ReservationRefinementName = ""; ViceModel.Ordv_ReservationSendPhotoName = ""; ViceModel.Ordv_ReservationSendPhotoStatus = "0"; ViceModel.Ordv_SelectionDesign = ""; ViceModel.Ordv_SelectionFilm = ""; ViceModel.Ordv_UpdateName = ""; ViceModel.Ordv_CreateDatetime = strTime; ViceModel.Ordv_CreateName = strUserID; clist.Add(odbll.GetAddCommandInfo(ViceModel)); LYFZ.Model.Model_ErpOrderDigitalStatus modelStatus = new Model.Model_ErpOrderDigitalStatus(); modelStatus.Ords_Number = "ORDS_" + LYFZ.BLL.BLL_ErpCustomer.GetClientNumber(); modelStatus.Ords_OrdNumber = ViceModel.Ordv_Number; modelStatus.Ords_ViceNumber = ViceModel.Ordv_ViceNumber; modelStatus.Ords_DigitalNumber = ViceModel.Ordv_DigitalNumber; modelStatus.Ords_OutSendEarlyRepairName = ""; modelStatus.Ords_OutSendEarlyRepairQuantity = 0; modelStatus.Ords_OutSendEarlyRepairStatus = "未发"; modelStatus.Ords_OutSendEarlyRepairVendor = ""; modelStatus.Ords_OutSendEarlyRepairVendorQQ = ""; modelStatus.Ords_PhotographStatus = "未拍"; modelStatus.Ords_PhotographIntStatus = 0; modelStatus.Ords_SightsName = ""; modelStatus.Ords_Photographer = ""; modelStatus.Ords_PhotographyAssistant = ""; modelStatus.Ords_MakeupArtist = ""; modelStatus.Ords_MakeupAssistant = ""; modelStatus.Ords_BootDivision = ""; modelStatus.Ords_BootDivisionAssistant = ""; modelStatus.Ords_ProductSendStatus = "未发"; modelStatus.Ords_ProductCompletedStatus = "未完"; modelStatus.Ords_ProductPickupStatus = "未取"; modelStatus.Ords_ProductPickupIntStatus = 0; modelStatus.Ords_ProductIsExpedited = "否"; modelStatus.Ords_ServiceStatus = "未进行"; modelStatus.Ords_ServiceIntStatus = 0; clist.Add(orsbll.GetAddCommandInfo(modelStatus)); } break; } #endregion #region 套系服务 if (this.OrderServiceEx != null) { bool IsServiceContinue = false; List AddServiceclist = this.OrderServiceEx.GetOrderServiceValue(strTime, ref IsServiceContinue, modelOrder.Ord_Number, Marriage: "", htGroupList: htGroupList); if (!IsServiceContinue) { clist.AddRange(AddServiceclist); } } #endregion #region 套系商品 if (this.OrderEx != null) { if (this.OrderProductEx != null) { string StrCode = ""; ComboBoxTreeViewEx cmbtreevTaoXiName = OrderEx.CmbtreevTaoXi; if (cmbtreevTaoXiName.Tag != null) { StrCode = cmbtreevTaoXiName.Tag.ToString().Trim(); } bool IsContinue = false; List AddProductclist = this.OrderProductEx.GetOrderProductValue(strTime, ref IsContinue, modelOrder.Ord_Number, htGroupList, StrCode, IsMagess: false); if (!IsContinue) { clist.AddRange(AddProductclist); } } } #endregion #region 保存订单 if (modelOrder.ID > 0) { clist.Add(orbll.GetUpdateCommandInfo(modelOrder)); } else { clist.Add(orbll.GetAddCommandInfo(modelOrder)); } #endregion #region 写日志 string StrContent = ""; LYFZ.EnumPublic.SystemLogsType SysType; if (modelOrder.ID > 0) { SysType = LYFZ.EnumPublic.SystemLogsType.修改订单; StrContent = "[修改为意向订单] 订单号为:" + modelOrder.Ord_Number + ";接单人员为:" + this.txtOrderPerson.Text.Trim() + ";订单类别为:" + modelOrder.Ord_OrderClass + ";套系名称为:" + modelOrder.Ord_SeriesName + ";套系价格为:" + modelOrder.Ord_SeriesPrice; } else { SysType = LYFZ.EnumPublic.SystemLogsType.新开订单; StrContent = "[新开意向订单] 订单号为:" + modelOrder.Ord_Number + ";接单人员为:" + this.txtOrderPerson.Text.Trim() + ";订单类别为:" + modelOrder.Ord_OrderClass + ";套系名称为:" + modelOrder.Ord_SeriesName + ";套系价格为:" + modelOrder.Ord_SeriesPrice; } clist.Add(slogbll.GetAddCommandInfo(LYFZ.BLL.BLL_ErpSystemLogs.GetWriteLogModel(SysType, StrContent, strUserID, StrUserName, LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.User_IP))); #endregion #region 办理会员卡 //办理介绍人的 if (modelClientGroup.GP_IntroducerCustomerID != "") { LYFZ.Model.Model_ErpMemberCard modelMc2 = mcbll.GetModel("Mc_CustomerNumber", modelClientGroup.GP_IntroducerCustomerID); if (modelMc2.ID <= 0) { LYFZ.Model.Model_ErpSystemConfigure sgModel = LYFZ.BLL.OrderPayment_Member.GetNewMenberNumber(1); clist.Add(sgbll.GetUpdateCommandInfo(sgModel)); modelMc2 = new Model.Model_ErpMemberCard(); modelMc2.Mc_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelMc2.Mc_Number = sgModel.Sconfig_Value; if (!string.IsNullOrEmpty(this.StrReferralsMemberCardNumber)) { modelMc2.Mc_CradNumber = this.StrReferralsMemberCardNumber; #region 打开管理界面 LYFZ.Model.Model_ErpMemberCardInterfaceManagement Modelmcim = mcimbll.GetModel("Mcim_Number", modelMc2.Mc_Number); if (Modelmcim.ID <= 0) { DataTable newdtb = new DataTable(); newdtb.Columns.Add("Points", typeof(bool)); newdtb.Columns.Add("StoredValue", typeof(bool)); newdtb.Columns.Add("BackCash", typeof(bool)); newdtb.Columns.Add("Service", typeof(bool)); newdtb.Columns.Add("NewTaken", typeof(bool)); DataRow newRow = newdtb.NewRow(); newRow["Points"] = "True"; newRow["StoredValue"] = "True"; newRow["BackCash"] = "False"; newRow["Service"] = "False"; newRow["NewTaken"] = "False"; newdtb.Rows.Add(newRow); Modelmcim = new Model.Model_ErpMemberCardInterfaceManagement(); Modelmcim.Mcim_Number = modelMc2.Mc_Number; Modelmcim.Mcim_InterfaceName = new Json.JsontoDataTable().toJson(newdtb); Modelmcim.Mcim_UpdateDatetime = strTime; Modelmcim.Mcim_UpdateName = strUserID; clist.Add(mcimbll.GetAddCommandInfo(Modelmcim)); } #endregion } else { modelMc2.Mc_CradNumber = ""; } modelMc2.Mc_CustomerNumber = modelClientGroup.GP_IntroducerCustomerID; //modelMc2.Mc_CardType = "积分卡"; modelMc2.Mc_CardType = "无"; modelMc2.Mc_TotalMoney = 0; modelMc2.Mc_Money = 0; modelMc2.Mc_TraderPassword = ""; modelMc2.Mc_UsedNumber = ""; modelMc2.Mc_Status = "1"; if (modelOrder.ID <= 0) { modelMc2.Mc_OpenCardSource = "订单介绍保存," + new System.Diagnostics.StackTrace(new System.Diagnostics.StackFrame(true)).ToString(); } else { modelMc2.Mc_OpenCardSource = "订单介绍修改," + new System.Diagnostics.StackTrace(new System.Diagnostics.StackFrame(true)).ToString(); } modelMc2.Mc_Remark = ""; modelMc2.Mc_CreateDatetime = strTime; modelMc2.Mc_CreateName = strUserID; modelMc2.Mc_TouchAccount = 0; modelMc2.Mc_TotalTouchAccount = 0; clist.Add(mcbll.GetAddCommandInfo(modelMc2)); } } #endregion #region 修改介绍的电话号码 if (!string.IsNullOrEmpty(this.StrReferralsClientPhone.Trim())) { clist.Add(ctbll.GetUpdateCommandInfo(this.modelFriends)); } #endregion if (clist.Count > 0) { #region 保存前检测订单号 if (modelOrder.ID <= 0) { DataTable tbl = orbll.GetView_Custom("tb_ErpOrder", StrWhere: "Ord_Number = '" + modelOrder.Ord_Number + "'", ShowColumnName: "Ord_Number").Tables[0]; if (tbl.Rows.Count > 0) { //if (strOrderPrefix != "") //{ tbl = orbll.GetView_Custom("tb_ErpOrder", StrWhere: "Ord_Number like '" + strOrderPrefix + "%'", filedOrder: " Ord_Number DESC", ShowColumnName: "Ord_Number", TopCount: 1).Tables[0]; } //else //{ tbl = orbll.GetView_Custom("tb_ErpOrder", filedOrder: " Ord_Number DESC", ShowColumnName: "Ord_Number", TopCount: 1).Tables[0]; //} //if (tbl.Rows.Count > 0) //{ #region 刘工 2017-03-26 修改 LYFZ.BLL.BLL_ErpOrder.UpdateOrderNumberRecord(modelOrder.Ord_Number, strUserID, SDateTime.Now); #endregion /*string strUpdateNumber = modelOrder.Ord_Number; if (tbl.Rows[0]["Ord_Number"].ToString().Trim() == modelOrder.Ord_Number) { strUpdateNumber = tbl.Rows[0]["Ord_Number"].ToString().Trim(); } DataTable tbl2 = ornrbll.GetList("Ornr_OrderDate = '" + Convert.ToDateTime(SDateTime.Now.ToString("yyyy-MM-dd")).ToString("yyyy-MM-dd HH:mm:ss") + "'").Tables[0]; LYFZ.Model.Model_ErpOrderNumberRecord modelrecotd = null; if (tbl2.Rows.Count > 0) { modelrecotd = ornrbll.DataTableToList(tbl2)[0]; modelrecotd.Ornr_OrderCount = modelrecotd.Ornr_OrderCount + 1; modelrecotd.Ornr_LastNumber = strUpdateNumber; modelrecotd.Ornr_UpdateDateTime = strTime; modelrecotd.Ornr_UpdateName = strUserID; ornrbll.Update(modelrecotd); } else { modelrecotd = new Model.Model_ErpOrderNumberRecord(); modelrecotd.Ornr_LastNumber = strUpdateNumber; modelrecotd.Ornr_OrderCount = 1; modelrecotd.Ornr_CreateDateTime = strTime; modelrecotd.Ornr_CreateName = strUserID; ornrbll.Add(modelrecotd); }*/ //MessageBoxCustom.Show("此订单号已被占用,请重新保存!"); return; IsSaveedOK = false; //} //else //{ IsSaveedOK = true; } } else { IsSaveedOK = true; } } else { IsSaveedOK = true; } #endregion if (IsSaveedOK) { #region 修改最后订单号的记录 /* if (modelOrder.ID <= 0) { LYFZ.Model.Model_ErpOrderNumberRecord modelNR = ornrbll.GetModel("Ornr_OrderDate", Convert.ToDateTime(strTime.ToString("yyyy-MM-dd")).ToString("yyyy-MM-dd HH:mm:ss")); if (modelNR.ID <= 0) { modelNR.Ornr_LastNumber = modelOrder.Ord_Number; modelNR.Ornr_OrderCount = 1; modelNR.Ornr_OrderDate = Convert.ToDateTime(strTime.ToString("yyyy-MM-dd")); modelNR.Ornr_CreateDateTime = strTime; modelNR.Ornr_CreateName = strUserID; clist.Add(ornrbll.GetAddCommandInfo(modelNR)); } else { modelNR.Ornr_LastNumber = modelOrder.Ord_Number; modelNR.Ornr_OrderCount = modelNR.Ornr_OrderCount + 1; modelNR.Ornr_UpdateDateTime = strTime; modelNR.Ornr_UpdateName = strUserID; clist.Add(ornrbll.GetUpdateCommandInfo(modelNR)); } }*/ #endregion if (MessageBoxCustom.Show("确定要保存为意向订单吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No) { return; } if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0) { #region 刘工 2017-03-26 修改 if (modelOrder.ID <= 0) { LYFZ.BLL.BLL_ErpOrder.UpdateOrderNumberRecord(modelOrder.Ord_Number, strUserID, SDateTime.Now); } #endregion this.StrNumber = modelOrder.Ord_Number; this.IsSaveed = true; switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.儿童订单: case EnumPublic.OrderType.写真订单: case EnumPublic.OrderType.婚庆订单: if (this.OrderEx != null) { this.OrderEx.SetOrderValue(orbll.GetModel(modelOrder.Ord_Number)); } break; case EnumPublic.OrderType.服务订单: if (this.ServiceOrderEx != null) { this.ServiceOrderEx.SetOrderValue(orbll.GetModel(modelOrder.Ord_Number)); } break; } this.IsUpdateOrderLoad = true; LYFZ.DAL.DAL_ErpCustomer.UpdateAggregationCustomer(this.StrNumber); if (modelOrder.Ord_Number.Trim().Length > 0) { LYFZ.BLL.BLL_ErpOrderDigitalStatus.UpdateDigitalStatus(modelOrder.Ord_Number, LYFZ.EnumPublic.OrderDigitalStatusEnum.开单); } this.OpenSingleLoad(); MessageBoxCustom.Show("保存成功!"); } else { MessageBoxCustom.Show("保存失败!"); } IsSaveedOK = true; } } } } /// /// 保存 /// /// /// void btnSave_Click(object sender, EventArgs e) { #region 检查授权 if (this.StrNumber.Trim() == "") { if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StoresOPenSingle, LYFZ.CustomAttributes.OperatingAuthority.NewOrder)) { if (!this.IsSaveedHadAuthorized) { bool IsCheckDataIsUpdate = this.CheckDataIsUpdate(); string strWindowText = "开订单"; if (IsCheckDataIsUpdate) { strWindowText += "、修改新订单"; } LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm frm = new SuperSmallForm.AuthorizeLoginSuperSmallForm("StoresOPenSingle", LYFZ.CustomAttributes.OperatingAuthority.NewOrder); frm.StrWindowText = strWindowText; frm.ShowDialog(); if (!frm.IsSaveed) { return; } else if (!LYFZ.BLL.BLL_ErpUser.GetRights(frm.CurrentAuthorizeUserRights.StoresOPenSingle, LYFZ.CustomAttributes.OperatingAuthority.NewOrder, frm.User_BelongRoles)) { frm.SetAuthorizationResult(String.Format("授权失败,授权人没有'开订单'权限")); MessageBoxCustom.Show("对不起!授权帐号:" + frm.StrUserAccount + "没有'开订单'权限。"); return; } else { frm.SetAuthorizationResult(); } this.dec_OrderDiscounts = frm.CurrentAuthorizeUserRights.GetOrderDiscounts(Convert.ToInt32(this.OrdType)); #region 检测套系是否被修改过 if (IsCheckDataIsUpdate) { if (!LYFZ.BLL.BLL_ErpUser.GetRights(frm.CurrentAuthorizeUserRights.StoresOPenSingle, LYFZ.CustomAttributes.OperatingAuthority.ModifyNewOrder, frm.User_BelongRoles)) { frm.SetAuthorizationResult(String.Format("授权失败,授权人没有'修改新订单'权限")); MessageBoxCustom.Show("对不起!授权帐号:" + frm.StrUserAccount + "没有'修改新订单'权限。"); return; } else { frm.SetAuthorizationResult(); } } #endregion } } else { #region 检测套系是否被修改过 if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StoresOPenSingle, LYFZ.CustomAttributes.OperatingAuthority.ModifyNewOrder)) { if (this.CheckDataIsUpdate()) { LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm frm = new SuperSmallForm.AuthorizeLoginSuperSmallForm("StoresOPenSingle", LYFZ.CustomAttributes.OperatingAuthority.ModifyNewOrder); frm.StrWindowText = "修改新订单"; frm.ShowDialog(); if (!frm.IsSaveed) { return; } else if (!LYFZ.BLL.BLL_ErpUser.GetRights(frm.CurrentAuthorizeUserRights.StoresOPenSingle, LYFZ.CustomAttributes.OperatingAuthority.ModifyNewOrder, frm.User_BelongRoles)) { frm.SetAuthorizationResult(String.Format("授权失败,授权人没有'修改新订单'权限")); MessageBoxCustom.Show("对不起!授权帐号:" + frm.StrUserAccount + "没有'修改新订单'权限。"); return; } else { frm.SetAuthorizationResult(); } } } #endregion this.dec_OrderDiscounts = LYFZ.BLL.BLL_ErpUser.CurrentUserRights.GetOrderDiscounts(Convert.ToInt32(this.OrdType)); } } else { if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StoresOPenSingle, LYFZ.CustomAttributes.OperatingAuthority.ModifyOrder)) { if (!this.IsSaveedHadAuthorized) { LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm frm = new SuperSmallForm.AuthorizeLoginSuperSmallForm("StoresOPenSingle", LYFZ.CustomAttributes.OperatingAuthority.ModifyOrder); frm.StrWindowText = "修改已订单"; frm.ShowDialog(); if (!frm.IsSaveed) { return; } else { if (!LYFZ.BLL.BLL_ErpUser.GetRights(frm.CurrentAuthorizeUserRights.StoresOPenSingle, LYFZ.CustomAttributes.OperatingAuthority.ModifyOrder, frm.User_BelongRoles)) { frm.SetAuthorizationResult(String.Format("授权失败,授权人没有'修改已订单'权限")); MessageBoxCustom.Show("对不起!授权帐号:" + frm.StrUserAccount + "没有'修改已订单'权限。"); return; } else { frm.SetAuthorizationResult(); } this.dec_OrderDiscounts = frm.CurrentAuthorizeUserRights.GetOrderDiscounts(Convert.ToInt32(this.OrdType)); } } } else { this.dec_OrderDiscounts = LYFZ.BLL.BLL_ErpUser.CurrentUserRights.GetOrderDiscounts(Convert.ToInt32(this.OrdType)); } } this.IsSaveedHadAuthorized = true; #endregion DateTime strTime = SDateTime.Now; string strOrderPrefix = this.GetOrderCustomPrefix(); //Model.SMSParameters sparametersModel = null; List clist = null; //是否为添加新订单 bool isAddOrder = false; bool IsSaveedOK = false; string StrMainClientNumber = ""; string StrSeriesName = ""; while (!IsSaveedOK) { clist = new List(); #region 客户资料 LYFZ.Model.Model_ErpCustomer modelCilent = null; LYFZ.Model.Model_ErpCustomer modelCilentMain = null; LYFZ.Model.Model_ErpCustomer modelChildCilent = null; List ctmlist = new List(); string CilentMainRelation = "本人"; string ChildCilentRelation = "本人"; List ClientRelation = new List(); int ClientIndex = 1; #region 如果是婚纱版,则验证并设置婚期 string Marriage = ""; string MarriageLunar = ""; switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.婚庆订单: case EnumPublic.OrderType.服务订单: int intMasse = this.mskMarriage.CheckDateValue(this.mskMarriage, chkMarriage); if (intMasse == 1) { MessageBoxCustom.Show("婚期日期日期格式输入错误"); return; } else if (intMasse == 2) { MessageBoxCustom.Show("婚期日期:" + this.mskMarriage.StrValue.Trim() + "不是公历日期,若要保存请勾上农历"); return; } if (this.mskMarriage.StrValue.Trim() != "") { Marriage = this.mskMarriage.StrValue.Trim();//婚期 if (this.chkMarriage.Checked)//婚期历类 { MarriageLunar = "1"; } else { MarriageLunar = "0"; } } break; } #endregion foreach (Control control in this.flowPanel1.Controls) { if (control is SetCustomControls.OrderClientParentsControlsEx) { SetCustomControls.OrderClientParentsControlsEx tmp = (SetCustomControls.OrderClientParentsControlsEx)control; if (tmp.StrClientAttribute == "Man_") { #region 主要联系人 if (this.OrdType == EnumPublic.OrderType.儿童订单) { CilentMainRelation = ""; } LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.ClientModel ClientModel = tmp.GetClientValue(ref CilentMainRelation); if (ClientModel == null) { return; } if (ClientModel.ID > 0) { modelCilentMain = ctbll.GetModel(ClientModel.ID); modelCilentMain.Cus_UpdateDateTime = strTime; modelCilentMain.Cus_UpdateName = strUserID; } else { modelCilentMain = new Model.Model_ErpCustomer(); modelCilentMain.Cus_CustomerNumber = LYFZ.BLL.BLL_ErpCustomer.GetClientNumber(); modelCilentMain.Cus_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelCilentMain.Cus_CreateDateTime = strTime; modelCilentMain.Cus_CreateName = strUserID; } modelCilentMain.Cus_Address = ClientModel.CusAddress; modelCilentMain.Cus_Birthday = ClientModel.CusBirthday; modelCilentMain.Cus_BirthdayLunar = ClientModel.CusBirthdayLunar; modelCilentMain.Cus_DayForMarriage = ""; modelCilentMain.Cus_DayForMarriageLunar = ""; switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.婚庆订单: case EnumPublic.OrderType.服务订单: modelCilentMain.Cus_DayForMarriage = Marriage; modelCilentMain.Cus_DayForMarriageLunar = MarriageLunar; break; } if (LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.EnabledIDNumber) { modelCilentMain.Cus_IDNumber = ClientModel.CusIDNumber; } modelCilentMain.Cus_Type = ""; modelCilentMain.Cus_FixedPhone = ClientModel.CusFixedPhone; modelCilentMain.Cus_MicroSignal = ClientModel.CusMicroSignal; modelCilentMain.Cus_Name = ClientModel.CusName; modelCilentMain.Cus_NamePinyin = ClientModel.CusNamePinyin; modelCilentMain.Cus_QQ = ClientModel.CusQQ; modelCilentMain.Cus_Region = ClientModel.CusRegion; modelCilentMain.Cus_Relations = ClientModel.CusRelations; modelCilentMain.Cus_Sex = ClientModel.CusSex; modelCilentMain.Cus_Telephone = ClientModel.CusTelephone; modelCilentMain.Cus_WorkUnit = ClientModel.CusWorkUnit; modelCilentMain.Cus_Zodiac = ClientModel.CusZodiac; StrMainClientNumber = modelCilentMain.Cus_CustomerNumber; if (modelCilentMain.ID == 0) { clist.Add(ctbll.GetAddCommandInfo(modelCilentMain)); } else { clist.Add(ctbll.GetUpdateCommandInfo(modelCilentMain)); } #endregion } else { #region 其他联系人 string strOtherClienRelation = ""; LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.ClientModel ClientModel = tmp.GetClientValue(ref strOtherClienRelation); ClientRelation.Add(strOtherClienRelation); if (ClientModel == null) { return; } if (ClientModel.ID > 0) { modelCilent = ctbll.GetModel(ClientModel.ID); modelCilent.Cus_UpdateDateTime = strTime; modelCilent.Cus_UpdateName = strUserID; } else { modelCilent = new Model.Model_ErpCustomer(); modelCilent.Cus_CustomerNumber = LYFZ.BLL.BLL_ErpCustomer.GetClientNumber(); modelCilent.Cus_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelCilent.Cus_CreateDateTime = strTime; modelCilent.Cus_CreateName = strUserID; } if (LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.EnabledIDNumber) { modelCilent.Cus_IDNumber = ClientModel.CusIDNumber; } modelCilent.Cus_Address = ClientModel.CusAddress; modelCilent.Cus_Birthday = ClientModel.CusBirthday; modelCilent.Cus_BirthdayLunar = ClientModel.CusBirthdayLunar; modelCilent.Cus_DayForMarriage = ""; modelCilent.Cus_DayForMarriageLunar = ""; switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.婚庆订单: case EnumPublic.OrderType.服务订单: modelCilent.Cus_DayForMarriage = Marriage; modelCilent.Cus_DayForMarriageLunar = MarriageLunar; break; } modelCilent.Cus_Type = ""; modelCilent.Cus_FixedPhone = ClientModel.CusFixedPhone; modelCilent.Cus_MicroSignal = ClientModel.CusMicroSignal; modelCilent.Cus_Name = ClientModel.CusName; modelCilent.Cus_NamePinyin = ClientModel.CusNamePinyin; modelCilent.Cus_QQ = ClientModel.CusQQ; modelCilent.Cus_Region = ClientModel.CusRegion; modelCilent.Cus_Relations = ClientModel.CusRelations; modelCilent.Cus_Sex = ClientModel.CusSex; modelCilent.Cus_Telephone = ClientModel.CusTelephone; modelCilent.Cus_WorkUnit = ClientModel.CusWorkUnit; modelCilent.Cus_Zodiac = ClientModel.CusZodiac; if (modelCilent.ID <= 0) { clist.Add(ctbll.GetAddCommandInfo(modelCilent)); } else { clist.Add(ctbll.GetUpdateCommandInfo(modelCilent)); } ctmlist.Add(modelCilent); #endregion } } if (control is SetCustomControls.OrderClientChildrenControlsEx) { #region 儿童客户 SetCustomControls.OrderClientChildrenControlsEx tmp = (SetCustomControls.OrderClientChildrenControlsEx)control; LYFZ.Model.Model_ErpCustomer ChildClientModel = tmp.GetClientValue(ref ChildCilentRelation); if (ChildClientModel == null) { return; } if (ChildClientModel.ID > 0) { modelChildCilent = ctbll.GetModel(ChildClientModel.ID); modelChildCilent.Cus_UpdateDateTime = strTime; modelChildCilent.Cus_UpdateName = strUserID; } else { modelChildCilent = new Model.Model_ErpCustomer(); modelChildCilent.Cus_CustomerNumber = LYFZ.BLL.BLL_ErpCustomer.GetClientNumber(); modelChildCilent.Cus_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelChildCilent.Cus_CreateDateTime = strTime; modelChildCilent.Cus_CreateName = strUserID; } modelChildCilent.Cus_Type = "儿童"; modelChildCilent.Cus_Birthday = ChildClientModel.Cus_Birthday; modelChildCilent.Cus_BirthdayLunar = ChildClientModel.Cus_BirthdayLunar; modelChildCilent.Cus_Name = ChildClientModel.Cus_Name; modelChildCilent.Cus_NamePinyin = ChildClientModel.Cus_NamePinyin; modelChildCilent.Cus_Sex = ChildClientModel.Cus_Sex; modelChildCilent.Cus_Zodiac = ChildClientModel.Cus_Zodiac; if (modelChildCilent.ID == 0) { clist.Add(ctbll.GetAddCommandInfo(modelChildCilent)); } else { clist.Add(ctbll.GetUpdateCommandInfo(modelChildCilent)); } #endregion } ClientIndex++; } #endregion #region 订单资料 Hashtable htData_RegisterAndBottom = new Hashtable(); htData_RegisterAndBottom["IntoRegisterQuantity"] = 0; htData_RegisterAndBottom["IntoBottomQuantity"] = 0; htData_RegisterAndBottom["IntoRegisterQuantityPackage"] = 0; htData_RegisterAndBottom["IntoBottomQuantityPackage"] = 0; LYFZ.Model.Model_ErpOrder modelOrder = null; string StrLovedStyle = this.GetStyle(); string StrCustomerSource = this.GetClientSource(); string StrNewOrderNumber = LYFZ.BLL.BLL_ErpOrder.GenerateNewMainOrderNo(SDateTime.Now, strOrderPrefix); string StrOrderType = Convert.ToInt32(this.OrdType).ToString(); switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.儿童订单: case EnumPublic.OrderType.写真订单: case EnumPublic.OrderType.婚庆订单: if (this.OrderEx != null) { modelOrder = this.OrderEx.GetOrderValue(ref htData_RegisterAndBottom, StrNewOrderNumber: StrNewOrderNumber, StrOrderType: StrOrderType, StrLovedStyle: StrLovedStyle, StrCustomerSource: StrCustomerSource, StrClass: "1", StrInfoID: strInfoID, StrTime: strTime, StrUserID: strUserID); } else { MessageBoxCustom.Show("订单信息未填写!"); return; } break; case EnumPublic.OrderType.服务订单: if (this.ServiceOrderEx != null) { modelOrder = this.ServiceOrderEx.GetOrderValue(StrNewOrderNumber: StrNewOrderNumber, StrOrderType: StrOrderType, StrLovedStyle: StrLovedStyle, StrCustomerSource: StrCustomerSource, StrClass: "1", StrInfoID: strInfoID, StrTime: strTime, StrUserID: strUserID); } else { MessageBoxCustom.Show("订单信息未填写!"); return; } break; } if (modelOrder == null) { return; } StrSeriesName = modelOrder.Ord_SeriesName; #endregion #region 医院跟踪客户修改 if (!string.IsNullOrEmpty(this.ComeSingleLotNumber)) { LYFZ.Model.Model_ErpHospitalClient modelHospitalClient = hcbll.GetModel("Hct_Oddnumber", this.ComeSingleLotNumber); modelHospitalClient.Hct_OrderNumber = modelOrder.Ord_Number; modelHospitalClient.Hct_CustomerOrders = 1; clist.Add(hcbll.GetUpdateCommandInfo(modelHospitalClient)); } #endregion #region 订单客户组 LYFZ.Model.Model_ErpCustomerGroup modelClientGroup = null; if (this.OrderGroupNumber != "") { modelClientGroup = cgbll.GetModel("GP_CustomerGroupID", this.OrderGroupNumber); } else { modelClientGroup = cgbll.GetModel("GP_OrderNumber", modelOrder.Ord_Number); } string strClientSource = this.GetClientSource(); if (strClientSource == "") { MessageBoxCustom.Show("请选择客户来源!"); return; } if (modelClientGroup.ID > 0) { modelClientGroup.GP_GroupType = 0; modelClientGroup.GP_CustomerType = Convert.ToInt32(this.OrdType); modelClientGroup.GP_OrderNumber = modelOrder.Ord_Number; modelClientGroup.GP_CustomerSource = strClientSource; if (modelClientGroup.GP_CustomerStatus.Trim() != "正常") { modelClientGroup.GP_CustomerStatus = "追回"; modelClientGroup.GP_RecoverDateTime = strTime; if (string.IsNullOrEmpty(LYFZ.Command.Command_Validate.DateTimeToString(modelClientGroup.GP_TransactionTime))) { modelClientGroup.GP_TransactionTime = strTime; } } modelClientGroup.GP_UpdateDatetime = strTime; modelClientGroup.GP_UpdateName = strUserID; if (this.modelFriends != null) { modelClientGroup.GP_IntroducerCustomerID = this.modelFriends.Cus_CustomerNumber; } else { modelClientGroup.GP_IntroducerCustomerID = ""; } clist.Add(cgbll.GetUpdateCommandInfo(modelClientGroup)); } else { modelClientGroup = new Model.Model_ErpCustomerGroup(); modelClientGroup.GP_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelClientGroup.GP_OrderNumber = modelOrder.Ord_Number; modelClientGroup.GP_CustomerGroupID = LYFZ.BLL.BLL_ErpCustomer.GetNewClientGroupNumber(); modelClientGroup.GP_GroupType = 0; modelClientGroup.GP_CustomerType = Convert.ToInt32(this.OrdType); modelClientGroup.GP_CustomerStatus = "正常"; modelClientGroup.GP_LossReason = ""; modelClientGroup.GP_DegreeOfIntent = ""; modelClientGroup.GP_CustomerSource = strClientSource; if (this.modelFriends != null) { modelClientGroup.GP_IntroducerCustomerID = this.modelFriends.Cus_CustomerNumber; } else { modelClientGroup.GP_IntroducerCustomerID = ""; } modelClientGroup.GP_Remark = ""; modelClientGroup.GP_BelongsPersonID = strUserID; modelClientGroup.GP_CreateDatetime = strTime; modelClientGroup.GP_CreateName = strUserID; modelClientGroup.GP_ISIntentionCustomer = 0; clist.Add(cgbll.GetAddCommandInfo(modelClientGroup)); } #endregion #region 客户成员组 LYFZ.Model.Model_ErpCustomerGroupMembers modelGroupMember = null; List Gmlist = cgmbll.GetModelList("GM_CustomerGroupID='" + modelClientGroup.GP_CustomerGroupID + "'"); List ctmlistGroup = ctmlist; List ClientRelationGroup = ClientRelation; if (Gmlist.Count > 0) { if (modelChildCilent != null) { bool IsBl = true; for (int i = 0; i < Gmlist.Count; i++) { if (Gmlist[i].GM_CustomerID.Trim() == modelChildCilent.Cus_CustomerNumber) { IsBl = false; modelGroupMember = Gmlist[i]; modelGroupMember.GM_Master = 0; modelGroupMember.GM_Relation = ChildCilentRelation; clist.Add(cgmbll.GetUpdateCommandInfo(modelGroupMember)); Gmlist.RemoveAt(i); break; } } if (IsBl) { modelGroupMember = new Model.Model_ErpCustomerGroupMembers(); modelGroupMember.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelGroupMember.GM_CustomerGroupID = modelClientGroup.GP_CustomerGroupID; modelGroupMember.GM_CustomerID = modelChildCilent.Cus_CustomerNumber; modelGroupMember.GM_Master = 0; modelGroupMember.GM_ProtagonistCustomer = 1; modelGroupMember.GM_RelatedPersonID = modelChildCilent.Cus_CustomerNumber; modelGroupMember.GM_Relation = ChildCilentRelation; clist.Add(cgmbll.GetAddCommandInfo(modelGroupMember)); } } if (modelCilentMain != null) { bool IsBl = true; for (int i = 0; i < Gmlist.Count; i++) { if (Gmlist[i].GM_CustomerID.Trim() == modelCilentMain.Cus_CustomerNumber) { IsBl = false; modelGroupMember = Gmlist[i]; modelGroupMember.GM_Master = 1; switch (this.OrdType) { case EnumPublic.OrderType.儿童订单: modelGroupMember.GM_RelatedPersonID = modelChildCilent.Cus_CustomerNumber; modelGroupMember.GM_ProtagonistCustomer = 0; break; default: modelGroupMember.GM_RelatedPersonID = modelCilentMain.Cus_CustomerNumber; modelGroupMember.GM_ProtagonistCustomer = 1; break; } modelGroupMember.GM_Relation = CilentMainRelation; clist.Add(cgmbll.GetUpdateCommandInfo(modelGroupMember)); Gmlist.RemoveAt(i); break; } } if (IsBl) { modelGroupMember = new Model.Model_ErpCustomerGroupMembers(); modelGroupMember.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelGroupMember.GM_CustomerGroupID = modelClientGroup.GP_CustomerGroupID; modelGroupMember.GM_CustomerID = modelCilentMain.Cus_CustomerNumber; modelGroupMember.GM_Master = 1; switch (this.OrdType) { case EnumPublic.OrderType.儿童订单: modelGroupMember.GM_RelatedPersonID = modelChildCilent.Cus_CustomerNumber; modelGroupMember.GM_ProtagonistCustomer = 0; break; default: modelGroupMember.GM_RelatedPersonID = modelCilentMain.Cus_CustomerNumber; modelGroupMember.GM_ProtagonistCustomer = 1; break; } modelGroupMember.GM_Relation = CilentMainRelation; clist.Add(cgmbll.GetAddCommandInfo(modelGroupMember)); } } for (int i = 0; i < Gmlist.Count; i++) { bool IsBl = true; for (int j = 0; j < ctmlistGroup.Count; j++) { if (Gmlist[i].GM_CustomerID == ctmlistGroup[j].Cus_CustomerNumber) { IsBl = false; modelGroupMember = Gmlist[i]; switch (this.OrdType) { case EnumPublic.OrderType.儿童订单: modelGroupMember.GM_RelatedPersonID = modelChildCilent.Cus_CustomerNumber; modelGroupMember.GM_ProtagonistCustomer = 0; break; default: modelGroupMember.GM_RelatedPersonID = modelCilentMain.Cus_CustomerNumber; modelGroupMember.GM_ProtagonistCustomer = 1; break; } modelGroupMember.GM_Master = 0; modelGroupMember.GM_Relation = ClientRelationGroup[j].Trim(); clist.Add(cgmbll.GetUpdateCommandInfo(modelGroupMember)); ctmlistGroup.RemoveAt(j); ClientRelationGroup.RemoveAt(j); } } if (IsBl) { clist.Add(cgmbll.GetDeleteCommandInfo("ID", "=", Gmlist[i].ID)); } } } else { switch (this.OrdType) { case EnumPublic.OrderType.儿童订单: modelGroupMember = new Model.Model_ErpCustomerGroupMembers(); modelGroupMember.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelGroupMember.GM_CustomerGroupID = modelClientGroup.GP_CustomerGroupID; modelGroupMember.GM_CustomerID = modelChildCilent.Cus_CustomerNumber; modelGroupMember.GM_Master = 0; modelGroupMember.GM_ProtagonistCustomer = 1; modelGroupMember.GM_RelatedPersonID = modelChildCilent.Cus_CustomerNumber; modelGroupMember.GM_Relation = ChildCilentRelation; clist.Add(cgmbll.GetAddCommandInfo(modelGroupMember)); modelGroupMember = new Model.Model_ErpCustomerGroupMembers(); modelGroupMember.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelGroupMember.GM_CustomerGroupID = modelClientGroup.GP_CustomerGroupID; modelGroupMember.GM_CustomerID = modelCilentMain.Cus_CustomerNumber; modelGroupMember.GM_Master = 1; modelGroupMember.GM_ProtagonistCustomer = 0; modelGroupMember.GM_RelatedPersonID = modelChildCilent.Cus_CustomerNumber; modelGroupMember.GM_Relation = CilentMainRelation; clist.Add(cgmbll.GetAddCommandInfo(modelGroupMember)); break; default: modelGroupMember = new Model.Model_ErpCustomerGroupMembers(); modelGroupMember.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelGroupMember.GM_CustomerGroupID = modelClientGroup.GP_CustomerGroupID; modelGroupMember.GM_CustomerID = modelCilentMain.Cus_CustomerNumber; modelGroupMember.GM_Master = 1; modelGroupMember.GM_ProtagonistCustomer = 1; modelGroupMember.GM_RelatedPersonID = modelCilentMain.Cus_CustomerNumber; modelGroupMember.GM_Relation = CilentMainRelation; clist.Add(cgmbll.GetAddCommandInfo(modelGroupMember)); break; } } for (int i = 0; i < ctmlistGroup.Count; i++) { modelGroupMember = new Model.Model_ErpCustomerGroupMembers(); modelGroupMember.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelGroupMember.GM_CustomerGroupID = modelClientGroup.GP_CustomerGroupID; modelGroupMember.GM_CustomerID = ctmlistGroup[i].Cus_CustomerNumber; modelGroupMember.GM_Master = 0; modelGroupMember.GM_Relation = ClientRelationGroup[i].Trim(); switch (this.OrdType) { case EnumPublic.OrderType.儿童订单: modelGroupMember.GM_RelatedPersonID = modelChildCilent.Cus_CustomerNumber; modelGroupMember.GM_ProtagonistCustomer = 0; break; default: modelGroupMember.GM_RelatedPersonID = modelCilentMain.Cus_CustomerNumber; modelGroupMember.GM_ProtagonistCustomer = 1; break; } clist.Add(cgmbll.GetAddCommandInfo(modelGroupMember)); } #endregion #region 订单人员表 if (this.txtOrderPerson.Text.Trim() == "") { MessageBoxCustom.Show("接单人员不能为空!"); return; } string[] StrValue = txtOrderPerson.Tag.ToString().Trim().Split('|')[0].Trim().Split(','); string[] StrTag = txtOrderPerson.Tag.ToString().Trim().Split('|')[1].Trim().Split(','); DataTable dtList = orbll.GetView_Custom("tb_ErpOrdersPerson", StrWhere: "OrdPe_OrderNumber='" + modelOrder.Ord_Number + "'", ShowColumnName: "*", filedOrder: "OrdPe_Type ASC").Tables[0];// orpbll.GetModelList("OrdPe_OrderNumber='" + modelOrder.Ord_Number + "'"); //List nmlist = orpbll.GetModelList("OrdPe_OrderNumber='" + modelOrder.Ord_Number + "'"); LYFZ.Model.Model_ErpOrdersPerson modelPerson = null; ArrayList Removelist = new ArrayList(); for (int i = 0; i < StrValue.Length; i++) { bool IsFind = false; for (int j = 0; j < dtList.Rows.Count; j++) { if (dtList.Rows[j]["OrdPe_OrdersPerson"].ToString().Trim() == StrValue[i].Trim()) { IsFind = true; modelPerson = orpbll.DataRowToModel(dtList.Rows[j]); modelPerson.OrdPe_Type = StrTag[i].Trim(); modelPerson.OrdPe_UpdateDateTime = strTime; modelPerson.OrdPe_UpdateName = strUserID; clist.Add(orpbll.GetUpdateCommandInfo(modelPerson)); dtList.Rows.Remove(dtList.Rows[j]); break; } } if (!IsFind) { modelPerson = new Model.Model_ErpOrdersPerson(); modelPerson.OrdPe_OrderNumber = modelOrder.Ord_Number; modelPerson.OrdPe_OrdersPerson = StrValue[i].Trim(); modelPerson.OrdPe_Type = StrTag[i].Trim(); modelPerson.OrdPe_CreateDateTime = strTime; modelPerson.OrdPe_CreateName = strUserID; clist.Add(orpbll.GetAddCommandInfo(modelPerson)); } } for (int i = 0; i < dtList.Rows.Count; i++) { clist.Add(orpbll.GetDeleteCommandInfo("ID", "=", dtList.Rows[i]["ID"].ToString().Trim())); } modelOrder.Ord_OrderPersonNumber = txtOrderPerson.Tag.ToString().Trim().Split('|')[0].Trim(); modelOrder.Ord_OrderPersonName = txtOrderPerson.Text.Trim(); #endregion #region 景点与阶段资料 Hashtable htGroupList = new Hashtable(); switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.写真订单: if (this.OrderSightsEx != null) { bool IsContinueA = false; List mClistA = this.OrderSightsEx.GetOrderSightsValue(htData_RegisterAndBottom, modelOrder.Ord_Number, strTime, ref IsContinueA, IsMagess: true); if (IsContinueA) { return; } clist.AddRange(mClistA); } break; case EnumPublic.OrderType.儿童订单: bool IsContinueB = false; List mClistB = OrderStagesEx.GetOrderStagesValue(modelOrder.Ord_Number, strTime, ref IsContinueB, ref htGroupList, IsMagess: true); if (IsContinueB) { return; } clist.AddRange(mClistB); break; } #endregion #region 订单数码 switch (this.OrdType) { case EnumPublic.OrderType.服务订单: case EnumPublic.OrderType.婚庆订单: DataTable dt = orbll.GetView_Custom("tb_ErpOrderDigital", StrWhere: "Ordv_Number = '" + modelOrder.Ord_Number + "'", ShowColumnName: "ID").Tables[0]; if (dt.Rows.Count <= 0) { LYFZ.Model.Model_ErpOrderDigital ViceModel = new Model.Model_ErpOrderDigital(); ViceModel.Ordv_Number = modelOrder.Ord_Number; ViceModel.Ordv_ViceNumber = ViceModel.Ordv_Number + "_001"; ViceModel.Ordv_DigitalNumber = 1; ViceModel.Ordv_IntoRegisterQuantity = 0; ViceModel.Ordv_IntoBottomQuantity = 0; ViceModel.Ordv_IntoRegisterQuantityPackage = 0; ViceModel.Ordv_IntoBottomQuantityPackage = 0; ViceModel.Ordv_IntoBottomAddPickQuantity = 0; ViceModel.Ordv_IntoRegisterAddPickQuantity = 0; ViceModel.Ordv_ClothingDispatcher = ""; ViceModel.Ordv_ClothingName = ""; ViceModel.Ordv_ClothingRemark = ""; ViceModel.Ordv_ClothingStatus = "0"; ViceModel.Ordv_DesignerDispatcher = ""; ViceModel.Ordv_DesignerName = ""; ViceModel.Ordv_DesignerStatus = "0"; ViceModel.Ordv_DesignValidation = ""; ViceModel.Ordv_EarlyRepairDispatcher = ""; ViceModel.Ordv_EarlyRepairName = ""; ViceModel.Ordv_EarlyRepairStatus = "0"; ViceModel.Ordv_FilmSelectionDispatcher = ""; ViceModel.Ordv_FilmSelectionName = ""; ViceModel.Ordv_FilmSelectionStatus = "0"; ViceModel.Ordv_LookDesignClaim = ""; ViceModel.Ordv_LookDesignDispatcher = ""; ViceModel.Ordv_LookDesignName = ""; ViceModel.Ordv_LookDesignStatus = "0"; ViceModel.Ordv_RefinementDispatcher = ""; ViceModel.Ordv_RefinementName = ""; ViceModel.Ordv_RefinementStatus = "0"; ViceModel.Ordv_ReservationClothingName = ""; ViceModel.Ordv_ReservationDesignerName = ""; ViceModel.Ordv_ReservationEarlyRepairName = ""; ViceModel.Ordv_ReservationFilmSelectionName = ""; ViceModel.Ordv_ReservationLookDesignName = ""; ViceModel.Ordv_ReservationRefinementName = ""; ViceModel.Ordv_ReservationSendPhotoName = ""; ViceModel.Ordv_ReservationSendPhotoStatus = "0"; ViceModel.Ordv_SelectionDesign = ""; ViceModel.Ordv_SelectionFilm = ""; ViceModel.Ordv_UpdateName = ""; ViceModel.Ordv_CreateDatetime = strTime; ViceModel.Ordv_CreateName = strUserID; clist.Add(odbll.GetAddCommandInfo(ViceModel)); LYFZ.Model.Model_ErpOrderDigitalStatus modelStatus = new Model.Model_ErpOrderDigitalStatus(); modelStatus.Ords_Number = "ORDS_" + LYFZ.BLL.BLL_ErpCustomer.GetClientNumber(); modelStatus.Ords_OrdNumber = ViceModel.Ordv_Number; modelStatus.Ords_ViceNumber = ViceModel.Ordv_ViceNumber; modelStatus.Ords_DigitalNumber = ViceModel.Ordv_DigitalNumber; modelStatus.Ords_OutSendEarlyRepairName = ""; modelStatus.Ords_OutSendEarlyRepairQuantity = 0; modelStatus.Ords_OutSendEarlyRepairStatus = "未发"; modelStatus.Ords_OutSendEarlyRepairVendor = ""; modelStatus.Ords_OutSendEarlyRepairVendorQQ = ""; modelStatus.Ords_PhotographStatus = "未拍"; modelStatus.Ords_PhotographIntStatus = 0; modelStatus.Ords_SightsName = ""; modelStatus.Ords_Photographer = ""; modelStatus.Ords_PhotographyAssistant = ""; modelStatus.Ords_MakeupArtist = ""; modelStatus.Ords_MakeupAssistant = ""; modelStatus.Ords_BootDivision = ""; modelStatus.Ords_BootDivisionAssistant = ""; modelStatus.Ords_ProductSendStatus = "未发"; modelStatus.Ords_ProductCompletedStatus = "未完"; modelStatus.Ords_ProductPickupStatus = "未取"; modelStatus.Ords_ProductPickupIntStatus = 0; modelStatus.Ords_ProductIsExpedited = "否"; modelStatus.Ords_ServiceStatus = "未进行"; modelStatus.Ords_ServiceIntStatus = 0; clist.Add(orsbll.GetAddCommandInfo(modelStatus)); } break; } #endregion #region 套系服务 //DateTime DateMarriage = LYFZ.WinAPI.CustomPublicMethod.GetNullDateTime(); //if (Marriage != "") //{ // if (MarriageLunar.Trim() == "1") // { // if (string.IsNullOrEmpty(LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetLunarCalendarToSolarCalendar(Marriage))) // { MessageBoxCustom.Show("婚期日期:农历不存在" + Marriage + "此日期!"); return; } // DateMarriage = Convert.ToDateTime(LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetLunarCalendarToSolarCalendar(Marriage)); // } // else // { DateMarriage = Convert.ToDateTime(Marriage); } //} bool IsServiceContinue = false; List AddServiceclist = OrderServiceEx.GetOrderServiceValue(strTime, ref IsServiceContinue, modelOrder.Ord_Number, Marriage, htGroupList, MarriageLunar); if (IsServiceContinue) { return; } clist.AddRange(AddServiceclist); #endregion #region 套系商品 switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.儿童订单: case EnumPublic.OrderType.写真订单: case EnumPublic.OrderType.婚庆订单: ComboBoxTreeViewEx cmbtreevTaoXiName = OrderEx.CmbtreevTaoXi; //if (cmbtreevTaoXiName.Tag != null) { bool IsContinue = false; string strPackagesCode = ""; if (cmbtreevTaoXiName.Tag != null) {strPackagesCode = cmbtreevTaoXiName.Tag.ToString().Trim(); } List AddProductclist = OrderProductEx.GetOrderProductValue(strTime, ref IsContinue, modelOrder.Ord_Number, htGroupList, strPackagesCode); if (IsContinue) { return; } clist.AddRange(AddProductclist); #region 计算权限套系价格 if (cmbtreevTaoXiName.StrGetName.Trim() != "true" && cmbtreevTaoXiName.StrGetName.Trim() != "") { if (LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.EnableOrderCostControlSystem) { //当前总成本价 decimal Old_PackagesAmount = OrderProductEx.GetProductAoumnt(); Old_PackagesAmount += OrderServiceEx.GetServiceAoumnt(); if (this.OrdType == EnumPublic.OrderType.儿童订单) { Old_PackagesAmount += this.OrderStagesEx.GetStagesAoumnt(); } else if (this.OrdType != EnumPublic.OrderType.婚庆订单) { Old_PackagesAmount += this.OrderSightsEx.GetSightsAoumnt(); } if (modelOrder.Ord_SeriesPrice < (Old_PackagesAmount * this.dec_OrderDiscounts)) { if (MessageBoxCustom.Show("您输入的套系价格低于订单总成本,无法保存!\r\n是否需要去授权?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No) { return; } else { LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm frm = new SuperSmallForm.AuthorizeLoginSuperSmallForm(null, CustomAttributes.OperatingAuthority.ErrorPrivilegeValue, 1); frm.ShowDialog(); if (!frm.IsSaveed) { return; } else { if (modelOrder.Ord_SeriesPrice < (Old_PackagesAmount * frm.CurrentAuthorizeUserRights.GetOrderDiscounts(Convert.ToInt32(this.OrdType)))) { frm.SetAuthorizationResult(String.Format("授权失败,授权人成本管控权限不够")); MessageBoxCustom.Show("授权帐号:" + frm.StrUserAccount + ",授权后的套系价格低于订单总成本,无法保存!"); return; } else { frm.SetAuthorizationResult(); } } } } } } #endregion } break; case EnumPublic.OrderType.服务订单: bool IsContinueA = false; List AddProductclistA = OrderProductEx.GetOrderProductValue(strTime, ref IsContinueA, modelOrder.Ord_Number, htGroupList, "".Trim()); if (IsContinueA) { return; } clist.AddRange(AddProductclistA); decimal Old_PackagesAmountA = OrderProductEx.GetProductAoumnt(); Old_PackagesAmountA += OrderServiceEx.GetServiceAoumnt(); if (modelOrder.Ord_SeriesPrice < (Old_PackagesAmountA * this.dec_OrderDiscounts)) { if (MessageBoxCustom.Show("您输入的套系价格低于订单总成本,无法保存!\r\n是否需要去授权?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No) { return; } else { LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.AuthorizeLoginSuperSmallForm frm = new SuperSmallForm.AuthorizeLoginSuperSmallForm(null, CustomAttributes.OperatingAuthority.ErrorPrivilegeValue,1); frm.ShowDialog(); if (!frm.IsSaveed) { return; } else { if (modelOrder.Ord_SeriesPrice < (Old_PackagesAmountA * frm.CurrentAuthorizeUserRights.GetOrderDiscounts(Convert.ToInt32(this.OrdType)))) { frm.SetAuthorizationResult(String.Format("授权失败,授权人成本管控权限不够")); MessageBoxCustom.Show("授权帐号:" + frm.StrUserAccount + ",授权后的套系价格低于订单总成本,无法保存!"); return; } else { frm.SetAuthorizationResult(); } } } } break; } #endregion #region 朋友介绍副卡使用 if (this.modelViceCard != null) { if (this.modelViceCard.Mvc_Status == "1") { if (this.modelViceCard.Mvc_ViceCardType == "返现副卡") { string StrRemark = ""; bool IsValidity = LYFZ.BLL.OrderPayment_Member.VerifiedValidity(this.modelViceCard.Mvc_Number, LYFZ.EnumPublic.MemberFunctionAttribute.返现); if (!IsValidity) { StrRemark = "主卡返现有效期已过,不支持返现!"; } decimal IntCoefficient = 1; DataTable tblSconfig = orbll.GetView_Custom("tb_ErpSystemConfigure", StrWhere: " Sconfig_Code = 'BackCashCoefficient'", ShowColumnName: "Sconfig_Value").Tables[0]; if (tblSconfig.Rows.Count > 0) { IntCoefficient = Convert.ToDecimal(tblSconfig.Rows[0]["Sconfig_Value"].ToString().Trim()); } LYFZ.Model.Model_ErpMemberCardBackCash modelBackCash = mcbcbll.GetModel("Mcbc_Number", this.modelViceCard.Mvc_Number); this.modelViceCard.Mvc_Status = "2"; this.modelViceCard.Mvc_UpdateDateTime = strTime; this.modelViceCard.Mvc_UpdateName = strUserID; this.modelViceCard.Mvc_Remark = StrRemark; clist.Add(mcvbll.GetUpdateCommandInfo(this.modelViceCard)); LYFZ.Model.Model_ErpMemberCardOperateLOG modelopLog = new Model.Model_ErpMemberCardOperateLOG(); modelopLog.mcol_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelopLog.mcol_Number = this.modelViceCard.Mvc_ViceNumber; modelopLog.mcol_Type = "4"; modelopLog.mcol_Remark = StrRemark; modelopLog.mcol_CreateDatetime = strTime; modelopLog.mcol_CreateName = strUserID; clist.Add(mcopbll.GetAddCommandInfo(modelopLog)); if (IsValidity) { List mlistBackCashSet = mcbcsetbll.GetModelList("Mcb_Number = '" + this.modelViceCard.Mvc_Number + "' and (Mcb_ViceNumber = '' or Mcb_ViceNumber is NULL)"); if (mlistBackCashSet.Count > 0) { LYFZ.Model.Model_ErpMemberCardBackCashSet modelMcBcSet = mlistBackCashSet[0]; if ((modelBackCash.Mcbc_PackagesMoney * IntCoefficient) <= modelOrder.Ord_SeriesPrice) { modelMcBcSet.Mcb_IsSpending = 1; modelMcBcSet.Mcb_ViceNumber = modelViceCard.Mvc_ViceNumber; modelMcBcSet.Mcb_OrderNumber = modelOrder.Ord_Number; modelMcBcSet.Mcb_SpendingTime = strTime; modelMcBcSet.Mcb_UpdateDateTime = strTime; modelMcBcSet.Mcb_UpdateName = strUserID; DataTable tbl = orbll.GetView_Custom("tb_ErpMemberCardBackCashSet", StrWhere: "Mcb_Number = '" + this.modelViceCard.Mvc_Number + "' and Mcb_CashBackGroup = '" + this.modelViceCard.Mvc_CashBackGroup + "'", ShowColumnName: "Mcb_CashBackAmount,Mcb_IsSpending").Tables[0]; DataRow[] dtRow = tbl.Select("Mcb_IsSpending = '0'"); decimal DecBackCashAmount = 0; if (dtRow.Length == 1) { for (int i = 0; i < tbl.Rows.Count; i++) { if (tbl.Rows[i]["Mcb_IsSpending"].ToString().Trim() == "1") { if (tbl.Rows[i]["Mcb_CashBackAmount"].ToString().Trim() != "") { DecBackCashAmount += Convert.ToDecimal(tbl.Rows[i]["Mcb_CashBackAmount"]); } } } DecBackCashAmount = modelBackCash.Mcbc_PackagesMoney - DecBackCashAmount; } else { DecBackCashAmount = (modelMcBcSet.Mcb_Proportion / 100) * modelBackCash.Mcbc_PackagesMoney; } List mlist = mcvbll.GetModelList("Mvc_Number = '" + this.modelViceCard.Mvc_Number + "' and Mvc_ViceCardType = '返现副卡' and Mvc_CashBackGroup = '" + this.modelViceCard.Mvc_CashBackGroup + "' and Mvc_Status = '1'"); if (mlist.Count == 1) { modelBackCash.Mcbc_PackagesMoney = 0; modelBackCash.Mcbc_CashBackNumber = 0; modelBackCash.Mcbc_CashBackProportion = ""; } modelBackCash.Mcbc_AlreadyCashBack += DecBackCashAmount; modelBackCash.Mcbc_UpdateDateTime = strTime; modelBackCash.Mcbc_UpdateName = strUserID; clist.Add(mcbcbll.GetUpdateCommandInfo(modelBackCash)); modelMcBcSet.Mcb_CashBackAmount = DecBackCashAmount; clist.Add(mcbcsetbll.GetUpdateCommandInfo(modelMcBcSet)); } else { MessageBoxCustom.Show("订单套系不在返现套系范围内!"); return; } } else { if (MessageBoxCustom.Show("此返现副所属的主卡返现次数已经使用完,是否要回收副卡?", "温馨提示!", MessageBoxButtons.YesNo) == DialogResult.No) { return; } } } } else if (modelViceCard.Mvc_ViceCardType == "积分副卡") { modelViceCard.Mvc_Status = "2"; modelViceCard.Mvc_UpdateDateTime = strTime; modelViceCard.Mvc_UpdateName = strUserID; clist.Add(mcvbll.GetUpdateCommandInfo(modelViceCard)); LYFZ.Model.Model_ErpMemberCardOperateLOG modelOPLog = new Model.Model_ErpMemberCardOperateLOG(); modelOPLog.mcol_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelOPLog.mcol_Number = modelViceCard.Mvc_Number; modelOPLog.mcol_Type = "4"; modelOPLog.mcol_Remark = "副卡消费订单" + modelOrder.Ord_Number; modelOPLog.mcol_CreateDatetime = strTime; modelOPLog.mcol_CreateName = strUserID; clist.Add(mcopbll.GetAddCommandInfo(modelOPLog)); } } } #endregion #region 保存订单 if (modelOrder.ID > 0) { clist.Add(orbll.GetUpdateCommandInfo(modelOrder)); } else { isAddOrder = true; clist.Add(orbll.GetAddCommandInfo(modelOrder)); } #endregion #region 写日志 string StrContent = ""; LYFZ.EnumPublic.SystemLogsType SysType; if (modelOrder.ID > 0) { SysType = LYFZ.EnumPublic.SystemLogsType.修改订单; StrContent = "[修改为订单] 订单号为:" + modelOrder.Ord_Number + ";接单人员为:" + this.txtOrderPerson.Text.Trim() + ";订单类别为:" + modelOrder.Ord_OrderClass + ";套系名称为:" + modelOrder.Ord_SeriesName + ";套系价格为:" + modelOrder.Ord_SeriesPrice; } else { SysType = LYFZ.EnumPublic.SystemLogsType.新开订单; StrContent = "[新开订单] 订单号为:" + modelOrder.Ord_Number + ";接单人员为:" + this.txtOrderPerson.Text.Trim() + ";订单类别为:" + modelOrder.Ord_OrderClass + ";套系名称为:" + modelOrder.Ord_SeriesName + ";套系价格为:" + modelOrder.Ord_SeriesPrice; } clist.Add(slogbll.GetAddCommandInfo(LYFZ.BLL.BLL_ErpSystemLogs.GetWriteLogModel(SysType, StrContent, strUserID, StrUserName, LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.User_IP))); #region 系统记录 string StrContentDetails = ""; if (this.OrderSightsEx != null) { StrContentDetails += this.OrderSightsEx.GetOrderSightsContentDetails(); } if (this.OrderStagesEx != null) { StrContentDetails += this.OrderStagesEx.GetOrderStagesContentDetails(); } if (this.OrderProductEx != null) { StrContentDetails = this.OrderProductEx.GetOrderProuctContentDetails(); } if (this.OrderServiceEx != null) { StrContentDetails += this.OrderServiceEx.GetOrderServiceContentDetails(); } //if (this.SightsEx != null) //{ // StrContentDetails += "拍摄景点("; // DataGridViewEc dgvSights = this.SightsEx.GetdgvData; // for (int i = 0; i < dgvSights.Rows.Count; i++) // { StrContentDetails += "名称:" + dgvSights.Rows[i].Cells["S_Sights"].Value.ToString().Trim() + " 套数:" + dgvSights.Rows[i].Cells["S_Quantity"].Value.ToString().Trim() + " ;"; } // StrContentDetails = StrContentDetails.Trim(';') + ")"; //} //if (this.StagesEx != null) //{ // StrContentDetails += " 拍摄阶段("; // DataGridViewEc dgvStages = this.StagesEx.GetdgvData; // for (int i = 0; i < dgvStages.Rows.Count; i++) // { StrContentDetails += "名称:" + dgvStages.Rows[i].Cells["S_Sights"].Value.ToString().Trim() + " 套数:" + dgvStages.Rows[i].Cells["S_Quantity"].Value.ToString().Trim() + " ;"; } // StrContentDetails = StrContentDetails.Trim(';') + ")"; //} //if (this.ProductEx != null) //{ // StrContentDetails += " 订单商品("; // DataGridViewEc dgvProduct = this.ProductEx.GetdgvData; // for (int i = 0; i < dgvProduct.Rows.Count; i++) // { StrContentDetails += "名称:" + dgvProduct.Rows[i].Cells["T_Column2"].Value.ToString().Trim() + " 数量:" + dgvProduct.Rows[i].Cells["T_Column4"].Value.ToString().Trim() + " ;"; } // StrContentDetails = StrContentDetails.Trim(';') + ")"; //} //if (this.ServiceEx != null) //{ // StrContentDetails += " 订单服务("; // DataGridViewEc dgvService = this.ServiceEx.GetdgvData; // for (int i = 0; i < dgvService.Rows.Count; i++) // { StrContentDetails += "名称:" + dgvService.Rows[i].Cells["H_Column2"].Value.ToString().Trim() + " 数量:" + dgvService.Rows[i].Cells["H_Column4"].Value.ToString().Trim() + " ;"; } // StrContentDetails = StrContentDetails.Trim(';') + ")"; //} clist.Add(new BLL.BLL_ErpACVBSYS().GetAddCommandInfo(LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetModelLog(SysType.ToString(), StrContent, StrContentDetails, strTime))); #endregion #endregion #region 办理会员卡 bool IsOpenCardSendSMS = false; //办理自己的 LYFZ.Model.Model_ErpMemberCard modelMc = mcbll.GetModel("Mc_CustomerNumber", modelCilentMain.Cus_CustomerNumber); if (modelMc.ID <= 0) { LYFZ.Model.Model_ErpSystemConfigure sgModel = LYFZ.BLL.OrderPayment_Member.GetNewMenberNumber(); clist.Add(sgbll.GetUpdateCommandInfo(sgModel)); modelMc = new Model.Model_ErpMemberCard(); modelMc.Mc_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelMc.Mc_Number = sgModel.Sconfig_Value; modelMc.Mc_CradNumber = ""; if (this.chkTransactmemberCard.Checked) { modelMc.Mc_CradNumber = modelCilentMain.Cus_Telephone; IsOpenCardSendSMS = true; #region 打开管理界面 LYFZ.Model.Model_ErpMemberCardInterfaceManagement Modelmcim = mcimbll.GetModel("Mcim_Number", modelMc.Mc_Number); if (Modelmcim.ID <= 0) { DataTable newdtb = new DataTable(); newdtb.Columns.Add("Points", typeof(bool)); newdtb.Columns.Add("StoredValue", typeof(bool)); newdtb.Columns.Add("BackCash", typeof(bool)); newdtb.Columns.Add("Service", typeof(bool)); newdtb.Columns.Add("NewTaken", typeof(bool)); DataRow newRow = newdtb.NewRow(); newRow["Points"] = "True"; newRow["StoredValue"] = "True"; newRow["BackCash"] = "False"; newRow["Service"] = "False"; newRow["NewTaken"] = "False"; newdtb.Rows.Add(newRow); Modelmcim = new Model.Model_ErpMemberCardInterfaceManagement(); Modelmcim.Mcim_Number = modelMc.Mc_Number; Modelmcim.Mcim_InterfaceName = new Json.JsontoDataTable().toJson(newdtb); Modelmcim.Mcim_UpdateDatetime = strTime; Modelmcim.Mcim_UpdateName = strUserID; clist.Add(mcimbll.GetAddCommandInfo(Modelmcim)); } #endregion } modelMc.Mc_CustomerNumber = modelCilentMain.Cus_CustomerNumber; modelMc.Mc_CardType = "无"; modelMc.Mc_TotalMoney = 0; modelMc.Mc_Money = 0; modelMc.Mc_TraderPassword = ""; modelMc.Mc_UsedNumber = ""; modelMc.Mc_Status = "1"; modelMc.Mc_Remark = ""; if (modelOrder.ID <= 0) { modelMc.Mc_OpenCardSource = "订单保存," + new System.Diagnostics.StackTrace(new System.Diagnostics.StackFrame(true)).ToString(); } else { modelMc.Mc_OpenCardSource = "订单修改," + new System.Diagnostics.StackTrace(new System.Diagnostics.StackFrame(true)).ToString(); } modelMc.Mc_CreateDatetime = strTime; modelMc.Mc_CreateName = strUserID; modelMc.Mc_TouchAccount = 0; modelMc.Mc_TotalTouchAccount = 0; string StrChlid = ""; if (this.OrdType == EnumPublic.OrderType.儿童订单) { StrChlid = LYFZ.DAL.DAL_ErpCustomer.ClientNumberGetClientAllChildName(modelCilentMain.Cus_CustomerNumber); if (modelChildCilent != null) { if (modelChildCilent.Cus_Name.Trim().Length > 0 && !StrChlid.Contains(modelChildCilent.Cus_Name.Trim())) { if (StrChlid.Trim().Length > 0) { StrChlid += "/"; } StrChlid += modelChildCilent.Cus_Name.Trim(); } } } else if (this.OrdType == EnumPublic.OrderType.婚纱订单) { if (modelCilent != null) { StrChlid = modelCilent.Cus_Name; } } modelMc.Mc_SecondQueryName = StrChlid.TrimEnd('/'); clist.Add(mcbll.GetAddCommandInfo(modelMc)); } else { if (modelMc.Mc_CradNumber == "" && this.chkTransactmemberCard.Checked) { IsOpenCardSendSMS = true; modelMc.Mc_CradNumber = modelCilentMain.Cus_Telephone; modelMc.Mc_UpdateDateTime = strTime; modelMc.Mc_UpdateName = strUserID; clist.Add(mcbll.GetUpdateCommandInfo(modelMc)); } else { string StrChlid = ""; if (this.OrdType == EnumPublic.OrderType.儿童订单) { StrChlid = LYFZ.DAL.DAL_ErpCustomer.ClientNumberGetClientAllChildName(modelCilentMain.Cus_CustomerNumber); if (modelChildCilent != null) { if (modelChildCilent.Cus_Name.Trim().Length > 0 && !StrChlid.Contains(modelChildCilent.Cus_Name.Trim())) { if (StrChlid.Trim().Length > 0) { StrChlid += "/"; } StrChlid += modelChildCilent.Cus_Name.Trim(); } } } else if (this.OrdType == EnumPublic.OrderType.婚纱订单) { if (modelCilent != null) { StrChlid = modelCilent.Cus_Name; } } if (StrChlid.Trim().Length > 0) { modelMc.Mc_SecondQueryName = StrChlid.TrimEnd('/'); clist.Add(mcbll.GetUpdateCommandInfo(modelMc)); } } } LYFZ.Model.Model_ErpMemberCardPoints modelPoints = mcptsbll.GetModel("Mcps_Number", modelMc.Mc_Number); if (modelPoints.ID <= 0) { modelPoints = new Model.Model_ErpMemberCardPoints(); modelPoints.Mcps_Number = modelMc.Mc_Number; modelPoints.Mcps_TotalPoints = 0; modelPoints.Mcps_AvailablePoints = 0; if (modelOrder.ID <= 0) { modelPoints.Mcps_OpenCardSource = "服务保存," + new System.Diagnostics.StackTrace(new System.Diagnostics.StackFrame(true)).ToString(); } else { modelPoints.Mcps_OpenCardSource = "服务修改," + new System.Diagnostics.StackTrace(new System.Diagnostics.StackFrame(true)).ToString(); } modelPoints.Mcps_UpdateDateTime = strTime; modelPoints.Mcps_UpdateName = strUserID; clist.Add(mcptsbll.GetAddCommandInfo(modelPoints)); //积分有效期 clist.AddRange(LYFZ.BLL.OrderPayment_Member.PointsChangeAutoValidity(modelMc.Mc_Number, modelMc.Mc_CradNumber)); } //办理介绍人的 if (modelClientGroup.GP_IntroducerCustomerID != "") { LYFZ.Model.Model_ErpMemberCard modelMc2 = mcbll.GetModel("Mc_CustomerNumber", modelClientGroup.GP_IntroducerCustomerID); if (modelMc2.ID <= 0) { LYFZ.Model.Model_ErpSystemConfigure sgModel = LYFZ.BLL.OrderPayment_Member.GetNewMenberNumber(1); clist.Add(sgbll.GetUpdateCommandInfo(sgModel)); modelMc2 = new Model.Model_ErpMemberCard(); modelMc2.Mc_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelMc2.Mc_Number = sgModel.Sconfig_Value; if (!string.IsNullOrEmpty(this.StrReferralsMemberCardNumber)) { modelMc2.Mc_CradNumber = this.StrReferralsMemberCardNumber; #region 打开管理界面 LYFZ.Model.Model_ErpMemberCardInterfaceManagement Modelmcim = mcimbll.GetModel("Mcim_Number", modelMc2.Mc_Number); if (Modelmcim.ID <= 0) { DataTable newdtb = new DataTable(); newdtb.Columns.Add("Points", typeof(bool)); newdtb.Columns.Add("StoredValue", typeof(bool)); newdtb.Columns.Add("BackCash", typeof(bool)); newdtb.Columns.Add("Service", typeof(bool)); newdtb.Columns.Add("NewTaken", typeof(bool)); DataRow newRow = newdtb.NewRow(); newRow["Points"] = "True"; newRow["StoredValue"] = "True"; newRow["BackCash"] = "False"; newRow["Service"] = "False"; newRow["NewTaken"] = "False"; newdtb.Rows.Add(newRow); Modelmcim = new Model.Model_ErpMemberCardInterfaceManagement(); Modelmcim.Mcim_Number = modelMc2.Mc_Number; Modelmcim.Mcim_InterfaceName = new Json.JsontoDataTable().toJson(newdtb); Modelmcim.Mcim_UpdateDatetime = strTime; Modelmcim.Mcim_UpdateName = strUserID; clist.Add(mcimbll.GetAddCommandInfo(Modelmcim)); } #endregion } else { modelMc2.Mc_CradNumber = ""; } modelMc2.Mc_CustomerNumber = modelClientGroup.GP_IntroducerCustomerID; //modelMc2.Mc_CardType = "积分卡"; modelMc2.Mc_CardType = "无"; modelMc2.Mc_TotalMoney = 0; modelMc2.Mc_Money = 0; modelMc2.Mc_TraderPassword = ""; modelMc2.Mc_UsedNumber = ""; modelMc2.Mc_Status = "1"; modelMc2.Mc_Remark = ""; if (modelOrder.ID <= 0) { modelMc2.Mc_OpenCardSource = "订单介绍保存," + new System.Diagnostics.StackTrace(new System.Diagnostics.StackFrame(true)).ToString(); } else { modelMc2.Mc_OpenCardSource = "订单介绍修改," + new System.Diagnostics.StackTrace(new System.Diagnostics.StackFrame(true)).ToString(); } modelMc2.Mc_CreateDatetime = strTime; modelMc2.Mc_CreateName = strUserID; modelMc2.Mc_TouchAccount = 0; modelMc2.Mc_TotalTouchAccount = 0; modelMc2.Mc_SecondQueryName = LYFZ.DAL.DAL_ErpCustomer.ClientNumberGetClientAllChildName(modelClientGroup.GP_IntroducerCustomerID); clist.Add(mcbll.GetAddCommandInfo(modelMc2)); } else { if (!string.IsNullOrEmpty(this.StrReferralsMemberCardNumber)) { modelMc2.Mc_CradNumber = this.StrReferralsMemberCardNumber; clist.Add(mcbll.GetUpdateCommandInfo(modelMc2)); } } if (!LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.ReferralAmountPaidPoints) { DataTable tblPointLog = orbll.GetView_Custom("tb_ErpMemberCardPointsLOG", StrWhere: "MPlg_Type = '3' and MPlg_OrderNumber = '" + modelOrder.Ord_Number + "'", ShowColumnName: "ID").Tables[0]; if (tblPointLog.Rows.Count <= 0) { LYFZ.Model.Model_ErpMemberCardPointsLOG modelPointsIntrLOG = new Model.Model_ErpMemberCardPointsLOG(); int IntPointsIntr = LYFZ.BLL.BLL_ErpMemberCard.GetPoints_AgoPeriod(LYFZ.EnumPublic.MemberPointsType.txtReferral_RMB, modelOrder.Ord_SeriesPrice, strInfoID, ClientNumber: modelClientGroup.GP_IntroducerCustomerID, IsHaveCardNumber: true); if (IntPointsIntr > 0) { LYFZ.Model.Model_ErpMemberCardPoints modelPoints2 = mcptsbll.GetModel("Mcps_Number", modelMc2.Mc_Number); if (modelPoints2.ID <= 0) { modelPoints2 = new Model.Model_ErpMemberCardPoints(); modelPointsIntrLOG.MPlg_OriginalPoints = 0; modelPoints2.Mcps_Number = modelMc2.Mc_Number; modelPoints2.Mcps_TotalPoints = IntPointsIntr; modelPoints2.Mcps_AvailablePoints = IntPointsIntr; if (modelOrder.ID <= 0) { modelPoints2.Mcps_OpenCardSource = "订单介绍保存," + new System.Diagnostics.StackTrace(new System.Diagnostics.StackFrame(true)).ToString(); } else { modelPoints2.Mcps_OpenCardSource = "订单介绍修改," + new System.Diagnostics.StackTrace(new System.Diagnostics.StackFrame(true)).ToString(); } modelPoints2.Mcps_UpdateDateTime = strTime; modelPoints2.Mcps_UpdateName = strUserID; clist.Add(mcptsbll.GetAddCommandInfo(modelPoints2)); } else { modelPointsIntrLOG.MPlg_OriginalPoints = modelPoints2.Mcps_AvailablePoints; modelPoints2.Mcps_TotalPoints = modelPoints2.Mcps_TotalPoints + IntPointsIntr; modelPoints2.Mcps_AvailablePoints = modelPoints2.Mcps_AvailablePoints + IntPointsIntr; modelPoints2.Mcps_UpdateDateTime = strTime; modelPoints2.Mcps_UpdateName = strUserID; clist.Add(mcptsbll.GetUpdateCommandInfo(modelPoints2)); } modelPointsIntrLOG.MPlg_DividedShop = LYFZ.BLL.OrderPayment_Member.StrInfoID; modelPointsIntrLOG.MPlg_Number = modelPoints2.Mcps_Number; modelPointsIntrLOG.MPlg_Type = "3"; modelPointsIntrLOG.MPlg_ExistingPoints = modelPoints2.Mcps_AvailablePoints; modelPointsIntrLOG.MPlg_UsePoints = IntPointsIntr; modelPointsIntrLOG.MPlg_RedeemArticle = ""; modelPointsIntrLOG.MPlg_RedeemAmount = 0; modelPointsIntrLOG.MPlg_OrderNumber = modelOrder.Ord_SinceOrderNumber.Trim() != "" ? modelOrder.Ord_SinceOrderNumber.Trim() : modelOrder.Ord_Number; modelPointsIntrLOG.MPlg_ViceCardNumber = ""; modelPointsIntrLOG.MPlg_Remark = "你介绍" + modelCilentMain.Cus_Name + "来订单,订单号:" + modelPointsIntrLOG.MPlg_OrderNumber + "付款,获得积分:" + IntPointsIntr; modelPointsIntrLOG.MPlg_CreateDatetime = strTime; modelPointsIntrLOG.MPlg_CreateName = strUserID; clist.Add(mcpslogbll.GetAddCommandInfo(modelPointsIntrLOG)); //积分有效期 clist.AddRange(LYFZ.BLL.OrderPayment_Member.PointsChangeAutoValidity(modelMc2.Mc_Number, modelMc2.Mc_CradNumber)); } } } } #endregion #region 修改介绍的电话号码 if (!string.IsNullOrEmpty(this.StrReferralsClientPhone.Trim())) { clist.Add(ctbll.GetUpdateCommandInfo(this.modelFriends)); } #endregion if (clist.Count > 0) { #region 保存前检测订单号 if (modelOrder.ID <= 0) { DataTable tbl = orbll.GetView_Custom("tb_ErpOrder", StrWhere: "Ord_Number = '" + modelOrder.Ord_Number + "'", ShowColumnName: "Ord_Number").Tables[0]; if (tbl.Rows.Count > 0) { //if (strOrderPrefix != "") //{ tbl = orbll.GetView_Custom("tb_ErpOrder", StrWhere: "Ord_Number like '" + strOrderPrefix + "%'", filedOrder: " Ord_Number DESC", ShowColumnName: "Ord_Number", TopCount: 1).Tables[0]; } //else //{ tbl = orbll.GetView_Custom("tb_ErpOrder", filedOrder: " Ord_Number DESC", ShowColumnName: "Ord_Number", TopCount: 1).Tables[0]; } //if (tbl.Rows.Count > 0) //{ #region 刘工 2017-03-26 修改 LYFZ.BLL.BLL_ErpOrder.UpdateOrderNumberRecord(modelOrder.Ord_Number, strUserID,SDateTime.Now); #endregion /* string strUpdateNumber = modelOrder.Ord_Number; if (tbl.Rows[0]["Ord_Number"].ToString().Trim() == modelOrder.Ord_Number) { strUpdateNumber = tbl.Rows[0]["Ord_Number"].ToString().Trim(); } DataTable tbl2 = ornrbll.GetList("Ornr_OrderDate = '" + Convert.ToDateTime(SDateTime.Now.ToString("yyyy-MM-dd")).ToString("yyyy-MM-dd HH:mm:ss") + "'").Tables[0]; LYFZ.Model.Model_ErpOrderNumberRecord modelrecotd = null; if (tbl2.Rows.Count > 0) { modelrecotd = ornrbll.DataTableToList(tbl2)[0]; modelrecotd.Ornr_OrderCount = modelrecotd.Ornr_OrderCount + 1; modelrecotd.Ornr_LastNumber = strUpdateNumber; modelrecotd.Ornr_UpdateDateTime = strTime; modelrecotd.Ornr_UpdateName = strUserID; ornrbll.Update(modelrecotd); } else { modelrecotd = new Model.Model_ErpOrderNumberRecord(); modelrecotd.Ornr_LastNumber = strUpdateNumber; modelrecotd.Ornr_OrderCount = 1; modelrecotd.Ornr_CreateDateTime = strTime; modelrecotd.Ornr_CreateName = strUserID; ornrbll.Add(modelrecotd); }*/ //MessageBoxCustom.Show("此订单号已被占用,请重新保存!"); return; IsSaveedOK = false; //} //else //{ IsSaveedOK = true; } } else { IsSaveedOK = true; } } else { IsSaveedOK = true; } #endregion if (IsSaveedOK) { #region 修改最后订单号的记录 /* if (modelOrder.ID <= 0) { LYFZ.Model.Model_ErpOrderNumberRecord modelNR = ornrbll.GetModel("Ornr_OrderDate", Convert.ToDateTime(strTime.ToString("yyyy-MM-dd")).ToString("yyyy-MM-dd HH:mm:ss")); if (modelNR.ID <= 0) { modelNR.Ornr_LastNumber = modelOrder.Ord_Number; modelNR.Ornr_OrderCount = 1; modelNR.Ornr_OrderDate = Convert.ToDateTime(strTime.ToString("yyyy-MM-dd")); modelNR.Ornr_CreateDateTime = strTime; modelNR.Ornr_CreateName = strUserID; clist.Add(ornrbll.GetAddCommandInfo(modelNR)); } else { modelNR.Ornr_LastNumber = modelOrder.Ord_Number; modelNR.Ornr_OrderCount = modelNR.Ornr_OrderCount + 1; modelNR.Ornr_UpdateDateTime = strTime; modelNR.Ornr_UpdateName = strUserID; clist.Add(ornrbll.GetUpdateCommandInfo(modelNR)); } }*/ #endregion if (MessageBoxCustom.Show("确定要保存吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No) { return; } //test(clist, StrNewOrderNumber); if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0) { #region 刘工 2017-03-26 修改 if (modelOrder.ID <= 0) { LYFZ.BLL.BLL_ErpOrder.UpdateOrderNumberRecord(modelOrder.Ord_Number, strUserID, SDateTime.Now); } #endregion if (IsOpenCardSendSMS) { LYFZ.BLL.OrderPayment_Member.OpenMemberSendSMS(modelCilentMain.Cus_CustomerNumber, modelMc.Mc_CradNumber, StrStoreNumber: LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID()); } this.StrNumber = modelOrder.Ord_Number; this.IsSaveed = true; switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.儿童订单: case EnumPublic.OrderType.写真订单: case EnumPublic.OrderType.婚庆订单: if (this.OrderEx != null) { this.OrderEx.SetOrderValue(orbll.GetModel(modelOrder.Ord_Number)); } break; case EnumPublic.OrderType.服务订单: if (this.ServiceOrderEx != null) { this.ServiceOrderEx.SetOrderValue(orbll.GetModel(modelOrder.Ord_Number)); } break; } this.IsUpdateOrderLoad = true; //更新客户组成员表 if (string.IsNullOrEmpty(this.OrderGroupNumber)) { LYFZ.DAL.DAL_ErpCustomer.UpdateAggregationCustomer(this.StrNumber); } else { LYFZ.DAL.DAL_ErpCustomer.UpdateAggregationCustomer(this.OrderGroupNumber); } if (modelOrder.Ord_Number.Trim().Length > 0) { LYFZ.BLL.BLL_ErpOrderDigitalStatus.UpdateDigitalStatus(modelOrder.Ord_Number, LYFZ.EnumPublic.OrderDigitalStatusEnum.开单); } #region 收款 并 积分 bool IsPayment = true; if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.OrdersReceivablesCompetence, LYFZ.CustomAttributes.OperatingAuthority.OrdersReceivables)) { if (modelOrder.Ord_SeriesPrice > 0) { if (ptbll.GetRecordCount("Pay_OrdNumber = '" + modelOrder.Ord_Number + "'") <= 0) { LYFZ.Software.MainBusiness.FinancialManagement.OrdersReceivables.FrmPrePayment frm = new FinancialManagement.OrdersReceivables.FrmPrePayment(); //frm.StrOrdType = this.OrdType.ToString(); frm.StrOrdNumber = this.StrNumber; //frm.StrCope = modelOrder.Ord_SeriesPrice; frm.IsShowButtonPayment = true; //frm.StrPaid = 0; //frm.StrArrears = modelOrder.Ord_SeriesPrice; frm.ShowDialog(); IsPayment = false; } } } #endregion this.OpenSingleLoad(); if (IsPayment) { MessageBoxCustom.Show("保存成功!"); } } else { MessageBoxCustom.Show("保存失败!"); } IsSaveedOK = true; } } } if (IsSaveedOK) { #region 流程短信 if (isAddOrder || IsIntentionOrder) { System.Threading.Thread t = new System.Threading.Thread(new System.Threading.ThreadStart(delegate() { Model.SMSParameters sparameters = new Model.SMSParameters(); sparameters.OrderNumber = this.StrNumber; try { smsTemplates.GenerateEventSMS(EnumPublic.SmsSendEvent.客人订单后X分钟, sparameters); } catch { } if (this.modelFriends != null) { if (this.OrderEx != null) { if (!LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.ReferralAmountPaidPoints) { sparameters = new Model.SMSParameters(); sparameters.CurrentSpendingMemberID = StrMainClientNumber; sparameters.Referrals = modelFriends.Cus_CustomerNumber; sparameters.ReferralsBonusPoints = LYFZ.BLL.BLL_ErpMemberCard.GetPoints_AgoPeriod(EnumPublic.MemberPointsType.txtReferral_RMB, OrderEx.TaoXiPrice, strInfoID, ClientNumber: modelFriends.Cus_CustomerNumber); try { smsTemplates.GenerateEventSMS(EnumPublic.SmsSendEvent.转介绍后X分钟发送短信给介绍人, sparameters); } catch { } } } } //客户名称:XXX 订单金额:OrderAmount 订单号:OrderNO 订单号(显示用):ShowOrderNO 订单时间:Time 套系名称:GroupName try { DataTable dtShowNumber = orbll.GetView_Custom("tb_ErpOrder", StrWhere: "Ord_Number = '" + this.StrNumber + "'", ShowColumnName: "CASE Ord_SinceOrderNumber WHEN '' THEN Ord_Number ELSE Ord_SinceOrderNumber END AS 订单号").Tables[0]; dynamic tMParameters = new System.Dynamic.ExpandoObject(); tMParameters.OrderNO = this.StrNumber; tMParameters.ShowOrderNO = dtShowNumber.Rows[0]["订单号"].ToString().Trim(); tMParameters.OrderAmount = this.OrderEx.TaoXiPrice.ToString("n2") + "元"; tMParameters.Time = strTime; tMParameters.GroupName = StrSeriesName; smsTemplates.GenerateEventTemplateMessage(EnumPublic.MicroSendEvent.客人订单后X分钟, tMParameters); } catch { } if (this.modelViceCard != null) { DataTable dt = orbll.GetView_Custom("tb_ErpMemberCard", StrWhere: "Mc_Number = '" + this.modelViceCard.Mvc_Number + "' And Mc_CradNumber != ''", ShowColumnName: "Mc_CustomerNumber,Mc_CradNumber").Tables[0]; if (dt.Rows.Count > 0) { if (this.modelViceCard.Mvc_ViceCardType == "返现副卡") { DataTable dtPackagesMoney = orbll.GetView_Custom("tb_ErpMemberCardBackCash", StrWhere: "Mcbc_Number = '" + this.modelViceCard.Mvc_Number + "'", ShowColumnName: "Mcbc_PackagesMoney").Tables[0]; if (dtPackagesMoney.Rows.Count > 0) { dec_OrderDiscounts = 1; DataTable tbl = orbll.GetView_Custom("tb_ErpSystemConfigure", StrWhere: " Sconfig_Code = 'BackCashCoefficient'", ShowColumnName: "Sconfig_Value").Tables[0]; if (tbl.Rows.Count > 0) { dec_OrderDiscounts = Convert.ToDecimal(tbl.Rows[0]["Sconfig_Value"].ToString().Trim()); } else { LYFZ.Model.Model_ErpSystemConfigure model = new Model.Model_ErpSystemConfigure(); model.Sconfig_Code = "BackCashCoefficient"; model.Sconfig_Name = "返现系数"; model.Sconfig_Value = dec_OrderDiscounts.ToString().Trim(); model.Sconfig_IsEnabled = true; model.Sconfig_Type = ""; model.Sconfig_Remark = "返现系数(实现返现范围)"; model.Sconfig_Order = 0; model.Sconfig_CreateDatetime = SDateTime.Now; model.Sconfig_CreateName = ""; sgbll.Add(model); } decimal decTaoXiPrice = Convert.ToDecimal(dtPackagesMoney.Rows[0]["Mcbc_PackagesMoney"]) * dec_OrderDiscounts; if (decTaoXiPrice <= this.OrderEx.TaoXiPrice) { List mlistBackCashSet = mcbcsetbll.GetModelList("Mcb_Number = '" + modelViceCard.Mvc_Number + "' and (Mcb_ViceNumber = '' or Mcb_ViceNumber is NULL)"); if (mlistBackCashSet.Count > 0) { LYFZ.Model.Model_ErpMemberCardBackCashSet modelCardBack = mlistBackCashSet[0]; DataTable tblBackCash = orbll.GetView_Custom("tb_ErpMemberCardBackCashSet", StrWhere: "Mcb_Number = '" + modelViceCard.Mvc_Number + "' and Mcb_CashBackGroup = '" + modelViceCard.Mvc_CashBackGroup + "'", ShowColumnName: "Mcb_CashBackAmount,Mcb_IsSpending").Tables[0]; DataRow[] dtRow = tblBackCash.Select("Mcb_IsSpending = '0'"); decimal DecBackCashAmount = 0; if (dtRow.Length == 1) { for (int i = 0; i < tbl.Rows.Count; i++) { if (tbl.Rows[i]["Mcb_IsSpending"].ToString().Trim() == "1") { if (tbl.Rows[i]["Mcb_CashBackAmount"].ToString().Trim() != "") { DecBackCashAmount += Convert.ToDecimal(tbl.Rows[i]["Mcb_CashBackAmount"]); } } } DecBackCashAmount = decTaoXiPrice - DecBackCashAmount; } else { DecBackCashAmount = (modelCardBack.Mcb_Proportion / 100) * decTaoXiPrice; } //XXX 为客户姓名;XXN 为会员卡号;TEXT 为获得返现金内容(如:本次某某朋友为您返现金5000元); XXT 为获得返现金时间 sparameters = new Model.SMSParameters(); sparameters.CurrentSpendingMemberID = dt.Rows[0]["Mc_CustomerNumber"].ToString().Trim(); sparameters.CardNumber = dt.Rows[0]["Mc_CradNumber"].ToString().Trim(); sparameters.XXT = strTime; sparameters.TEXT = "您朋友持返现副卡" + this.modelViceCard.Mvc_ViceCardNumber + "来订单,获得返现" + DecBackCashAmount.ToString("0.00") + "元"; sparameters.ReferralsBonusPoints = 0; try { smsTemplates.GenerateEventSMS(EnumPublic.SmsSendEvent.会员返现卡获得返现金后X分钟, sparameters); } catch { } } } } } else if (modelViceCard.Mvc_ViceCardType == "积分副卡") { DataTable dtAvailablePoints = orbll.GetView_Custom("tb_ErpMemberCardPoints", StrWhere: "Mcps_Number = '" + this.modelViceCard.Mvc_Number + "'", ShowColumnName: "Mcps_AvailablePoints").Tables[0];// mcpsbll.GetModel("Mcps_Number", modelMc.Mc_Number); if (dtAvailablePoints.Rows.Count > 0) { //XXX 为客户姓名;XXN 为会员卡号;TEXT 为获得返现金内容(如:本次某某朋友为您返现金5000元); XXT 为获得返现金时间 int IntPointsIntr = LYFZ.BLL.BLL_ErpMemberCard.GetPoints_AgoPeriod(LYFZ.EnumPublic.MemberPointsType.txtReferral_RMB, this.OrderEx.TaoXiPrice, LYFZ.BLL.OrderPayment_Member.StrInfoID, StrMainClientNumber); sparameters = new Model.SMSParameters(); sparameters.CurrentSpendingMemberID = dt.Rows[0]["Mc_CustomerNumber"].ToString().Trim(); sparameters.CardNumber = dt.Rows[0]["Mc_CradNumber"].ToString().Trim(); sparameters.XXT = strTime; sparameters.TEXT = "您朋友持积分副卡" + this.modelViceCard.Mvc_ViceCardNumber + "来订单,获得" + IntPointsIntr + "积分"; sparameters.ReferralsBonusPoints = IntPointsIntr; sparameters.AvailablePoints = Convert.ToInt32(dtAvailablePoints.Rows[0]["Mcps_AvailablePoints"]); try { smsTemplates.GenerateEventSMS(EnumPublic.SmsSendEvent.当积分达到或超过X分时, sparameters); } catch { } try { smsTemplates.GenerateEventSMS(EnumPublic.SmsSendEvent.当积分接近X的百分之80时, sparameters); } catch { } try { if (!string.IsNullOrEmpty(sparameters.TEXT)) { smsTemplates.GenerateEventSMS(EnumPublic.SmsSendEvent.会员积分变动后X分钟, sparameters); } } catch { } } } } } })); t.Start(); } #endregion } } void test(List clist, string newOrderNumber) { foreach (Helper.CommandInfo commd in clist) { foreach (System.Data.SqlClient.SqlParameter Par in commd.Parameters) { if ("orderNuber,eddiid,iiii,dddd".Contains(Par.ParameterName)) { Par.Value = newOrderNumber; } } } } /// /// 获取订单数码表的摄次数种子值 /// /// /// int GetDigitalNumber(List dlist) { int DigitalNumber = 0; if (dlist != null && dlist.Count > 0) { DigitalNumber = Convert.ToInt32(dlist[dlist.Count - 1].Ordv_DigitalNumber); while (ViceNumberEquals(dlist, DigitalNumber)) { DigitalNumber++; } DigitalNumber--; } return DigitalNumber; } /// /// 栓检查DigitalNumber是否存在 /// /// /// /// bool ViceNumberEquals(List dlist, int DigitalNumber) { bool bl = false; if (dlist != null) { int tempMaxNumber = 0; foreach (LYFZ.Model.Model_ErpOrderDigital modelDig in dlist) { string tempViceNumer = modelDig.Ordv_Number + "_" + LYFZ.Command.Command_Validate.GetBeforeAddZero(DigitalNumber, 3); if (modelDig.Ordv_ViceNumber.Equals(tempViceNumer)) { bl = true; break; } else { int tempNu = 0; try { tempNu = Convert.ToInt32(modelDig.Ordv_ViceNumber.Split('_')[1]); } catch { tempNu = dlist.Count + modelDig.Ordv_DigitalNumber; } if (tempNu > tempMaxNumber) { tempMaxNumber = tempNu; } } } if (tempMaxNumber >= DigitalNumber) { bl = true; } } return bl; } /// /// 打印 /// /// /// void btnPrint_Click(object sender, EventArgs e) { if (this.StrNumber.Trim() != "") { Hashtable htData = new Hashtable(); htData["strNumber"] = this.StrNumber.Trim(); htData["strOrdType"] = this.OrdType.ToString().Trim(); LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintFixedFormat(LYFZ.EnumPublic.PrintTypeEnum.订单预约单, htData); } } /// /// 新订单 /// /// /// void btnNewOrder_Click(object sender, EventArgs e) { if (MessageBoxCustom.Show("重置后将清空所有数据,您确定要重置订单吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.Yes) { this.IsGoForm = true; this.EnumLoadFormType = LoadFormType.开单选择; this.Close(); } } /// /// 清空数据重置 /// void ClearDataReset() { this.btnSaveIntent.Visible = true; this.btnSaveIntent.Enabled = true; this.StrNumber = ""; this.txtOrderPerson.Text = ""; this.txtOrderPerson.Tag = null; this.mskMarriage.Text = ""; this.chkMarriage.Checked = false; this.StyleSetAdd(); this.ClearClientSource(); this.mskMarriage.StrValue = ""; this.chkMarriage.Checked = false; this.flowPanel2.Controls.Clear(); this.tabControl.SelectedIndex = 0; this.tabControl.TabPages["tap2"].Tag = null; this.lblYiXiangClient.Enabled = true; this.IsUpdateOrderLoad = false; this.IsSaveedHadAuthorized = false; this.FillClientDataPanelHeight(); this.GetTransactmemberCard(); } /// /// 获取是否自动办理会员卡 /// void GetTransactmemberCard() { this.panelTransactmemberCard.Visible = true; this.chkTransactmemberCard.Checked = LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.OrderAutoOpenMemberCard; } /// /// 关闭 /// /// /// void btnOrderClose_Click(object sender, EventArgs e) { isClose = false; if (!isClose) { if (MessageBoxCustom.Show("你确定要关闭吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No) { return; } } this.Close(); } /// /// 关闭窗体之前发生 /// /// /// void OnSingleFormMain_FormClosing(object sender, FormClosingEventArgs e) { if (!this.IsGoForm) { if (this.isClose) { if (MessageBoxCustom.Show("你确定要关闭吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No) { e.Cancel = true; } } } } bool IsGoForm = false; /// /// 关闭窗体之后发生 /// /// /// void OnSingleFormMain_FormClosed(object sender, FormClosedEventArgs e) { if (this.IsGoForm) { this.Hide(); switch (this.EnumLoadFormType) { case LoadFormType.开单选择: LYFZ.Software.MainBusiness.DoorCityProcess.OnSingleFirstFormMain frm = new OnSingleFirstFormMain(); frm.StartPosition = FormStartPosition.CenterScreen; frm.Show(); break; } } } /// /// 窗体大小 发生变化 /// /// /// void OnSingleFormMain_Resize(object sender, EventArgs e) { this.FillClientDataPanelHeight(); } #endregion #region 第一页 #region 添加成年人客户控件 /// /// 添加客户控件 /// /// /// void pictAddClient_Click(object sender, EventArgs e) { if (this.OrdType == EnumPublic.OrderType.婚纱订单) { if (this.AddClinetCount >= 2) { MessageBoxCustom.Show("婚纱订单,添加客户最多只能" + this.AddClinetCount + "个!"); return; } this.ClientAdultPanelAdd("其他联系人" + this.ClientAdultNameCount, IsPhoneSymbol: false); } else if (this.OrdType == EnumPublic.OrderType.儿童订单) { if (this.AddClinetCount >= 5) { MessageBoxCustom.Show("儿童订单,添加客户最多只能" + this.AddClinetCount + "个!"); return; } this.ClientAdultPanelAdd("其他联系人" + this.ClientAdultNameCount, IsShowRelation: true, lblRelation: "与宝贝关系:", IsPhoneSymbol: false); } else { if (this.AddClinetCount >= 5) { MessageBoxCustom.Show("写真订单,添加客户最多只能" + this.AddClinetCount + "个!"); return; } this.ClientAdultPanelAdd("其他联系人" + this.ClientAdultNameCount, IsPhoneSymbol: false); } this.AddClinetCount++; } /// /// 客户成年人资料 /// /// 层标题名称 /// 层Name /// 是否显示移除按钮 /// 是否显示关系控件 /// 关系控件lable的名称 void ClientAdultPanelAdd(string lblClentName = "", string PanelName = "Adult_", bool IsShowRemove = true, bool IsShowRelation = true, string lblRelation = "与客户关系:", LYFZ.Model.Model_ErpCustomer model = null, string MainClientRelation = "", bool IsPhoneSymbol = true) { LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.OrderClientParentsControlsEx Client = new SetCustomControls.OrderClientParentsControlsEx(); Client.IsUpdateOrderLoad = this.IsUpdateOrderLoad; Client.Name = PanelName + ClientAdultNameCount; Client.StrClientAttribute = PanelName; Client.IsPictDeleteShow = IsShowRemove; if (model != null) { Client.SetClientValue(model, true, MainClientRelation: MainClientRelation); Client.IsPictResetShow = true; Client.IsPictEditShow = true; } else { Client.IsPictEditShow = false; Client.IsPictResetShow = false; } Client.LblClientName = lblClentName; Client.IsShowRelation = IsShowRelation; Client.LblRelationText = lblRelation; Client.Location = new Point(this.panelAddClient.Location.X, this.panelAddClient.Location.Y + this.flowPanel1.Location.Y); Client.IsExistClient += Client_IsExistClient; Client.DeleteClick += Client_DeleteClick; Client.RelationSet += Client_RelationSet; Client.RegionSet += Client_RegionSet; Client.PhoneLeave += Client_PhoneLeave; Client.UpdateOrderGroup += Client_UpdateOrderGroup; Client.isShowPhoneSymbol(IsPhoneSymbol); this.flowPanel1.Controls.Add(Client); this.ClientAdultNameCount++; this.panelAddClient.Location = new Point(this.panelAddClient.Location.X, Client.Location.Y + Client.Height + 6); if (this.flowPanel1.Height < (panelAddClient.Location.Y + panelAddClient.Height + Client.Height)) { this.panelVice1.Height = this.panelVice1.Height + ((panelAddClient.Location.Y + (panelAddClient.Height * 2) + Client.Height) - this.flowPanel1.Height); this.flowPanel1.Height = this.panelVice1.Height - this.flowPanel1.Location.Y; } this.panelAddClient.SendToBack(); this.PanelMain1_Click(this, null); } /// /// 判断当前客户在其他资料是否存在,一个订单不能同时存在两个相同的客户 /// /// /// /// string Client_IsExistClient(string StrControlsName, string StrClientNumber) { foreach (Control control in this.flowPanel1.Controls) { if (control is SetCustomControls.OrderClientParentsControlsEx) { LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.OrderClientParentsControlsEx tmp = (SetCustomControls.OrderClientParentsControlsEx)control; if (tmp.Name.Trim() != StrControlsName.Trim()) { if (tmp.modelCilent != null) { if (tmp.modelCilent.Cus_CustomerNumber.Trim() != "") { if (tmp.modelCilent.Cus_CustomerNumber.Trim() == StrClientNumber.Trim()) { return tmp.LblClientName.Trim(); } } } } } } return ""; } /// /// 移除客户控件 /// void Client_DeleteClick(SetCustomControls.OrderClientParentsControlsEx senderEx) { if (this.modelOldClient != null) { if (senderEx.modelCilent != null) { if (this.modelOldClient.Cus_CustomerNumber == senderEx.modelCilent.Cus_CustomerNumber) { this.modelOldClient = null; } } } if ((this.flowPanel1.Height + this.flowPanel1.Location.Y - this.panelAddClient.Height) >= this.PanelMain1.Height) { this.panelVice1.Height = this.panelVice1.Height - senderEx.Height; if (this.PanelMain1.Height > (this.panelVice1.Height + 6)) { this.panelVice1.Height = this.PanelMain1.Height - 6; } this.flowPanel1.Height = this.panelVice1.Height - this.flowPanel1.Location.Y; } this.AddClinetCount--; } /// /// 客户关系 /// /// void Client_RelationSet(object obj) { foreach (Control control in this.flowPanel1.Controls) { if (control is SetCustomControls.OrderClientParentsControlsEx) { SetCustomControls.OrderClientParentsControlsEx tmp = (SetCustomControls.OrderClientParentsControlsEx)control; LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientRelation("BFABDBAJBJCEBDJCJ", tmp.CmbtreevRelation); } } } /// /// 客户地区设置 /// /// void Client_RegionSet(object obj) { foreach (Control control in this.flowPanel1.Controls) { if (control is SetCustomControls.OrderClientParentsControlsEx) { SetCustomControls.OrderClientParentsControlsEx tmp = (SetCustomControls.OrderClientParentsControlsEx)control; LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientRelation("AAAAAAC", tmp.CmbtreevRegion, true); } } } /// /// 客户电话输入后离开事件,去检测是否有相同电话的 /// /// void Client_PhoneLeave(object objForm) { LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.OrderClientParentsControlsEx ClientEx = (SetCustomControls.OrderClientParentsControlsEx)objForm; foreach (Control control in this.flowPanel1.Controls) { if (control is SetCustomControls.OrderClientParentsControlsEx) { LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.OrderClientParentsControlsEx tmp = (SetCustomControls.OrderClientParentsControlsEx)control; if (!ClientEx.Equals(tmp)) { if (ClientEx.StrClientPhone.Trim() != "" && tmp.StrClientPhone.Trim() != "") { if (ClientEx.StrClientPhone.Trim() == tmp.StrClientPhone.Trim()) { MessageBoxCustom.Show("'" + ClientEx.LblClientName.Trim() + "' 与 '" + tmp.LblClientName.Trim() + "' 的手机号码不能一样!"); ClientEx.StrClientPhone = ""; } } } } } } /// /// 电话输入事件——模糊查询 /// /// /// void Client_UpdateOrderGroup(object obj) { if (obj != null && obj.ToString().Trim().Length > 0) { string[] StrArray = obj.ToString().Trim().Split('|'); switch (StrArray[0].Trim()) { case "ClientGroup": this.OrderGroupNumber = StrArray[1].Trim(); break; case "OrderNumber": this.UpdateOrderIsUpdateClientData = true; this.StrNumber = StrArray[1].Trim(); this.OpenSingleLoad(); this.UpdateOrderIsUpdateClientData = true; break; case "IntentClient": string[] StrList = StrArray[1].Trim().Split(','); this.UpdateOrderIsUpdateClientData = false; this.SelectIntentClient(StrList[0].Trim(), StrList[1].Trim()); this.UpdateOrderIsUpdateClientData = true; break; } } } #endregion #region 添加儿童客户资料 /// /// 添加儿童客户资料 /// /// /// /// void ClientChildPanelAdd(string lbClentName = "宝贝资料", string PanelName = "Child_", bool IsShowRemove = true) { LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.OrderClientChildrenControlsEx Children = new SetCustomControls.OrderClientChildrenControlsEx(); Children.IsUpdateOrderLoad = this.IsUpdateOrderLoad; Children.Name = PanelName + ClientAdultNameCount; Children.StrClientAttribute = PanelName; Children.IsPictDeleteShow = IsShowRemove; Children.LblClientName = lbClentName; Children.Location = new Point(this.panelAddClient.Location.X, this.panelAddClient.Location.Y + this.flowPanel1.Location.Y); Children.DeleteClick += Children_DeleteClick; this.flowPanel1.Controls.Add(Children); this.ClientChildNameCount++; this.panelAddClient.Location = new Point(this.panelAddClient.Location.X, Children.Location.Y + Children.Height + 6); if (this.flowPanel1.Height < (panelAddClient.Location.Y + panelAddClient.Height + Children.Height)) { this.panelVice1.Height += Children.Height; } this.panelAddClient.SendToBack(); } /// /// 移除客户控件 /// /// /// void Children_DeleteClick(SetCustomControls.OrderClientChildrenControlsEx senderEx) { if (this.panelVice1.Height >= this.PanelMain1.Height) { this.panelVice1.Height = this.panelVice1.Height - senderEx.Height; } this.AddClinetCount--; } #endregion #region 开单类型 /// /// 开单类型选择 /// /// /// void chBox_Click() { List ClistA = new List(); List ClistB = new List(); foreach (Control control in this.flowPanel1.Controls) { if (control is SetCustomControls.OrderClientParentsControlsEx) { SetCustomControls.OrderClientParentsControlsEx tmp = (SetCustomControls.OrderClientParentsControlsEx)control; ClistA.Add(tmp); } if (control is SetCustomControls.OrderClientChildrenControlsEx) { SetCustomControls.OrderClientChildrenControlsEx tmp = (SetCustomControls.OrderClientChildrenControlsEx)control; ClistB.Add(tmp); } } for (int i = 0; i < ClistA.Count; i++) { this.flowPanel1.Controls.Remove(ClistA[i]); } for (int i = 0; i < ClistB.Count; i++) { this.flowPanel1.Controls.Remove(ClistB[i]); } this.ClientAdultNameCount = 1; this.ClientChildNameCount = 1; this.AddClinetCount = 0; this.AddClinetCount++; this.panelMarriage.Visible = false; switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: this.panelHospitalClient.Visible = false; this.panelMarriage.Visible = true; this.ClientAdultPanelAdd("客户资料", PanelName: "Man_", IsShowRemove: false, IsShowRelation: false); break; case EnumPublic.OrderType.儿童订单: this.AddClinetCount++; this.panelHospitalClient.Visible = true; this.ClientChildPanelAdd(IsShowRemove: false); this.ClientAdultPanelAdd("家长资料", PanelName: "Man_", IsShowRemove: false, IsShowRelation: true, lblRelation: "与宝贝关系:"); break; case EnumPublic.OrderType.写真订单: this.panelHospitalClient.Visible = true; this.ClientAdultPanelAdd("客户资料", PanelName: "Man_", IsShowRemove: false, IsShowRelation: false); break; case EnumPublic.OrderType.婚庆订单: this.panelHospitalClient.Visible = false; this.panelMarriage.Visible = true; this.panelEx3.Visible = false; this.ClientAdultPanelAdd("客户资料", PanelName: "Man_", IsShowRemove: false, IsShowRelation: false); break; case EnumPublic.OrderType.服务订单: this.panelHospitalClient.Visible = true; this.panelMarriage.Visible = true; this.panelEx3.Visible = false; this.ClientAdultPanelAdd("客户资料", PanelName: "Man_", IsShowRemove: false, IsShowRelation: false); break; } if (LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetBusinessType() == LYFZ.Software.MainBusiness.EnumPermissions.BusinessType.儿童版 || LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetBusinessType() == LYFZ.Software.MainBusiness.EnumPermissions.BusinessType.旗舰版) { this.pictAddClient.Visible = true; } else { this.panelHospitalClient.Visible = false; } SetCustomControls.OrderClientParentsControlsEx frmClient = (SetCustomControls.OrderClientParentsControlsEx)flowPanel1.Controls["Man_1"]; if (this.modelOldClient != null) { frmClient.SetClientValue(this.modelOldClient, true); frmClient.IsPictEditShow = true; frmClient.IsPictResetShow = true; } else { frmClient.SetClientValue(null); frmClient.IsPictEditShow = false; frmClient.IsPictResetShow = false; } //this.CurrentClickCount = Convert.ToInt32(chk.Tag); } #endregion #region 客户来源 /// /// 客户来源设置 /// /// /// void btnSourceSet_Click(object sender, EventArgs e) { LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet(); frm.TypeName = "AAAAAAF"; frm.Version = "Version"; if (frm.ShowDialog() == DialogResult.OK) { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientSourec("AAAAAAF", this.cmbtreevClientSource, strHideFiled: "BFACBABGBGBJGDHIE,BFAFBCBADBDCABFDD,AAAAABT"); } } /// /// 老客户 /// /// /// void chkOldClient_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(this.StrNumber)) { if (!this.chkOldClient.Checked) { return; } LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.ClientGroupSelectSuperSmallForm frm = new SuperSmallForm.ClientGroupSelectSuperSmallForm(); frm.ShowDialog(); if (frm.IsSaveed) { #region this.chBox_Click(); if (frm.mlist.Count > 0) { if (frm.mlist.Count == 1) { foreach (Control control in this.flowPanel1.Controls) { if (control is SetCustomControls.OrderClientParentsControlsEx) { SetCustomControls.OrderClientParentsControlsEx tmp = (SetCustomControls.OrderClientParentsControlsEx)control; if (tmp.StrClientAttribute == "Man_") { tmp.SetClientValue(frm.mlist[0], true); tmp.IsPictResetShow = true; tmp.IsPictEditShow = true; break; } } else if (control is SetCustomControls.OrderClientChildrenControlsEx) { SetCustomControls.OrderClientChildrenControlsEx tmp = (SetCustomControls.OrderClientChildrenControlsEx)control; if (frm.mlist[0].Cus_Telephone == "") { tmp.SetClientValue(frm.mlist[0], true); tmp.IsPictResetShow = true; tmp.IsPictEditShow = true; break; } } } } else { foreach (Control control in this.flowPanel1.Controls) { if (control is SetCustomControls.OrderClientParentsControlsEx) { SetCustomControls.OrderClientParentsControlsEx tmp = (SetCustomControls.OrderClientParentsControlsEx)control; if (tmp.StrClientAttribute == "Man_") { for (int i = 0; i < frm.mlist.Count; i++) { if (frm.mlist[i].Cus_CustomerNumber == frm.htData["MainClientNumber"].ToString().Trim()) { tmp.SetClientValue(frm.mlist[i], true); tmp.IsPictResetShow = true; tmp.IsPictEditShow = true; frm.mlist.RemoveAt(i); break; } } } else { for (int i = 0; i < frm.mlist.Count; i++) { if (frm.mlist[i].Cus_CustomerNumber != frm.htData["MainClientNumber"].ToString().Trim() && frm.mlist[i].Cus_Telephone.Trim() != "") { tmp.SetClientValue(frm.mlist[i], true); tmp.IsPictResetShow = true; tmp.IsPictEditShow = true; frm.mlist.RemoveAt(i); break; } } } } else if (control is SetCustomControls.OrderClientChildrenControlsEx) { SetCustomControls.OrderClientChildrenControlsEx tmp = (SetCustomControls.OrderClientChildrenControlsEx)control; for (int i = 0; i < frm.mlist.Count; i++) { if (frm.mlist[i].Cus_Telephone == "") { tmp.SetClientValue(frm.mlist[i], true); tmp.IsPictResetShow = true; tmp.IsPictEditShow = true; frm.mlist.RemoveAt(i); break; } } } } if (frm.mlist.Count > 0) { for (int i = 0; i < frm.mlist.Count; i++) { ClientAdultPanelAdd("其他联系人" + ClientAdultNameCount, model: frm.mlist[i]); this.AddClinetCount++; } } } if (frm.htData["Ord_Number"].ToString().Trim() == "") { this.OrderGroupNumber = frm.htData["GP_CustomerGroupID"].ToString().Trim(); } } #endregion } this.chkFriends.Enabled = true; } this.chkOldClient.Checked = true; this.chkOther.Checked = false; this.chkFriends.Checked = false; this.modelViceCard = null; this.toolTip1.SetToolTip(this.chkFriends, ""); this.chkFriends.Text = this.chkFriends.Tag.ToString(); this.cmbtreevClientSource.Text = ""; this.cmbtreevClientSource.Tag = ""; this.cmbtreevClientSource.StrGetName = ""; this.cmbtreevClientSource.Enabled = false; this.chkHospitalClient.Checked = false; this.modelFriends = null; this.ComeSingleLotNumber = ""; } /// /// 朋友介绍 /// /// /// void chkFriends_Click(object sender, EventArgs e) { if (!this.chkFriends.Checked) { this.chkFriends.Text = this.chkFriends.Tag.ToString(); return; } LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.FriendIntroducedSuperSmallForm frm = new SuperSmallForm.FriendIntroducedSuperSmallForm(); frm.ShowDialog(); this.toolTip1.SetToolTip(this.chkFriends, ""); this.modelViceCard = null; if (frm.IsSaveed) { this.StrReferralsClientPhone = frm.StrReferralsClientPhone; this.StrReferralsMemberCardNumber = frm.StrReferralsMemberCardNumber; string StrCardType = ""; string StrCardTypeShow = ""; DataTable dt = orbll.GetView_Custom("tb_ErpMemberCard", StrWhere: "Mc_CustomerNumber = '" + frm.model.Cus_CustomerNumber + "' And Mc_CradNumber != ''", ShowColumnName: "Mc_CardType").Tables[0]; if (dt.Rows.Count > 0) { StrCardType = ";主卡等级:" + dt.Rows[0]["Mc_CardType"].ToString().Trim(); if (dt.Rows[0]["Mc_CardType"].ToString().Trim() != "无") { StrCardTypeShow = " - " + dt.Rows[0]["Mc_CardType"].ToString().Trim(); } } this.modelFriends = frm.model; if (frm.modelVice != null) { this.chkFriends.Text = "朋友介绍(" + frm.model.Cus_Name + StrCardTypeShow + " - 副卡)"; this.modelViceCard = frm.modelVice; this.toolTip1.SetToolTip(this.chkFriends, "朋友介绍(介绍人:" + frm.model.Cus_Name + StrCardType + ";副卡卡号:" + frm.modelVice.Mvc_ViceCardNumber + ")"); } else { this.chkFriends.Text = "朋友介绍(" + frm.model.Cus_Name + StrCardTypeShow + ")"; this.toolTip1.SetToolTip(this.chkFriends, "朋友介绍(介绍人:" + frm.model.Cus_Name + StrCardType + ")"); } } else { this.chkFriends.Text = this.chkFriends.Tag.ToString(); this.modelFriends = null; } this.chkFriends.Checked = true; this.chkOldClient.Checked = false; this.chkOldClient.Enabled = true; this.cmbtreevClientSource.Text = ""; this.cmbtreevClientSource.Tag = ""; this.cmbtreevClientSource.StrGetName = ""; this.ComeSingleLotNumber = ""; this.chkOther.Checked = false; this.chkHospitalClient.Checked = false; this.cmbtreevClientSource.Enabled = false; } /// /// 医院跟踪客户 /// /// /// void chkHospitalClient_Click(object sender, EventArgs e) { if (!this.chkHospitalClient.Checked) { return; } LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.SelectHospitalClientSuperSmallForm frm = new SuperSmallForm.SelectHospitalClientSuperSmallForm(); frm.ShowDialog(); if (frm.IsSaveed) { this.chBox_Click(); LYFZ.Model.Model_ErpHospitalClient model = frm.model; this.ComeSingleLotNumber = model.Hct_Oddnumber; foreach (Control control in this.flowPanel1.Controls) { if (control is SetCustomControls.OrderClientParentsControlsEx) { SetCustomControls.OrderClientParentsControlsEx tmp = (SetCustomControls.OrderClientParentsControlsEx)control; if (tmp.StrClientAttribute == "Man_") { tmp.setHospitalClientValue(model); tmp.IsPictResetShow = true; tmp.IsPictEditShow = true; } } else if (control is SetCustomControls.OrderClientChildrenControlsEx) { if (this.OrdType == EnumPublic.OrderType.儿童订单) { SetCustomControls.OrderClientChildrenControlsEx tmp = (SetCustomControls.OrderClientChildrenControlsEx)control; tmp.setHospitalClientValue(model); tmp.IsPictResetShow = true; tmp.IsPictEditShow = true; } } } } this.chkOldClient.Checked = false; this.chkOldClient.Enabled = true; this.cmbtreevClientSource.Text = ""; this.cmbtreevClientSource.Tag = ""; this.cmbtreevClientSource.StrGetName = ""; this.cmbtreevClientSource.Enabled = false; this.chkOther.Checked = false; this.chkFriends.Checked = false; this.modelViceCard = null; this.toolTip1.SetToolTip(this.chkFriends, ""); this.modelFriends = null; this.chkFriends.Text = this.chkFriends.Tag.ToString(); } /// /// 其他 /// /// /// void chkOther_Click(object sender, EventArgs e) { if (this.chkOther.Checked) { this.chkOther.Checked = true; this.cmbtreevClientSource.Enabled = true; } else { this.chkOther.Checked = false; this.cmbtreevClientSource.Text = ""; this.cmbtreevClientSource.Tag = ""; this.cmbtreevClientSource.StrGetName = ""; this.cmbtreevClientSource.Enabled = false; } this.modelFriends = null; this.chkFriends.Checked = false; this.modelViceCard = null; this.toolTip1.SetToolTip(this.chkFriends, ""); this.chkOldClient.Checked = false; this.chkHospitalClient.Checked = false; this.chkFriends.Enabled = true; this.chkOldClient.Enabled = true; this.chkFriends.Text = this.chkFriends.Tag.ToString(); this.ComeSingleLotNumber = ""; } /// /// 意向客户点击选择 /// /// /// void lblYiXiangClient_Click(object sender, EventArgs e) { LYFZ.Software.MainBusiness.DoorCityProcess.SuperSmallForm.OrderSelectSuperSmallForm frm = new SuperSmallForm.OrderSelectSuperSmallForm(); frm.Text = "选择订单(双击选择)"; frm.ShowDialog(); if (frm.IsSaveed) { this.chkFriends.Checked = false; this.chkOldClient.Checked = false; this.chkFriends.Enabled = true; this.chkOldClient.Enabled = true; this.chkFriends.Text = this.chkFriends.Tag.ToString(); this.ComeSingleLotNumber = ""; this.modelOldClient = null; this.SelectIntentClient(frm.SelectOrderNumber, frm.SelectClientGroupNumber); } } /// /// 选择意向订单或意向客户组 /// /// /// void SelectIntentClient(string SelectOrderNumber, string SelectClientGroupNumber) { if (this.IsUpdateOrderLoad) { return; } if (!string.IsNullOrEmpty(SelectOrderNumber)) { this.StrNumber = SelectOrderNumber; this.OrderGroupNumber = SelectClientGroupNumber; this.OpenSingleLoad(); } else { DataTable tblGroup = orbll.GetView_Custom("tb_ErpCustomerGroup", StrWhere: "GP_CustomerGroupID = '" + SelectClientGroupNumber + "'", ShowColumnName: "GP_CustomerType").Tables[0]; this.OrdType = (LYFZ.EnumPublic.OrderType)Convert.ToInt32(tblGroup.Rows[0]["GP_CustomerType"]); this.ClearDataReset(); this.OrderGroupNumber = SelectClientGroupNumber; DataTable tbl = orbll.GetView_Custom("tb_ErpCustomerGroupMembers", StrWhere: "GM_CustomerGroupID = '" + this.OrderGroupNumber + "'", ShowColumnName: "GM_CustomerID,GM_Master,GM_ProtagonistCustomer,GM_RelatedPersonID").Tables[0]; if (tbl.Rows.Count > 0) { List AdultList = new List(); List ChildList = new List(); foreach (Control control in this.flowPanel1.Controls) { if (control is SetCustomControls.OrderClientParentsControlsEx) { SetCustomControls.OrderClientParentsControlsEx tmp = (SetCustomControls.OrderClientParentsControlsEx)control; bool Isbl = true; if (tbl.Rows.Count > 0) { if (tmp.StrClientAttribute == "Man_") { for (int i = 0; i < tbl.Rows.Count; i++) { if (tbl.Rows[i]["GM_Master"].ToString().Trim() == "1") { tmp.SetClientValue(ctbll.GetModel("Cus_CustomerNumber", tbl.Rows[i]["GM_CustomerID"].ToString().Trim()), true); tmp.IsPictResetShow = true; tmp.IsPictEditShow = true; Isbl = false; tbl.Rows.RemoveAt(i); break; } } } else { for (int i = 0; i < tbl.Rows.Count; i++) { if (tbl.Rows[i]["GM_Master"].ToString().Trim() == "0" && tbl.Rows[i]["GM_ProtagonistCustomer"].ToString().Trim() == "1" && !tbl.Rows[i]["GM_CustomerID"].Equals(tbl.Rows[i]["GM_RelatedPersonID"])) { tmp.SetClientValue(ctbll.GetModel("Cus_CustomerNumber", tbl.Rows[i]["GM_CustomerID"].ToString().Trim()), true); tmp.IsPictResetShow = true; tmp.IsPictEditShow = true; Isbl = false; tbl.Rows.RemoveAt(i); break; } } } } if (Isbl) { AdultList.Add(tmp); } } else if (control is SetCustomControls.OrderClientChildrenControlsEx) { SetCustomControls.OrderClientChildrenControlsEx tmp = (SetCustomControls.OrderClientChildrenControlsEx)control; bool Isbl = true; if (tbl.Rows.Count > 0) { for (int i = 0; i < tbl.Rows.Count; i++) { if (tbl.Rows[i]["GM_Master"].ToString().Trim() == "0" && tbl.Rows[i]["GM_ProtagonistCustomer"].ToString().Trim() == "1" && tbl.Rows[i]["GM_CustomerID"].Equals(tbl.Rows[i]["GM_RelatedPersonID"])) { tmp.SetClientValue(ctbll.GetModel("Cus_CustomerNumber", tbl.Rows[i]["GM_CustomerID"].ToString().Trim()), true); tmp.IsPictResetShow = true; tmp.IsPictEditShow = true; Isbl = false; tbl.Rows.RemoveAt(i); break; } } } if (Isbl) { ChildList.Add(tmp); } } } //移除多余的客户组件 for (int i = 0; i < AdultList.Count; i++) { this.flowPanel1.Controls.Remove(AdultList[i]); } for (int i = 0; i < ChildList.Count; i++) { this.flowPanel1.Controls.Remove(ChildList[i]); } } } } /// /// 清空客户来源 /// void ClearClientSource() { this.chkOldClient.Checked = false; this.chkFriends.Checked = false; this.chkFriends.Text = this.chkFriends.Tag.ToString(); this.chkOther.Checked = false; this.cmbtreevClientSource.SetTextAndTag_ValueNull(); this.modelOldClient = null; this.modelFriends = null; this.OrderGroupNumber = ""; this.ComeSingleLotNumber = ""; } /// /// 获取客户来源 /// /// private string GetClientSource() { string StrClientSource = ""; foreach (Control control in this.flowPanelClientSource.Controls) { foreach (Control control2 in control.Controls) { if (control2 is CheckBoxEx) { CheckBoxEx tmp = (CheckBoxEx)control2; if (tmp.Checked) { if (tmp.Tag.ToString().Trim() == "其他") { StrClientSource = this.cmbtreevClientSource.Text.Trim(); } else { StrClientSource = tmp.Tag.ToString().Trim(); } } } } } return StrClientSource; } #endregion #region 喜爱格调 /// /// 喜爱格调设置 /// /// /// void btnStyleSet_Click(object sender, EventArgs e) { LYFZ.Software.MainBusiness.DoorCityProcess.SetSmallForm.StyleSetSmallForm frm = new SetSmallForm.StyleSetSmallForm(); frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual; frm.Location = new Point(LYFZ.EnumPublic.FormLocation_X, LYFZ.EnumPublic.FormLocation_Y); frm.Size = new Size(LYFZ.EnumPublic.FormSize_Width, LYFZ.EnumPublic.FormSize_Height); frm.ShowDialog(); if (frm.IsSaveed) { this.StyleSetAdd(); } } /// /// 添加Check控件 /// private void StyleSetAdd() { List chklist = new List(); foreach (Control control in this.panelEx3.Controls) { if (control is CheckBoxEx) { CheckBoxEx tmp = (CheckBoxEx)control; chklist.Add(tmp); } } for (int i = 0; i < chklist.Count; i++) { this.panelEx3.Controls.Remove(chklist[i]); } DataTable tbl = stbll.GetAllList(" ID ASC").Tables[0]; if (tbl.Rows.Count > 0) { int StrTablIndex = 11; int LocationY = this.lblStyle.Location.Y + this.lblStyle.Height + 11; CheckBoxEx chBox = null; int[] Str1 = { 0, 5, 10, 15 }; int[] Str2 = { 1, 6, 11, 16 }; int[] Str3 = { 2, 7, 12, 17 }; int[] Str4 = { 3, 8, 13, 18 }; int[] Str5 = { 4, 9, 14, 19 }; for (int i = 0; i < tbl.Rows.Count; i++) { chBox = new CheckBoxEx(); if (Array.IndexOf(Str1, i) != -1) { chBox.Location = new Point(20, LocationY); } else if (Array.IndexOf(Str2, i) != -1) { chBox.Location = new Point(180, LocationY); } else if (Array.IndexOf(Str3, i) != -1) { chBox.Location = new Point(340, LocationY); } else if (Array.IndexOf(Str4, i) != -1) { chBox.Location = new Point(500, LocationY); } else if (Array.IndexOf(Str5, i) != -1) { chBox.Location = new Point(670, LocationY); LocationY += 25; } chBox.Name = "chk_" + tbl.Rows[i]["ID"].ToString(); chBox.Text = tbl.Rows[i]["Style_Name"].ToString(); chBox.TabIndex = StrTablIndex; StrTablIndex++; this.panelEx3.Controls.Add(chBox); } } } /// /// 获取喜爱格调 /// /// private string GetStyle() { String strStyle = ""; foreach (Control control in this.panelEx3.Controls)//订单资料 { if (control is CheckBoxEx) { CheckBoxEx tmp = (CheckBoxEx)control; if (tmp.Checked) { strStyle += tmp.Name.Trim() + "|"; } } } return strStyle.TrimEnd('|'); } /// /// 获取喜爱格调 /// /// private List GetStyleList() { List ListID = new List(); foreach (Control control in this.panelEx3.Controls)//订单资料 { if (control is CheckBoxEx) { CheckBoxEx tmp = (CheckBoxEx)control; if (tmp.Checked) { string[] strArray = tmp.Name.Trim().Split('_'); ListID.Add(strArray[1].Trim()); } } } return ListID; } /// /// 喜爱风格—浏览选择 /// /// /// void lblBrowseSelect_Click(object sender, EventArgs e) { LYFZ.Software.MainBusiness.DoorCityProcess.SetSmallForm.StyleViewSmallForm frm = new SetSmallForm.StyleViewSmallForm(); frm.frmStyleViewVersion = SetSmallForm.StyleViewSmallForm.StyleViewVersion.风格浏览; frm.OldSelectStyleList = GetStyleList(); frm.WindowState = FormWindowState.Maximized; frm.ShowDialog(); if (frm.IsSaveed) { List strList = frm.SelectStyleList; foreach (Control control in this.panelEx3.Controls)//订单资料 { if (control is CheckBoxEx) { CheckBoxEx tmp = (CheckBoxEx)control; bool IsFind = false; for (int i = 0; i < strList.Count; i++) { string[] strArray = tmp.Name.Trim().Split('_'); if (strArray[1].Trim() == strList[i].Trim()) { IsFind = true; tmp.Checked = true; strList.RemoveAt(i); break; } } if (!IsFind) { tmp.Checked = false; } } } } } #endregion #region 选择接单人员 /// /// 选择接单人员 /// /// /// void btnSelectUser_Click(object sender, EventArgs e) { new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses().txtOrdersPerson(this.txtOrderPerson); } #endregion #region 点击让滚动条获取焦点 /// /// 点击让滚动条获取焦点 /// /// /// void panelEx3_Click(object sender, EventArgs e) { this.PanelMain1_Click(this, null); } /// /// 点击让滚动条获取焦点 /// /// /// void panelEx2_Click(object sender, EventArgs e) { this.PanelMain1_Click(this, null); } /// /// 点击让滚动条获取焦点 /// /// /// void panelVice1_Click(object sender, EventArgs e) { this.PanelMain1_Click(this, null); } /// /// 点击让滚动条获取焦点 /// /// /// void PanelMain1_Click(object sender, EventArgs e) { this.PanelMain1.Focus(); } #endregion #endregion #region 第二页 LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.OrderInfoOneControlsEx OrderEx = null; LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.OrderInfoTwoControlsEx ServiceOrderEx = null; LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.OrderProductControlsEx OrderProductEx = null; LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.OrderServiceControlsEx OrderServiceEx = null; LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.OrderStagesControlsEx OrderStagesEx = null; LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.OrderSightsControlsEx OrderSightsEx = null; LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.OrderProcessModule_PaymentDetailsControlsEx OrderProcessesEx = null; /// /// 选项卡选择事件 /// /// /// void tabControl_SelectedIndexChanged(object sender, EventArgs e) { if (this.tabControl.SelectedTab.Name.Trim() == this.tabControl.TabPages["tap2"].Name.Trim()) { if (this.tabControl.TabPages["tap2"].Tag == null) { int PanelVice2Height = 0; Hashtable htData = new Hashtable(); htData["IsShowSinceOrderNumber"] = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.IsCustomOrderNumber(); htData["IsOrderNumber"] = ""; htData["StrPrefix"] = this.GetOrderCustomPrefix(); htData["StrOrderType"] = this.OrdType.ToString().Trim(); switch (this.OrdType) { case EnumPublic.OrderType.服务订单: if (this.ServiceOrderEx == null) { this.ServiceOrderEx = new SetCustomControls.OrderInfoTwoControlsEx(htData); this.flowPanel2.Controls.Add(this.ServiceOrderEx); } PanelVice2Height += this.ServiceOrderEx.Height; break; default: if (this.OrderEx == null) { this.OrderEx = new SetCustomControls.OrderInfoOneControlsEx(htData); switch (this.OrdType) { case EnumPublic.OrderType.婚庆订单: this.OrderEx.IsHotelInfo = true; break; case EnumPublic.OrderType.儿童订单: this.OrderEx.IsShowIntoRegisterAndIntoBottom = false; break; } this.OrderEx.OrderTaoXiNodeMouseClick += OrderEx_OrderTaoXiNodeMouseClick; this.flowPanel2.Controls.Add(this.OrderEx); #region 权限 if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StoresOPenSingle, LYFZ.CustomAttributes.OperatingAuthority.OrderPackagesNameSet)) { this.OrderEx.IsShowTaoXiNameSet = false; } if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StoresOPenSingle, LYFZ.CustomAttributes.OperatingAuthority.OrderClsssSet)) { this.OrderEx.IsOrderClsssSet = false; } #endregion } PanelVice2Height += this.OrderEx.Height; break; } switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.写真订单: if (this.OrderSightsEx == null) { this.OrderSightsEx = new SetCustomControls.OrderSightsControlsEx(); this.flowPanel2.Controls.Add(this.OrderSightsEx); #region 权限 if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StoresOPenSingle, LYFZ.CustomAttributes.OperatingAuthority.OrderSightsOrStageSet)) { this.OrderSightsEx.IsShowSightsSet = false; } #endregion } this.OrderSightsEx.StrOrdNumber = this.StrNumber; PanelVice2Height += this.OrderSightsEx.Height; break; case EnumPublic.OrderType.儿童订单: if (this.OrderStagesEx == null) { this.OrderStagesEx = new SetCustomControls.OrderStagesControlsEx(); this.flowPanel2.Controls.Add(this.OrderStagesEx); #region 权限 if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StoresOPenSingle, LYFZ.CustomAttributes.OperatingAuthority.OrderSightsOrStageSet)) { this.OrderStagesEx.IsShowStagesSet = false; } #endregion } this.OrderStagesEx.StrOrdNumber = this.StrNumber; PanelVice2Height += this.OrderStagesEx.Height; break; } switch (this.OrdType) { case EnumPublic.OrderType.婚纱订单: case EnumPublic.OrderType.儿童订单: case EnumPublic.OrderType.婚庆订单: case EnumPublic.OrderType.写真订单: case EnumPublic.OrderType.服务订单: if (this.OrderProductEx == null) { this.OrderProductEx = new SetCustomControls.OrderProductControlsEx(); this.OrderProductEx.OrdType = this.OrdType; this.flowPanel2.Controls.Add(this.OrderProductEx); if (this.OrderStagesEx != null) { this.OrderStagesEx.OrderProductEx = this.OrderProductEx; } } this.OrderProductEx.StrNumber = this.StrNumber; PanelVice2Height += this.OrderProductEx.Height; break; } if (this.OrderServiceEx == null) { this.OrderServiceEx = new SetCustomControls.OrderServiceControlsEx(); this.OrderServiceEx.OrdType = this.OrdType; this.flowPanel2.Controls.Add(this.OrderServiceEx); if (this.OrderStagesEx != null) { this.OrderStagesEx.OrderServiceEx = this.OrderServiceEx; } } PanelVice2Height += this.OrderServiceEx.Height; this.panelVice2.Height = PanelVice2Height + 40; } this.PanelClick(this.panelVice2, 2); this.PanelMain2_Click(this, null); } else { if (this.tap3.Parent != null) { if (this.tabControl.SelectedTab.Name.Trim() == this.tabControl.TabPages["tap3"].Name.Trim()) { if (this.OrderProcessesEx == null) { LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker) { try { this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate() { this.OrderProcessesEx = new SetCustomControls.OrderProcessModule_PaymentDetailsControlsEx(this.StrNumber, Convert.ToInt32(this.OrdType).ToString()); //this.OrderProcessesEx.Dock = DockStyle.Fill; this.panelVice3.Controls.Add(this.OrderProcessesEx); if (this.panelVice3.Height < this.OrderProcessesEx.Height) { this.panelVice3.Height = this.OrderProcessesEx.Height; } //else //{ this.panelVice3.Height = this.PanelMain3.Height; } this.PanelClick(this.panelVice3, 3); this.PanelMain3_Click(this, null); })); } catch { } }); } } } } } /// /// /// /// void PanelClick(Control Panelcontrol, int LoadType) { if (Panelcontrol.Controls.Count > 0) { foreach (Control control in Panelcontrol.Controls) { if (control is LYFZ.ComponentLibrary.PanelEx || control is UserControl || control is FlowLayoutPanel) { if (LoadType == 2) { control.Click += PanelMain2_Click; } else if (LoadType == 3) { control.Click += PanelMain3_Click; } if (control.Controls.Count > 0) { this.PanelClick(control, LoadType); } } } } } /// /// 点击让滚动条获取焦点 /// /// /// void PanelMain2_Click(object sender, EventArgs e) { this.PanelMain2.Focus(); } /// /// 点击让滚动条获取焦点 /// /// /// void PanelMain3_Click(object sender, EventArgs e) { this.PanelMain3.Focus(); } /// /// 套系选择 /// /// 套系编号 /// 是否可以操作 /// 类型,判断是礼包还是套系 /// 礼包几选几数据 void OrderEx_OrderTaoXiNodeMouseClick(object objTaoXiNameTag, bool IsActivity, LYFZ.EnumPublic.EnumPackagesType PackagesType, Hashtable htData) { if (objTaoXiNameTag != null) { string StrWhere = " And Pgm_PackagesCode = '" + objTaoXiNameTag.ToString().Trim() + "'"; if (htData.ContainsKey("OptionalSeveral") && htData["OptionalSeveral"].ToString().Trim().Length > 0 && Convert.ToInt32(htData["OptionalSeveral"]) >= 0) { LYFZ.Software.MainBusiness.DoorCityProcess.SetSmallForm.ToolboxPackageListViewSamllForm frm = new SetSmallForm.ToolboxPackageListViewSamllForm(); frm.intOptionalSeveral = Convert.ToInt32(htData["OptionalSeveral"]); frm.StrPackageCode = objTaoXiNameTag.ToString().Trim(); frm.StrOrderType = this.OrdType; frm.ShowDialog(); if (frm.IsSaveed) { List listID = frm.listID; string StrIDing = ""; for (int i = 0; i < listID.Count; i++) { StrIDing += listID[i].ToString().Trim() + ","; } if (!string.IsNullOrEmpty(StrIDing)) { StrWhere = " And tb_ErpPackagesGiftMerchandise.ID in (" + StrIDing.TrimEnd(',') + ")"; } } else { OrderEx.RemovePackageItem(); return; } } string strMagess = ""; LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker) { if (!string.IsNullOrEmpty(objTaoXiNameTag.ToString().Trim())) { string StrSource = "'' AS TaoXiNameSource,"; if (PackagesType == EnumPublic.EnumPackagesType.AAAAACA) { StrSource = "'礼包' AS TaoXiNameSource,"; } string ExecuteSql = "select tb_ErpTheScenery.ID," + StrSource + "tb_ErpPackagesGiftMerchandise.ID AS PgmID,Tsc_Rating,Sc_ClassName,Tcs_Category,case when Tcs_Category = 0 then '内景' else '外景' end AS Tcs_CategoryText,Tsc_CostPrice,Tsc_SalesPrice,Tsc_Remark,Pgm_ProductName,Pgm_GiveType," + "Pgm_IntoRegisterQuantity,Pgm_IntoBottomQuantity,Pgm_Quantity from tb_ErpPackagesGiftMerchandise Left Join tb_ErpTheScenery on cast(tb_ErpTheScenery.ID as varchar(20)) = Pgm_ProductNumber " + "Left Join tb_ErpSystemCategory on Tsc_Rating = Sc_ClassCode where Pgm_GiveType in ('2','3') " + StrWhere + ";"; ExecuteSql += "select Prod_Number," + StrSource + "tb_ErpPackagesGiftMerchandise.ID AS PgmID,Pgm_ProductNumber,Prod_Name,Prod_Batch,Prod_CostPrice,Prod_SalesPrice,Prod_Class,Prod_Unit,Prod_Thumbnail,Pgm_ProductNumber,Pgm_ProductName,Pgm_IntoRegisterQuantity,Pgm_IntoBottomQuantity,Pgm_GiveType," + "Pgm_Quantity,Pgm_GiveType,Pgm_ProductGroupName from tb_ErpPackagesGiftMerchandise Left Join tb_ErpProduct on Prod_Number = Pgm_ProductNumber where Pgm_GiveType in ('0','1') " + StrWhere + ";"; DataSet dsData = orbll.GetView_Custom(ExecuteSql); DataTable dtSights = dsData.Tables["ds"]; DataTable dtProduct = dsData.Tables["ds1"]; try { this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate() { if (this.OrderSightsEx != null) { DataRow[] dtRow = dtSights.Select("Pgm_GiveType = '2'"); strMagess += this.OrderSightsEx.SetOrderSightsValue(dtRow, IsActivity, PackagesType); } if (this.OrderStagesEx != null) { DataRow[] dtRow = dtSights.Select("Pgm_GiveType = '3'"); strMagess += this.OrderStagesEx.SetOrderStagesValue(dtRow, IsActivity, PackagesType); } if (this.OrderServiceEx != null) { DataRow[] dtRow = dtProduct.Select("Pgm_GiveType = '1'"); strMagess += this.OrderServiceEx.SetOrderServiceValue(dtRow, IsActivity, PackagesType); } if (this.OrderProductEx != null) { DataRow[] dtRow = dtProduct.Select("Pgm_GiveType = '0'"); strMagess += this.OrderProductEx.SetOrderProductValue(dtRow, IsActivity, PackagesType); } })); } catch { } } else if (PackagesType == EnumPublic.EnumPackagesType.AAAAACA) { this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate() { if (this.OrderSightsEx != null) { try { this.OrderSightsEx.RemovePackageItem(); } catch { } } if (this.OrderStagesEx != null) { try { this.OrderStagesEx.RemovePackageItem(); } catch { } } if (this.OrderServiceEx != null) { try { this.OrderServiceEx.RemovePackageItem(); } catch { } } if (this.OrderProductEx != null) { try { this.OrderProductEx.RemovePackageItem(); } catch { } } })); } }); if (strMagess.Trim() != "") { MessageBoxCustom.Show(strMagess); } } } #endregion } }