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.FinancialManagement.TwoSalesOrder { public partial class FrmTwoSalesOrderEntry : LYFZ.Software.UI.FinancialManagement.TwoSalesOrder.FrmTwoSalesOrderEntry { LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder(); LYFZ.BLL.BLL_ErpProduct ptbll = new BLL.BLL_ErpProduct(); LYFZ.BLL.BLL_ErpCustomer ctbll = new BLL.BLL_ErpCustomer(); LYFZ.BLL.BLL_ErpCustomerGroup ctgbll = new BLL.BLL_ErpCustomerGroup(); LYFZ.BLL.BLL_ErpTwoSalesOrder torbll = new BLL.BLL_ErpTwoSalesOrder(); LYFZ.BLL.BLL_ErpOrderProductList oplbll = new BLL.BLL_ErpOrderProductList(); LYFZ.BLL.BLL_ErpProductIntStorage pisbll = new BLL.BLL_ErpProductIntStorage(); LYFZ.BLL.BLL_ErpProductOutStorage posbll = new BLL.BLL_ErpProductOutStorage(); LYFZ.BLL.BLL_ErpCustomerGroupMembers ctgmbll = new BLL.BLL_ErpCustomerGroupMembers(); public FrmTwoSalesOrderEntry() { this.Load += FrmTwoSalesOrderEntry_Load; this.Shown += FrmTwoSalesOrderEntry_Shown; this.chkClientSexMan.Click += chkClientSexMan_Click; this.chkClientWoman.Click += chkClientWoman_Click; this.txtClientName.KeyDown += txtClientName_KeyDown; this.btnClientSelect.Click += btnClientSelect_Click; this.btnDial.Click += btnDial_Click; this.btnItemNameSet.Click += btnItemNameSet_Click; this.btnItemTypeSet.Click += btnItemTypeSet_Click; this.btnOpenOrderPersonSelect.Click += btnOpenOrderPersonSelect_Click; this.txtItemQuantity.KeyPress += txtItemQuantity_KeyPress; this.txtItemAmount.KeyPress += txtItemAmount_KeyPress; this.btnSaveed.Click += btnSaveed_Click; this.btnCancel.Click += btnCancel_Click; this.btnProductDelete.Click += btnProductDelete_Click; this.btnProductToolbox.Click += btnProductToolbox_Click; this.listViewData.MouseDoubleClick += listViewData_MouseDoubleClick; this.txtOpenOrderRemark.Leave += txtOpenOrderRemark_Leave; this.btnNewOrder.Click += btnNewOrder_Click; } /// /// 是否保存 /// public bool IsSaveed = false; /// /// 订单号 /// public string StrOrderNumber = ""; /// /// 客户编号 /// string StrClientNumber = ""; /// /// 二销类别的获取条件 /// string StrConsumeTypeWhere = ""; /// /// 相片集合 /// ImageList mlistImage = new ImageList(); /// /// 窗体加载事件 /// /// /// void FrmTwoSalesOrderEntry_Load(object sender, EventArgs e) { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.HidePhoneControls(this.txtClientPhone); LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACHBBCDBGJAJDF", this.cmbtreevItemName); if (!LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.OtherConsumerPassportManagement) { StrConsumeTypeWhere = " And Sc_ClassCode != 'AAAAABZ'"; } LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACDAJDFDDEACGJ", this.cmbtreevItemType, StrWhere: " Sc_ClassCode != 'BEBCABBAAHFCJBJGJ' And Sc_ClassCode!='BEBCADBFBCDFBGJHC' and Sc_ClassCode!='BEBCADBFBDDEGGABF' and Sc_ClassCode!='BEBCBFBICGDHCGBEJ'" + StrConsumeTypeWhere); } /// /// 窗体加载事件 /// /// /// void FrmTwoSalesOrderEntry_Shown(object sender, EventArgs e) { this.listViewData.View = View.Details; this.listViewData.GridLines = true; string[] StrColumns = "商品名称,商品价格,商品数量,备注".Split(','); int SurplusCount = 200 + 90 * 2 + 23; for (int i = 0; i < StrColumns.Length; i++) { ColumnHeader ch = new ColumnHeader(); ch.Text = StrColumns[i].Trim(); if (i == 0) { ch.Width = 200; } else if (i == StrColumns.Length - 1) { ch.Width = this.listViewData.Width - SurplusCount; } else { ch.Width = 90; } switch (StrColumns[i].Trim()) { case "商品价格": ch.TextAlign = HorizontalAlignment.Right; break; case "商品数量": ch.TextAlign = HorizontalAlignment.Center; break; default: ch.TextAlign = HorizontalAlignment.Left; break; } this.listViewData.Columns.Add(ch); } this.mlistImage.ImageSize = new Size(30, 30); this.mlistImage.ColorDepth = ColorDepth.Depth32Bit; this.listViewData.SmallImageList = mlistImage; if (!string.IsNullOrEmpty(this.StrOrderNumber)) { this.Text = "散客消费修改"; DataTable dt = orbll.GetView_Custom("tb_ErpTwoSalesOrder", StrWhere: "Tsorder_Number = '" + this.StrOrderNumber + "'", ShowColumnName: "Tsorder_CustomerNumber,dbo.fn_CheckUserIDGetUserName(Tsorder_CreateName) AS Tsorder_CreateName,dbo.fn_CheckDateTimeReturn_Date(dbo.fn_CheckDateTime(Tsorder_CreateDatetime)) AS Tsorder_CreateDatetime,Tsorder_Name,Tsorder_Category,Tsorder_Money,Tsorder_Quantity,Tsorder_Remark,Tsorder_OpenSingle,dbo.fn_CheckUserIDGetUserName(Tsorder_OpenSingle) AS Tsorder_OpenSingleText").Tables[0]; if (dt.Rows.Count > 0) { this.txtCreateName.Text = dt.Rows[0]["Tsorder_CreateName"].ToString().Trim(); this.txtCreateDatetime.Text = dt.Rows[0]["Tsorder_CreateDatetime"].ToString().Trim(); this.cmbtreevItemName.TextFindTag(dt.Rows[0]["Tsorder_Name"].ToString().Trim()); this.cmbtreevItemType.TagFindText(dt.Rows[0]["Tsorder_Category"].ToString().Trim()); this.txtItemAmount.Text = dt.Rows[0]["Tsorder_Money"].ToString().Trim(); this.txtItemQuantity.Text = dt.Rows[0]["Tsorder_Quantity"].ToString().Trim(); this.txtOpenOrderPersonSelect.Tag = dt.Rows[0]["Tsorder_OpenSingle"].ToString().Trim(); this.txtOpenOrderPersonSelect.Text = dt.Rows[0]["Tsorder_OpenSingleText"].ToString().Trim(); this.txtItemRemark.Text = dt.Rows[0]["Tsorder_Remark"].ToString().Trim(); if (!string.IsNullOrEmpty(dt.Rows[0]["Tsorder_CustomerNumber"].ToString().Trim())) { DataTable dtClient = orbll.GetView_Custom("tb_ErpCustomer", StrWhere: "Cus_CustomerNumber = '" + dt.Rows[0]["Tsorder_CustomerNumber"].ToString().Trim() + "'", ShowColumnName: "Cus_Name,Cus_Sex,Cus_Telephone").Tables[0]; if (dtClient.Rows.Count > 0) { this.txtClientName.Text = dtClient.Rows[0]["Cus_Name"].ToString().Trim(); this.txtClientPhone.Text = dtClient.Rows[0]["Cus_Telephone"].ToString().Trim(); if (Convert.ToBoolean(dtClient.Rows[0]["Cus_Sex"])) { this.chkClientSexMan.Checked = false; this.chkClientWoman.Checked = true; } else { this.chkClientSexMan.Checked = true; this.chkClientWoman.Checked = false; } this.txtClientName.ReadOnly = true; this.txtClientPhone.ReadOnly = true; this.chkClientWoman.Enabled = false; this.chkClientSexMan.Enabled = false; } } DataTable dtProduct = orbll.GetView_Custom("tb_ErpOrderProductList", StrWhere: "OPlist_OrderNumber = '" + this.StrOrderNumber + "' And OPlist_ViceNumber = '" + this.StrOrderNumber + "'", ShowColumnName: "OPlist_ProdNumber,OPlist_CostPrice,OPlist_Class,OPlist_Unit,ID,OPlist_UniquelyIdentity,OPlist_ProdName,OPlist_ProdSoldPrice,OPlist_ProdQuantity,OPlist_OpenOrderRemark").Tables[0]; LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel ColumnModel = null; for (int i = 0; i < dtProduct.Rows.Count; i++) { DataTable dtPhoto = orbll.GetView_Custom("tb_ErpProduct", StrWhere: "Prod_Number = '" + dtProduct.Rows[i]["OPlist_ProdNumber"].ToString().Trim() + "'", ShowColumnName: "Prod_Thumbnail").Tables[0]; if (dtPhoto.Rows.Count > 0) { if (!this.mlistImage.Images.Keys.Contains(dtProduct.Rows[i]["OPlist_ProdNumber"].ToString().Trim())) { Image img = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetProductImage(dtPhoto.Rows[0]["Prod_Thumbnail"].ToString().Trim()); this.mlistImage.Images.Add(dtProduct.Rows[i]["OPlist_ProdNumber"].ToString().Trim(), img); } } ListViewItem lvItem = new ListViewItem(); ColumnModel = new DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel(); ColumnModel.ProductNumber = dtProduct.Rows[i]["OPlist_ProdNumber"].ToString().Trim(); ColumnModel.ProductCostPrice = dtProduct.Rows[i]["OPlist_CostPrice"].ToString().Trim(); ColumnModel.ProductCategory = dtProduct.Rows[i]["OPlist_Class"].ToString().Trim(); ColumnModel.ProductUnit = dtProduct.Rows[i]["OPlist_Unit"].ToString().Trim(); ColumnModel.ProductOrderID = dtProduct.Rows[i]["ID"].ToString().Trim(); ColumnModel.ProductUniquelyIdentity = dtProduct.Rows[i]["OPlist_UniquelyIdentity"].ToString().Trim(); lvItem.Tag = ColumnModel; lvItem.ImageKey = dtProduct.Rows[i]["OPlist_ProdNumber"].ToString().Trim(); lvItem.Text = dtProduct.Rows[i]["OPlist_ProdName"].ToString().Trim(); ListViewItem.ListViewSubItem ListSubItem = new ListViewItem.ListViewSubItem(); ListSubItem.Name = "商品价格"; ListSubItem.Text = dtProduct.Rows[i]["OPlist_ProdSoldPrice"].ToString().Trim(); lvItem.SubItems.Add(ListSubItem); ListSubItem = new ListViewItem.ListViewSubItem(); ListSubItem.Name = "商品数量"; ListSubItem.Text = dtProduct.Rows[i]["OPlist_ProdQuantity"].ToString().Trim(); lvItem.SubItems.Add(ListSubItem); ListSubItem = new ListViewItem.ListViewSubItem(); ListSubItem.Name = "备注"; ListSubItem.Text = dtProduct.Rows[i]["OPlist_OpenOrderRemark"].ToString().Trim(); lvItem.SubItems.Add(ListSubItem); if ((this.listViewData.Items.Count % 2) > 0) { lvItem.BackColor = System.Drawing.Color.PapayaWhip; } else { lvItem.BackColor = System.Drawing.Color.PowderBlue; } this.listViewData.Items.Add(lvItem); } } } else { this.chkClientSexMan.Checked = true; this.txtCreateDatetime.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().ToString("yyyy-MM-dd"); this.txtCreateName.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name; } } /// /// 选择男 /// /// /// void chkClientSexMan_Click(object sender, EventArgs e) { this.chkClientSexMan.Checked = true; this.chkClientWoman.Checked = false; } /// /// 选择女 /// /// /// void chkClientWoman_Click(object sender, EventArgs e) { this.chkClientWoman.Checked = true; this.chkClientSexMan.Checked = false; } /// /// 删除或者后退为取消选择客户 /// /// /// void txtClientName_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Delete || e.KeyCode == Keys.Back) { if (!string.IsNullOrEmpty(this.StrClientNumber)) { this.StrClientNumber = ""; this.txtClientName.Text = ""; this.txtClientPhone.Text = ""; this.chkClientWoman.Checked = false; this.chkClientSexMan.Checked = false; this.txtClientName.ReadOnly = false; this.txtClientPhone.ReadOnly = false; this.chkClientSexMan.Enabled = true; this.chkClientWoman.Enabled = true; } } } /// /// 选择客户 /// /// /// void btnClientSelect_Click(object sender, EventArgs e) { LYFZ.Software.MainBusiness.FinancialManagement.TwoSalesOrder.FrmCustomerSelete frm = new FrmCustomerSelete(); frm.ShowDialog(); this.StrClientNumber = frm.StrClientNumber; if (!string.IsNullOrEmpty(this.StrClientNumber)) { DataTable dt = orbll.GetView_Custom("tb_ErpCustomer", StrWhere: "Cus_CustomerNumber='" + this.StrClientNumber + "'", ShowColumnName: "Cus_CustomerNumber,Cus_Name,Cus_Sex,Cus_Telephone").Tables[0]; if (dt.Rows.Count > 0) { this.txtClientName.ReadOnly = true; this.txtClientPhone.ReadOnly = true; this.chkClientSexMan.Enabled = false; this.chkClientWoman.Enabled = false; this.txtClientName.Text = dt.Rows[0]["Cus_Name"].ToString(); this.txtClientPhone.Text = dt.Rows[0]["Cus_Telephone"].ToString(); if (!Convert.ToBoolean(dt.Rows[0]["Cus_Sex"])) { this.chkClientSexMan.Checked = true; this.chkClientWoman.Checked = false; } else { this.chkClientWoman.Checked = true; this.chkClientSexMan.Checked = false; } } } } /// /// 拔打电话 /// /// /// void btnDial_Click(object sender, EventArgs e) { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.PhoneCall(this.txtClientPhone); } /// /// 设置项目名称 /// /// /// void btnItemNameSet_Click(object sender, EventArgs e) { LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet(); frm.TypeName = "BEBACHBBCDBGJAJDF"; frm.Version = "Version"; if (frm.ShowDialog() == DialogResult.OK) { string StrTag = ""; if (this.cmbtreevItemName.Tag != null) { StrTag = this.cmbtreevItemName.Tag.ToString().Trim(); } LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACHBBCDBGJAJDF", this.cmbtreevItemName); this.cmbtreevItemName.TagFindText(StrTag); } } /// /// 设置二销类别 /// /// /// void btnItemTypeSet_Click(object sender, EventArgs e) { LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet(); frm.TypeName = "BEBACDAJDFDDEACGJ"; frm.Version = "Version"; if (frm.ShowDialog() == DialogResult.OK) { string StrTag = ""; if (this.cmbtreevItemType.Tag != null) { StrTag = this.cmbtreevItemType.Tag.ToString().Trim(); } LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACDAJDFDDEACGJ", this.cmbtreevItemType, StrWhere: "Sc_ClassCode!='BEBCADBFBCDFBGJHC' and Sc_ClassCode!='BEBCADBFBDDEGGABF' and Sc_ClassCode!='BEBCBFBICGDHCGBEJ'" + StrConsumeTypeWhere); this.cmbtreevItemType.TagFindText(StrTag); } } /// /// 选择开单人 /// /// /// void btnOpenOrderPersonSelect_Click(object sender, EventArgs e) { LYFZ.Software.MainBusiness.FinancialManagement.OrdersReceivables.FrmSelectPayOpenSingle frm = new OrdersReceivables.FrmSelectPayOpenSingle(); frm.ShowDialog(); if (!string.IsNullOrEmpty(frm.Str1)) { this.txtOpenOrderPersonSelect.Text = frm.Str1; this.txtOpenOrderPersonSelect.Tag = frm.Str3; } } /// /// 输入框设置 /// /// /// void txtItemQuantity_KeyPress(object sender, KeyPressEventArgs e) { if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar)) { e.Handled = true; } } /// /// 输入框设置 /// /// /// void txtItemAmount_KeyPress(object sender, KeyPressEventArgs e) { if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar)) { e.Handled = true; } else if (Char.IsPunctuation(e.KeyChar)) { if (e.KeyChar == '.') { if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('.') != -1) { e.Handled = true; } } else if (e.KeyChar == '-') { if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('-') != -1) { e.Handled = true; } } else { e.Handled = true; } } } /// /// 保存 /// /// /// void btnSaveed_Click(object sender, EventArgs e) { try { #region 判断不能为空 if (string.IsNullOrEmpty(txtClientName.Text)) { MessageBoxCustom.Show("客户名称不能为空!"); return; } string StrTelephone = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.MaskedTextBoxExGetText(this.txtClientPhone); if (!string.IsNullOrEmpty(StrTelephone)) { if (StrTelephone.Length != 11) { MessageBoxCustom.Show("客户手机号长度不足11位!"); return; } } if (string.IsNullOrEmpty(cmbtreevItemName.Text)) { MessageBoxCustom.Show("项目名称不能为空!"); return; } if (string.IsNullOrEmpty(this.cmbtreevItemType.Text.Trim())) { MessageBoxCustom.Show("二销类别不能为空!"); return; } if (string.IsNullOrEmpty(txtItemAmount.Text)) { MessageBoxCustom.Show("金额不能为空!"); return; } if (string.IsNullOrEmpty(txtOpenOrderPersonSelect.Text)) { MessageBoxCustom.Show("接单人不能为空!"); return; } if (!this.chkClientSexMan.Checked && !this.chkClientWoman.Checked) { MessageBoxCustom.Show("性别不能为空!"); return; } #endregion DateTime StrTime = SDateTime.Now; string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID; List clist = new List(); #region 增加 LYFZ.Model.Model_ErpTwoSalesOrder modelOrder = null; if (!string.IsNullOrEmpty(this.StrOrderNumber)) { modelOrder = torbll.GetModel("Tsorder_Number", this.StrOrderNumber); modelOrder.Tsorder_UpdateDatetime = StrTime; modelOrder.Tsorder_UpdateName = StrUserID; } else { modelOrder = new Model.Model_ErpTwoSalesOrder(); modelOrder.Tsorder_Number = LYFZ.BLL.BLL_ErpOrder.GenerateNewOtherConsumeNumber(); modelOrder.Tsorder_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelOrder.Tsorder_CustomerName = ""; modelOrder.Tsorder_Telephone = ""; modelOrder.Tsorder_PersonHandling = StrUserID; modelOrder.Tsorder_PhotoNames = ""; modelOrder.Tsorder_Photography = ""; modelOrder.Tsorder_PhotoPickupName = ""; modelOrder.Tsorder_PhotoPickup = 0; modelOrder.Tsorder_CreateDatetime = Convert.ToDateTime(this.txtCreateDatetime.Text); modelOrder.Tsorder_CreateName = StrUserID; modelOrder.Tsorder_UpdateName = ""; } modelOrder.Tsorder_Name = this.cmbtreevItemName.Text.Trim(); modelOrder.Tsorder_Money = Convert.ToDecimal(this.txtItemAmount.Text.Trim()); if (string.IsNullOrEmpty(this.txtItemQuantity.Text.Trim())) { modelOrder.Tsorder_Quantity = 0; } else { modelOrder.Tsorder_Quantity = Convert.ToInt32(this.txtItemQuantity.Text.Trim()); } modelOrder.Tsorder_OpenSingle = this.txtOpenOrderPersonSelect.Tag.ToString().Trim(); modelOrder.Tsorder_Category = this.cmbtreevItemType.Tag.ToString().Trim(); modelOrder.Tsorder_Remark = this.txtItemRemark.Text.Trim(); #endregion #region 客户编号存在 if (!string.IsNullOrEmpty(this.StrClientNumber)) { modelOrder.Tsorder_CustomerNumber = this.StrClientNumber; } else //客户编号不存在 { LYFZ.Model.Model_ErpCustomer modelClient = new Model.Model_ErpCustomer(); bool IsFind = false; if (!string.IsNullOrEmpty(StrTelephone)) { DataTable dt_Cus = orbll.GetView_Custom("tb_ErpCustomer", StrWhere: "Cus_Telephone='" + StrTelephone + "'", ShowColumnName: "Cus_CustomerNumber").Tables[0]; if (dt_Cus.Rows.Count > 0) { IsFind = true; modelOrder.Tsorder_CustomerNumber = dt_Cus.Rows[0]["Cus_CustomerNumber"].ToString(); } } if (!IsFind) { //插入客户表 modelClient.Cus_CustomerNumber = LYFZ.BLL.BLL_ErpCustomer.GetClientNumber();//获取新编号 modelClient.Cus_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelClient.Cus_Type = ""; modelClient.Cus_Name = LYFZ.BLL.OtherCommonModel.ClearSpecialCharacter(this.txtClientName.Text); modelClient.Cus_NamePinyin = LYFZ.Command.Command_ChineseToPinyin.GetChineseSpellPinyin(this.txtClientName.Text.Trim()).ToLower(); modelClient.Cus_Telephone = StrTelephone.Trim(); if (this.chkClientSexMan.Checked) { modelClient.Cus_Sex = false; } else { modelClient.Cus_Sex = true; } modelClient.Cus_CreateDateTime = StrTime; modelClient.Cus_CreateName = StrUserID; clist.Add(ctbll.GetAddCommandInfo(modelClient)); LYFZ.Model.Model_ErpCustomerGroup modelGroup = new Model.Model_ErpCustomerGroup(); modelGroup.GP_OrderNumber = modelOrder.Tsorder_Number; modelGroup.GP_CustomerGroupID = LYFZ.BLL.BLL_ErpCustomer.GetNewClientGroupNumber(); modelGroup.GP_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelGroup.GP_GroupType = 0; modelGroup.GP_CustomerType = -1; modelGroup.GP_CustomerStatus = "正常"; modelGroup.GP_LossReason = ""; modelGroup.GP_DegreeOfIntent = ""; modelGroup.GP_CustomerSource = "其他消费"; modelGroup.GP_IntroducerCustomerID = ""; modelGroup.GP_Remark = ""; modelGroup.GP_BelongsPersonID = ""; modelGroup.GP_ISIntentionCustomer = 3; modelGroup.GP_RemindEvent = ""; modelGroup.GP_TransactionTime = StrTime; modelGroup.GP_CreateDatetime = StrTime; modelGroup.GP_CreateName = StrUserID; modelGroup.GP_UpdateName = StrUserID; clist.Add(ctgbll.GetAddCommandInfo(modelGroup)); LYFZ.Model.Model_ErpCustomerGroupMembers modelGMember = new Model.Model_ErpCustomerGroupMembers(); modelGMember.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelGMember.GM_CustomerGroupID = modelGroup.GP_CustomerGroupID; modelGMember.GM_CustomerID = modelClient.Cus_CustomerNumber; modelGMember.GM_Master = 1; modelGMember.GM_ProtagonistCustomer = 1; modelGMember.GM_RelatedPersonID = modelClient.Cus_CustomerNumber; modelGMember.GM_Relation = "本人"; modelGMember.GM_IsOrder = 1; modelGMember.GM_IsOrderNumber = ""; clist.Add(ctgmbll.GetAddCommandInfo(modelGMember)); modelOrder.Tsorder_CustomerNumber = modelClient.Cus_CustomerNumber; } } if (!string.IsNullOrEmpty(this.StrOrderNumber)) { clist.Add(torbll.GetUpdateCommandInfo(modelOrder)); } else { clist.Add(torbll.GetAddCommandInfo(modelOrder)); } #endregion #region 订单商品 for (int i = 0; i < Itemdel.Count; i++) { LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel ColumnModel = (LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel)Itemdel[i].Tag; clist.Add(oplbll.GetDeleteCommandInfo("ID", "=", ColumnModel.ProductOrderID)); //LYFZ.Model.Model_ErpProduct modelpt = ptbll.GetModel("Prod_Number", ColumnModel.ProductNumber.Trim()); DataTable productTable = orbll.GetView_Custom("tb_ErpProduct", StrWhere: "Prod_Number = '" + ColumnModel.ProductNumber.Trim() + "' And Prod_Availability = 1", ShowColumnName: "Prod_Availability").Tables[0]; if (productTable.Rows.Count > 0) { clist.Add(ptbll.GetProductLessInventory(ColumnModel.ProductNumber.Trim(), 1, false)); //modelpt.Prod_Quantity += 1; //modelpt.Prod_UpdateDateTime = StrTime; //modelpt.Prod_UpdateName = StrUserID; //clist.Add(ptbll.GetUpdateCommandInfo(modelpt)); LYFZ.Model.Model_ErpProductIntStorage modelIntStorage = new Model.Model_ErpProductIntStorage(); modelIntStorage.Pis_PurchaseQuantity += 1; modelIntStorage.Pis_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelIntStorage.Pis_ProductCategory = ColumnModel.ProductCategory; modelIntStorage.Pis_ProductNumber = ColumnModel.ProductNumber; modelIntStorage.Pis_PurchasePrice = Convert.ToDecimal(ColumnModel.ProductCostPrice); modelIntStorage.Pis_PurchaseVendor = ""; modelIntStorage.Pis_Remark = "其他消费删除产品,自动将加回数据"; modelIntStorage.Pis_CreateName = StrUserID; modelIntStorage.Pis_CreateDatetime = StrTime; clist.Add(pisbll.GetAddCommandInfo(modelIntStorage)); } } for (int i = 0; i < this.listViewData.Items.Count; i++) { LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel ColumnModel = (LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel)this.listViewData.Items[i].Tag; if (string.IsNullOrEmpty(ColumnModel.ProductOrderID)) { LYFZ.Model.Model_ErpOrderProductList modelProduct = new Model.Model_ErpOrderProductList(); modelProduct.OPlist_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelProduct.OPlist_OrderNumber = modelOrder.Tsorder_Number; modelProduct.OPlist_ViceNumber = modelOrder.Tsorder_Number; modelProduct.OPlist_Class = ColumnModel.ProductCategory; modelProduct.OPlist_ProdNumber = ColumnModel.ProductNumber; modelProduct.OPlist_ProdName = this.listViewData.Items[i].Text.Trim(); modelProduct.OPlist_Unit = ColumnModel.ProductUnit; modelProduct.OPlist_CostPrice = Convert.ToDecimal(ColumnModel.ProductCostPrice); modelProduct.OPlist_ProdSoldPrice = Convert.ToDecimal(this.listViewData.Items[i].SubItems["商品价格"].Text.Trim()); modelProduct.OPlist_ProdQuantity = Convert.ToInt32(this.listViewData.Items[i].SubItems["商品数量"].Text.Trim()); modelProduct.OPlist_OpenOrderRemark = this.listViewData.Items[i].SubItems["备注"].Text.Trim(); modelProduct.OPlist_UniquelyIdentity = LYFZ.DAL.DAL_ErpOrderProductList.GetPorductUniquelyIdentity(); modelProduct.OPlist_CompletedHadLessQuantity = modelProduct.OPlist_ProdQuantity; modelProduct.OPlist_PickupQuantity = modelProduct.OPlist_ProdQuantity; modelProduct.OPlist_PickupStatus = "1"; modelProduct.OPlist_PickupName = StrUserID; modelProduct.OPlist_PickupTime = StrTime; modelProduct.OPlist_PickupRemark = ""; modelProduct.OPlist_ArrangeNmae = ""; modelProduct.OPlist_ArrangeRemark = ""; modelProduct.OPlist_Batch = 0; modelProduct.OPlist_CompletedName = ""; modelProduct.OPlist_CompletedQuantity = 0; modelProduct.OPlist_CompletedStatus = "1"; modelProduct.OPlist_IsExpedited = false; modelProduct.OPlist_OldProductID = ""; modelProduct.OPlist_Remark = ""; modelProduct.OPlist_ReservationTakeName = ""; modelProduct.OPlist_ReworkRemark = ""; modelProduct.OPlist_ReworkRemark2 = ""; modelProduct.OPlist_ReworkStatus = "0"; modelProduct.OPlist_ReworName = ""; modelProduct.OPlist_ReworQuantity = 0; modelProduct.OPlist_SelectFilmProductLog = ""; modelProduct.OPlist_SendName = ""; modelProduct.OPlist_SendNumber = ""; modelProduct.OPlist_SendStatus = "0"; modelProduct.OPlist_SendVendor = ""; modelProduct.OPlist_Type = "2"; modelProduct.OPlist_CreateDatetime = StrTime; modelProduct.OPlist_CreateName = StrUserID; modelProduct.OPlist_UpdateName = ""; clist.Add(oplbll.GetAddCommandInfo(modelProduct)); LYFZ.Model.Model_ErpProduct modelpt = ptbll.GetModel("Prod_Number", ColumnModel.ProductNumber.Trim()); DataTable productTable = orbll.GetView_Custom("tb_ErpProduct", StrWhere: "Prod_Number = '" + ColumnModel.ProductNumber.Trim() + "' And Prod_Availability = 1", ShowColumnName: "Prod_Availability").Tables[0]; if (productTable.Rows.Count > 0) { //if (modelpt.Prod_Availability.ToString().Trim() == "1") //{ clist.Add(ptbll.GetProductLessInventory(ColumnModel.ProductNumber.Trim(), 1, true)); //modelpt.Prod_Quantity -= 1; //modelpt.Prod_UpdateDateTime = StrTime; //modelpt.Prod_UpdateName = StrUserID; //clist.Add(ptbll.GetUpdateCommandInfo(modelpt)); LYFZ.Model.Model_ErpProductOutStorage modelOutStorage = new Model.Model_ErpProductOutStorage(); modelOutStorage.Pos_OutQuantity -= modelProduct.OPlist_PickupQuantity; modelOutStorage.Pos_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID(); modelOutStorage.Pos_ProductCategory = modelProduct.OPlist_Class; modelOutStorage.Pos_ProductNumber = modelProduct.OPlist_ProdNumber; modelOutStorage.Pos_Remark = "其他消费,添加产品自动减库存"; modelOutStorage.Pos_OutTime = StrTime; modelOutStorage.Pos_OutName = StrUserID; clist.Add(posbll.GetAddCommandInfo(modelOutStorage)); } } else { LYFZ.Model.Model_ErpOrderProductList modelProduct = oplbll.GetModel(Convert.ToInt32(ColumnModel.ProductOrderID)); modelProduct.OPlist_OpenOrderRemark = this.listViewData.Items[i].SubItems["备注"].Text.Trim(); modelProduct.OPlist_UpdateDateTime = StrTime; modelProduct.OPlist_UpdateName = StrUserID; clist.Add(oplbll.GetUpdateCommandInfo(modelProduct)); } } #endregion if (clist.Count > 0) { if (MessageBoxCustom.Show("您确定要保存吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No) { return; } if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0) { this.IsSaveed = true; if (string.IsNullOrEmpty(this.StrOrderNumber) && LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.TwoSalesOrderCompetence, CustomAttributes.OperatingAuthority.OtherConsumerReceivables)) { this.StrOrderNumber = modelOrder.Tsorder_Number; LYFZ.Software.MainBusiness.FinancialManagement.TwoSalesOrder.FrmTwoSalesOrderPayment frm = new TwoSalesOrder.FrmTwoSalesOrderPayment(); frm.StrCope = modelOrder.Tsorder_Money; frm.StrPaid = 0; frm.StrArrears = modelOrder.Tsorder_Money; frm.StrOrdNumber = this.StrOrderNumber; frm.IsShownPaymentNot = true; frm.ShowDialog(); string showMsg = "保存成功"; if (frm.IsSaveed) { showMsg = "保存并收款成功"; } if (MessageBoxCustom.Show(showMsg + "\r\n你要继续录入新订单吗?", msgBoxButton: MessageBoxButtons.YesNo) == DialogResult.Yes) { btnNewOrder_Click(null,null); } else { this.Close(); } } else { if (!this.IsSaveed) { MessageBoxCustom.Show("保存成功!"); } this.Close(); } } else { MessageBoxCustom.Show("保存失败!"); } } } catch (Exception ex) { MessageBoxCustom.Show(ex.Message); } } /// /// 取消 /// /// /// void btnCancel_Click(object sender, EventArgs e) { this.Close(); } List Itemdel = new List(); /// /// 删除产品 /// /// /// void btnProductDelete_Click(object sender, EventArgs e) { if (this.listViewData.Items.Count > 0 && this.listViewData.SelectedItems.Count > 0) { if (MessageBoxCustom.Show("您确定要删除吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No) { return; } List mlist = new List(); for (int i = 0; i < this.listViewData.SelectedItems.Count; i++) { LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel ColumnModel = (LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel)this.listViewData.SelectedItems[i].Tag; if (!string.IsNullOrEmpty(ColumnModel.ProductOrderID)) { Itemdel.Add(this.listViewData.SelectedItems[i]); } ListViewItem item = this.listViewData.SelectedItems[i]; mlist.Add(item); } for (int i = 0; i < mlist.Count; i++) { this.listViewData.Items.Remove(mlist[i]); } } } /// /// 工具箱 /// /// /// void btnProductToolbox_Click(object sender, EventArgs e) { LYFZ.Software.MainBusiness.DoorCityProcess.SetSmallForm.ToolboxListViewSamllForm frm = new DoorCityProcess.SetSmallForm.ToolboxListViewSamllForm(); frm.LoadType = "套系包含商品"; frm.ShowDialog(); if (frm.IsSaveed) { this.SetOrderProductValue(frm.mlist, frm.mlist_SmallImage); } } /// /// 商品资料 /// /// public void SetOrderProductValue(List mlist, ImageList mlist_SmallImage) { for (int i = 0; i < mlist_SmallImage.Images.Keys.Count; i++) { if (!this.mlistImage.Images.Keys.Contains(mlist_SmallImage.Images.Keys[i].Trim())) { this.mlistImage.Images.Add(mlist_SmallImage.Images.Keys[i].Trim(), mlist_SmallImage.Images[mlist_SmallImage.Images.Keys[i].Trim()]); } } LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel ColumnModel = null; for (int i = 0; i < mlist.Count; i++) { ListViewItem lvItem = new ListViewItem(); ColumnModel = new DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel(); ColumnModel.ProductNumber = mlist[i].Prod_Number.Trim(); ColumnModel.ProductCostPrice = mlist[i].Prod_CostPrice.ToString().Trim(); ColumnModel.ProductCategory = mlist[i].Prod_Class.ToString().Trim(); ColumnModel.ProductUnit = mlist[i].Prod_Unit.ToString().Trim(); ColumnModel.ProductOrderID = ""; ColumnModel.ProductUniquelyIdentity = ""; lvItem.Tag = ColumnModel; lvItem.ImageKey = mlist[i].Prod_Number.Trim(); lvItem.Text = mlist[i].Prod_Name.Trim(); ListViewItem.ListViewSubItem ListSubItem = new ListViewItem.ListViewSubItem(); ListSubItem.Name = "商品价格"; ListSubItem.Text = mlist[i].Prod_SalesPrice.ToString().Trim(); lvItem.SubItems.Add(ListSubItem); ListSubItem = new ListViewItem.ListViewSubItem(); ListSubItem.Name = "商品数量"; ListSubItem.Text = "1"; lvItem.SubItems.Add(ListSubItem); ListSubItem = new ListViewItem.ListViewSubItem(); ListSubItem.Name = "备注"; ListSubItem.Text = ""; lvItem.SubItems.Add(ListSubItem); if ((this.listViewData.Items.Count % 2) > 0) { lvItem.BackColor = System.Drawing.Color.PapayaWhip; } else { lvItem.BackColor = System.Drawing.Color.PowderBlue; } this.listViewData.Items.Add(lvItem); } } /// /// 双击编辑子项 /// /// /// void listViewData_MouseDoubleClick(object sender, MouseEventArgs e) { this.txtOpenOrderRemark.Visible = false; ListViewHitTestInfo info = this.listViewData.HitTest(e.X, e.Y); if (!string.IsNullOrEmpty(info.SubItem.Name.Trim())) { Rectangle rect = info.SubItem.Bounds; switch (info.SubItem.Name.Trim()) { case "备注": this.txtOpenOrderRemark.Location = new Point(rect.Location.X + this.listViewData.Location.X + 3, rect.Location.Y + this.listViewData.Location.Y + 2); this.txtOpenOrderRemark.Size = rect.Size; this.txtOpenOrderRemark.Visible = true; this.txtOpenOrderRemark.Tag = info.SubItem.Name.Trim(); this.txtOpenOrderRemark.Text = info.SubItem.Text.Trim(); this.txtOpenOrderRemark.Focus(); break; } } else { LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel ColumnModel = (LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel)this.listViewData.SelectedItems[0].Tag; DataTable dt = orbll.GetView_Custom("tb_ErpProduct", StrWhere: "Prod_Number = '" + ColumnModel.ProductNumber.Trim() + "'", ShowColumnName: "Prod_Thumbnail").Tables[0]; if (dt.Rows.Count > 0) { if (!string.IsNullOrEmpty(dt.Rows[0]["Prod_Thumbnail"].ToString().Trim())) { LYFZ.Software.MainBusiness.InitialSet.Product.FrmProductPic frm = new InitialSet.Product.FrmProductPic(); frm.FrmImage = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetImage(LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.StringToByte(dt.Rows[0]["Prod_Thumbnail"].ToString())); frm.ShowDialog(); } else { MessageBoxCustom.Show("产品未上传相片!"); return; } } } } /// /// 下拉控件离开事件 /// /// /// void txtOpenOrderRemark_Leave(object sender, EventArgs e) { try { if (this.txtOpenOrderRemark.Tag != null) { switch (this.txtOpenOrderRemark.Tag.ToString().Trim()) { case "备注": this.listViewData.SelectedItems[0].SubItems[this.txtOpenOrderRemark.Tag.ToString().Trim()].Text = this.txtOpenOrderRemark.Text.Trim(); break; } } } catch { } this.txtOpenOrderRemark.Visible = false; } /// /// 新订单 /// /// /// void btnNewOrder_Click(object sender, EventArgs e) { if (MessageBoxCustom.Show("新订单将清空所有数据,您确定要重置订单吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.Yes) { Itemdel.Clear(); this.listViewData.Items.Clear(); this.StrOrderNumber = ""; foreach (Control control in this.panelEx2.Controls) { if (control is LYFZ.ComponentLibrary.CheckBoxEx) { ((LYFZ.ComponentLibrary.CheckBoxEx)control).Checked = false; } else if (control is LYFZ.ComponentLibrary.TextBoxEx) { control.Text = ""; control.Tag = null; } else if (control is LYFZ.ComponentLibrary.ComboBoxTreeViewEx) { control.Text = ""; control.Tag = null; } else if (control is LYFZ.ComponentLibrary.DataGridViewEx) { ((LYFZ.ComponentLibrary.DataGridViewEx)control).Rows.Clear(); } else if (control is LYFZ.ComponentLibrary.MaskedTextBoxEx) { control.Text = ""; control.Tag = null; } } this.txtClientPhone.ReadOnly = false; this.txtClientName.ReadOnly = false; this.chkClientSexMan.Enabled = true; this.chkClientWoman.Enabled = true; this.chkClientSexMan.Checked = true; this.txtCreateDatetime.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().ToString("yyyy-MM-dd"); this.txtCreateName.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name; } } } }