using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Collections; using LYFZ.ComponentLibrary; using LYFZ.Helper; namespace LYFZ.Software.MainBusiness.CameraControlBook.SmallForm { public partial class CameraControlQuerySmallForm : LYFZ.Software.UI.CameraControlBook.SmallForm.CameraControlQuerySmallForm { LYFZ.BLL.BLL_ErpOrdersPhotography opbll = new BLL.BLL_ErpOrdersPhotography(); public CameraControlQuerySmallForm() { this.Shown += CameraControlQuerySmallForm_Shown; this.Load += CameraControlQuerySmallForm_Load; this.btnQuery.Click += btnQuery_Click; this.btnConditionQuery.Click += btnConditionQuery_Click; this.rdoShotAll.Click += rdoShotAll_Click; this.rdoShotNo.Click += rdoShotNo_Click; this.rdoShotIn.Click += rdoShotIn_Click; this.rdoShotOK.Click += rdoShotOK_Click; this.chkWedding.Click += chkWedding_Click; this.chkKids.Click += chkKids_Click; this.chkPortrait.Click += chkPortrait_Click; this.btnReservation.Click += btnReservation_Click; this.btnSameDate.Click += btnSameDate_Click; this.btnClose.Click += btnClose_Click; this.dgvData.CellDoubleClick += dgvData_CellDoubleClick; this.dgvData.ColumnHeaderMouseClick += dgvData_ColumnHeaderMouseClick; this.dgvData.CellMouseDown += dgvData_CellMouseDown; this.cmbtreevTextQuery.ComboBoxTree_NodeMouseClick += cmbtreevTextQuery_ComboBoxTree_NodeMouseClick; this.Resize += CameraControlQuerySmallForm_Resize; } /// /// 是否保存 /// public bool IsSaveed = false; /// /// /// private Dictionary DictData = new Dictionary(); /// /// 员工编号 /// string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID; /// /// 窗体加载事件 /// /// /// void CameraControlQuerySmallForm_Shown(object sender, EventArgs e) { this.PublicFunctionRows(); if (!LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.CameraControlBook, LYFZ.CustomAttributes.OperatingAuthority.CameraControlBook_PhotographClientAnPai)) { this.btnSameDate.Enabled = false; } } /// /// 窗体加载事件 /// /// /// void CameraControlQuerySmallForm_Load(object sender, EventArgs e) { LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetSystemVersion(this.chkPortrait, this.chkWedding, this.chkKids); if (this.dgvData.Columns.Count <= 0) { string strColumn = "订单号,订单类型,客户姓名,客户电话,客户性别,套系类别,客户来源,套系名称,套系价格,婚期,接单人,套系名称,套系价格,订单日期,拍摄名称,拍摄状态,摄影时间,摄影师,摄影助理,化妆师,化妆助理,引导师,备注"; this.dgvData.DataColumns(strColumn, LYFZ.Software.MainBusiness.CommonLogical.CacheData.StrOrderReportHideField); } DataTable tbl = new LYFZ.BLL.BLL_ErpTheScenery().GetAllList().Tables[0]; TreeNode root = null; for (int i = 0; i < tbl.Rows.Count; i++) { if (i == 0) { root = new TreeNode(); root.Text = ""; root.Tag = ""; root.Name = ""; this.cmbtreevTextQuery.Nodes.Add(root); } root = new TreeNode(); root.Text = tbl.Rows[i]["Tsc_Name"].ToString().Trim(); root.Tag = tbl.Rows[i]["Tsc_Name"].ToString().Trim(); root.Name = tbl.Rows[i]["Tsc_Name"].ToString().Trim(); this.cmbtreevTextQuery.Nodes.Add(root); } } /// /// 查询条件选择 /// /// /// void cmbtreevTextQuery_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e) { this.PublicFunctionRows(); } /// /// 查询 /// /// /// void btnQuery_Click(object sender, EventArgs e) { this.PublicFunctionRows(); } /// /// 条件查询 /// /// /// void btnConditionQuery_Click(object sender, EventArgs e) { LYFZ.Software.MainBusiness.CameraControlBook.SuperSmallForm.ConditionQuerySuperSmallForm frm = new SuperSmallForm.ConditionQuerySuperSmallForm(); frm.ShowDialog(); if (frm.DictDataArray.Count > 0) { this.DictData = frm.DictDataArray; this.PublicFunctionRows(); } } /// /// 全部 /// /// /// void rdoShotAll_Click(object sender, EventArgs e) { this.rdoShotIn.Checked = false; this.rdoShotNo.Checked = false; this.rdoShotOK.Checked = false; this.PublicFunctionRows(); } /// /// 未拍 /// /// /// void rdoShotNo_Click(object sender, EventArgs e) { this.rdoShotIn.Checked = false; this.rdoShotAll.Checked = false; this.rdoShotOK.Checked = false; this.PublicFunctionRows(); } /// /// 拍照中 /// /// /// void rdoShotIn_Click(object sender, EventArgs e) { this.rdoShotNo.Checked = false; this.rdoShotAll.Checked = false; this.rdoShotOK.Checked = false; this.PublicFunctionRows(); } /// /// 已拍 /// /// /// void rdoShotOK_Click(object sender, EventArgs e) { this.rdoShotNo.Checked = false; this.rdoShotAll.Checked = false; this.rdoShotIn.Checked = false; this.PublicFunctionRows(); } /// /// 婚纱版 /// /// /// void chkWedding_Click(object sender, EventArgs e) { if (this.chkWedding.Checked) { this.chkPortrait.Checked = false; this.chkWedding.Checked = true; this.chkKids.Checked = false; } this.PublicFunctionRows(); } /// /// 儿童版 /// /// /// void chkKids_Click(object sender, EventArgs e) { if (this.chkKids.Checked) { this.chkPortrait.Checked = false; this.chkWedding.Checked = false; this.chkKids.Checked = true; } this.PublicFunctionRows(); } /// /// 写真版 /// /// /// void chkPortrait_Click(object sender, EventArgs e) { if (this.chkPortrait.Checked) { this.chkPortrait.Checked = true; this.chkWedding.Checked = false; this.chkKids.Checked = false; } this.PublicFunctionRows(); } /// /// 预约 /// /// /// void btnReservation_Click(object sender, EventArgs e) { if (this.dgvData.Rows.Count > 0) { if (this.dgvData.CurrentRow != null) { if (this.dgvData.CurrentRow.Index >= 0) { LYFZ.Software.MainBusiness.CameraControlBook.SmallForm.PhotographedReservationSmallForm frm = new PhotographedReservationSmallForm(); frm.OrdNumber = this.dgvData.CurrentRow.Cells["Ord_Number"].Value.ToString().Trim(); frm.ShowDialog(); if (frm.IsSave) { this.IsSaveed = frm.IsSave; this.PublicFunctionRows(); } } else { MessageBoxCustom.Show("请选择你要安排的客人"); return; } } else { MessageBoxCustom.Show("请选择你要安排的客人"); return; } } } /// /// 同一日期 /// /// /// void btnSameDate_Click(object sender, EventArgs e) { if (this.dgvData.Rows.Count > 0) { if (this.dgvData.SelectedRows.Count > 1) { List mlist = new List(); bool isFurn = false; string StrWhere = " ID in ("; for (int i = 0; i < this.dgvData.SelectedRows.Count; i++) { if (this.dgvData.SelectedRows[i].Visible) { StrWhere += "'" + this.dgvData.SelectedRows[i].Cells["PID"].Value.ToString().Trim() + "',"; isFurn = true; } } StrWhere = StrWhere.TrimEnd(',') + ")"; System.Threading.Thread t = new System.Threading.Thread(new System.Threading.ThreadStart(delegate() { mlist = opbll.GetModelList(strWhere: StrWhere); })); t.Start(); LYFZ.Software.MainBusiness.CameraControlBook.SuperSmallForm.UnityArrangeWorkSuperSmallForm frm = new SuperSmallForm.UnityArrangeWorkSuperSmallForm(); frm.UnityArrangeWorkType = LYFZ.EnumPublic.EnumUnityArrangeWorkType.拍照客人; frm.ShowDialog(); if (frm.IsSaveed) { string strName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID; DateTime StrTime = SDateTime.Now; List clist = new List(); if (MessageBoxCustom.Show("您确定要保存安排吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No) { return; } while (isFurn) { if (mlist.Count > 0) { isFurn = false; } } for (int i = 0; i < this.dgvData.SelectedRows.Count; i++) { if (this.dgvData.SelectedRows[i].Visible) { for (int j = 0; j < mlist.Count; j++) { if (mlist[j].ID == Convert.ToInt32(this.dgvData.SelectedRows[i].Cells["PID"].Value)) { //LYFZ.Model.Model_ErpOrdersPhotography model = opbll.GetModel(Convert.ToInt32(this.dgvData.SelectedRows[i].Cells["PID"].Value)); LYFZ.Model.Model_ErpOrdersPhotography model = mlist[j]; if (frm.UnityArrangeWorkModel.IsDateTime) { this.dgvData.SelectedRows[i].Cells["摄影时间"].Value = frm.UnityArrangeWorkModel.StrDateTime; model.Ordpg_ReservationPhotographyTime = Convert.ToDateTime(frm.UnityArrangeWorkModel.StrDateTime); } if (frm.UnityArrangeWorkModel.IsPhotographerName) { this.dgvData.SelectedRows[i].Cells["摄影师"].Value = frm.UnityArrangeWorkModel.PhotographerName; model.Ordpg_ReservationPhotographyName = frm.UnityArrangeWorkModel.PhotographerTag; } if (frm.UnityArrangeWorkModel.IsPhotographyAssistantName) { this.dgvData.SelectedRows[i].Cells["摄影助理"].Value = frm.UnityArrangeWorkModel.PhotographyAssistantName; model.Ordpg_ReservationPhotographyAssistant = frm.UnityArrangeWorkModel.PhotographyAssistantTag; } if (frm.UnityArrangeWorkModel.IsMakeupArtistName) { this.dgvData.SelectedRows[i].Cells["化妆师"].Value = frm.UnityArrangeWorkModel.MakeupArtistName; model.Ordpg_ReservationMakeupArtist = frm.UnityArrangeWorkModel.MakeupArtistTag; } if (frm.UnityArrangeWorkModel.IsMakeupAssistantName) { this.dgvData.SelectedRows[i].Cells["化妆助理"].Value = frm.UnityArrangeWorkModel.MakeupAssistantName; model.Ordpg_ReservationMakeupAssistant = frm.UnityArrangeWorkModel.MakeupAssistantTag; } if (frm.UnityArrangeWorkModel.IsBootDivisionName) { this.dgvData.SelectedRows[i].Cells["引导师"].Value = frm.UnityArrangeWorkModel.BootDivisionName; model.Ordpg_ReservationBootDivision = frm.UnityArrangeWorkModel.BootDivisionTag; } if (frm.UnityArrangeWorkModel.IsBootDivisionAssistantName) { this.dgvData.SelectedRows[i].Cells["引导助理"].Value = frm.UnityArrangeWorkModel.BootDivisionAssistantName; model.Ordpg_ReservationBootDivisionAssistant = frm.UnityArrangeWorkModel.BootDivisionAssistantTag; } model.Ordpg_DispatchTime = StrTime; model.Ordpg_Dispatcher = strName; model.Ordpg_UpdateDateTime = StrTime; model.Ordpg_UpdateName = strName; clist.Add(opbll.GetUpdateCommandInfo(model)); mlist.RemoveAt(j); break; } } } } if (clist.Count > 0) { if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0) { MessageBoxCustom.Show("保存成功"); IsSaveed = true; } else { MessageBoxCustom.Show("保存失败"); } } } } else { MessageBoxCustom.Show("请选择多条数据进行安排"); return; } } } /// /// 关闭 /// /// /// void btnClose_Click(object sender, EventArgs e) { this.Close(); } /// /// 窗体大小发生变化 /// /// /// void CameraControlQuerySmallForm_Resize(object sender, EventArgs e) { switch (this.panelPortrait.Location.Y) { case 3: this.flowLayoutPanel2.Height = 36; break; case 37: this.flowLayoutPanel2.Height = 70; break; } } /// /// 数据列表双击事件 /// /// /// void dgvData_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { if (this.dgvData.Rows.Count > 0) { if (e.RowIndex >= 0 && e.ColumnIndex >= 0) { this.btnReservation_Click(this, null); } } } /// /// 右键菜单 /// /// /// void dgvData_CellMouseDown(object sender, DataGridViewCellMouseEventArgs e) { if (e.Button == MouseButtons.Right) { if (e.RowIndex == -1) { this.dgvData.conMenu.Items.Clear(); ToolStripMenuItem item = new ToolStripMenuItem(); item.Text = "设置标题"; item.Tag = "SetColumnShow"; item.Name = "SetColumnShow"; this.dgvData.conMenu.Items.Add(item); //this.dgvData.conMenu.Show(MousePosition.X, MousePosition.Y);//弹出操作菜单 this.dgvData.conMenu.ItemClicked -= dgvData_DataGridViewConMenu_ItemClicked; this.dgvData.conMenu.ItemClicked += dgvData_DataGridViewConMenu_ItemClicked; //this.dgvData.conMenu.Show(); if (!this.dgvData.conMenu.Visible) { this.dgvData.conMenu.Show(MousePosition.X, MousePosition.Y);//弹出操作菜单 } } } } /// /// 右键菜单选择项事件 /// /// /// void dgvData_DataGridViewConMenu_ItemClicked(object sender, ToolStripItemClickedEventArgs e) { ToolStripItem item = e.ClickedItem; if (item.Name.Trim() == "SetColumnShow") { if (LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.ShowDataGridViewSetColumn(this.dgvData, StrEnabled: "摄影时间,摄影师,摄影助理,化妆师,化妆助理,引导师,引导助理")) { this.PublicFunctionRows(); } } } /// /// 点击列标头排序 /// /// /// void dgvData_ColumnHeaderMouseClick(object sender, DataGridViewCellMouseEventArgs e) { if (e.Button == MouseButtons.Left) { string StrColumnName = this.dgvData.Columns[e.ColumnIndex].Name.Trim(); if (StrColumnName == this.StrCurrentClickField || string.IsNullOrEmpty(this.StrCurrentClickField)) { if (this.StrSortOrder == "ASC") { this.StrSortOrder = "DESC"; } else { this.StrSortOrder = "ASC"; } } else { this.StrSortOrder = "DESC"; } if (!StrColumnName.Equals("订单号"))//this.dgvData.StrValueNullColumn.Trim().IndexOf(StrColumnName) == -1) { this.StrSortField = StrColumnName + " " + this.StrSortOrder + ",Ord_CreateDateTime,Ordv_DigitalNumber"; } else { this.StrSortField = "Ord_CreateDateTime " + this.StrSortOrder + ",Ordv_DigitalNumber"; } this.StrCurrentClickField = StrColumnName; this.PublicFunctionRows(); } } /// /// 当前点击的字段 /// string StrCurrentClickField = ""; /// /// 排序字段 /// string StrSortField = "Ord_CreateDateTime ASC,Ordv_DigitalNumber"; /// /// 排序顺序 /// string StrSortOrder = "ASC"; /// /// 创建行 /// void PublicFunctionRows() { this.dgvData.dgvCurrentColumnOriginalSet = "PID,Ord_Number,Ordv_ViceNumber,订单号,客户姓名,客户性别,客户电话,订单类型,接单人,套系名称,套系价格,婚期,订单日期,拍摄名称,拍摄状态,摄影时间,摄影师,摄影助理,化妆师,化妆助理,引导师,引导助理,备注"; string StrGuidName = LYFZ.EnumPublic.dgvGuidName.E_FormAll_A0026.ToString().Trim(); this.dgvData.dgvFixedHideColumn = "PID,Ord_Number,Ordv_ViceNumber"; this.dgvData.dgvGuidName = StrGuidName; this.dgvData.dgvUserEmployeeID = this.StrUserID; this.dgvData.StrValueNullColumn = "订单号,客户姓名,客户性别,客户电话,订单类型,接单人,套系名称,套系价格,婚期,订单日期"; Dictionary dictColumns = LYFZ.DAL.DAL_GridViewDisplayIndex.GetGridViewShowColumns(this.StrUserID, StrGuidName, this.dgvData.dgvCurrentColumnOriginalSet); this.dgvData.dictShowColumName = dictColumns; string StrQueryCondition = this.GetWhereStr(); int intTopCount = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetPageSize(); Hashtable htData = LYFZ.ComponentLibrary.DataGridOrderView.GetData_CameraControlBookPhotographedNot(this.dgvData, dictColumns, StrQueryCondition, intTopCount, this.StrSortField); this.dataGridViewStatisticsCount1.CurrenQuantity = Convert.ToInt32(htData["CurrentCount"]); this.dataGridViewStatisticsCount1.TotalQuantity = Convert.ToInt32(htData["TotalCount"]); } /// /// 返回要操作的条件 /// /// string GetWhereStr() { string StrWhere = ""; if (this.rdoShotNo.Checked) { StrWhere += " and Ordpg_PhotographyStatus = '0'"; } else if (this.rdoShotOK.Checked) { StrWhere += " and Ordpg_PhotographyStatus = '1'"; } else if (this.rdoShotIn.Checked) { StrWhere += " and Ordpg_PhotographyStatus = '2'"; } if (this.DictData.Count > 0) { if (this.DictData.ContainsKey("Sights") && this.DictData["Sights"].Length > 0)//景点 { this.cmbtreevTextQuery.Text = DictData["Sights"].Trim(); } if (this.DictData.ContainsKey("OrderStartTime") && this.DictData["OrderStartTime"].Length > 0)//订单时间 { StrWhere += LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Ord_CreateDateTime", DictData["OrderStartTime"].Trim(), DictData["OrderEndTime"].Trim()); } if (this.DictData.ContainsKey("MarriageStartTime") && this.DictData["MarriageStartTime"].Length > 0)//婚期 { StrWhere += LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("GregorianCalendar_DayForMarriage", DictData["MarriageStartTime"].Trim(), DictData["MarriageEndTime"].Trim()); } } if (this.cmbtreevTextQuery.Text.Trim() != "") { StrWhere += " and Ordpg_Sights = '" + this.cmbtreevTextQuery.Text.Trim() + "'"; } StrWhere += LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetVersionQuerySQL(this.chkPortrait, this.chkWedding, this.chkKids); this.DictData.Clear(); return StrWhere; } } }