1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- 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;
- namespace LYFZ.Software.MainBusiness.FinancialManagement.TwoSalesOrder
- {
- public partial class FrmTwoSalesOrderConditionsSelect : LYFZ.Software.UI.FinancialManagement.TwoSalesOrder.FrmTwoSalesOrderConditionsSelect
- {
- public FrmTwoSalesOrderConditionsSelect()
- {
- this.Load += FrmTwoSalesOrderConditionsSelect_Load;
- this.chkTime.Click += chkTime_Click;
- this.btnOK.Click += btnOK_Click;
- this.btnCancel.Click += btnCancel_Click;
- }
- public bool IsSaveed = false;
- public Dictionary<string, string> DictDataArray = new Dictionary<string, string>();
- /// <summary>
- /// 窗体加载
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void FrmTwoSalesOrderConditionsSelect_Load(object sender, EventArgs e)
- {
- if (!LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.OtherConsumerPassportManagement)
- {
- this.panelIDPhoto.Visible = false;
- this.Height -= this.panelIDPhoto.Height / 2;
- }
- this.txtTimeEnd.DateValue = SDateTime.Now.ToString("yyyy-MM-dd");
- this.txtTimeStart.DateValue = SDateTime.Now.AddMonths(-1).ToString("yyyy-MM-dd");
- //获取项目名称
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACHBBCDBGJAJDF", this.cmbtreevItemName);
- // 获取二销类别
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACDAJDFDDEACGJ", this.cmbtreevConsumeType, StrWhere: "Sc_ClassCode!='BEBCADBFBCDFBGJHC' and Sc_ClassCode!='BEBCADBFBDDEGGABF' and Sc_ClassCode!='BEBCBFBICGDHCGBEJ'");
- // 部门人员绑定
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbtreevOpenPerson, IsFirstNodeNull: true, IsShowResign: false, IsShowAdmin: false);
- }
- /// <summary>
- /// 时间段点击
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void chkTime_Click(object sender, EventArgs e)
- {
- this.txtTimeStart.Enabled = this.chkTime.Checked;
- this.txtTimeEnd.Enabled = this.chkTime.Checked;
- }
- /// <summary>
- /// 确定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnOK_Click(object sender, EventArgs e)
- {
- if (this.chkTime.Checked)
- {
- if (string.IsNullOrEmpty(this.txtTimeStart.DateValue.Trim()) && !string.IsNullOrEmpty(this.txtTimeEnd.DateValue.Trim()))
- { MessageBoxCustom.Show("开始日期不能为空!"); return; }
- if (!string.IsNullOrEmpty(this.txtTimeStart.DateValue.Trim()) && string.IsNullOrEmpty(this.txtTimeEnd.DateValue.Trim()))
- { MessageBoxCustom.Show("结束日期不能为空!"); return; }
- this.DictDataArray["strTimeStart"] = this.txtTimeStart.DateValue.Trim();
- this.DictDataArray["strTimeEnd"] = this.txtTimeEnd.DateValue.Trim();
- }
- if (!string.IsNullOrEmpty(this.cmbtreevItemName.Text.Trim()))
- { this.DictDataArray["strItemName"] = this.cmbtreevItemName.Text.Trim(); }
- if (!string.IsNullOrEmpty(this.cmbtreevOpenPerson.Text.Trim()))
- { this.DictDataArray["strOpenPerson"] = this.cmbtreevOpenPerson.Tag.ToString().Trim(); }
- if (!string.IsNullOrEmpty(this.cmbtreevConsumeType.Text.Trim()))
- { this.DictDataArray["strConsumeType"] = this.cmbtreevConsumeType.Tag.ToString().Trim(); }
- if (this.chkIDPhotoPickupNot.Checked)
- { this.DictDataArray["strPickup"] = "0"; }
- else if (this.chkIDPhotoPickupOK.Checked)
- { this.DictDataArray["strPickup"] = "1"; }
- if (this.chkchkIDPhotoImportNot.Checked)
- { this.DictDataArray["strImport"] = "0"; }
- else if (this.chkchkIDPhotoImportOK.Checked)
- { this.DictDataArray["strImport"] = "1"; }
- this.IsSaveed = true;
- this.Close();
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnCancel_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|