示例#1
0
        private void txt_Zhidan_ButtonCustomClick(object sender, EventArgs e)
        {
            DateTime endTime   = new DateTime(dti_end.Value.Year, dti_end.Value.Month, dti_end.Value.Day, 23, 59, 59);
            DateTime beginTime = new DateTime(dti_begin.Value.Year, dti_begin.Value.Month, dti_begin.Value.Day, 00, 00, 00);

            List <string> strlist = new List <string>();

            strlist.Add("订单号");

            polist = cqb.selectOrderBll("selectzOrderAndSoftModel", "", "", beginTime, endTime);
            ConditionsQuery cq = new ConditionsQuery("订单号查询", strlist, polist, this);

            cq.ShowDialog();
        }
示例#2
0
        private void txt_SchoolPersonnel_ButtonCustomClick(object sender, EventArgs e)
        {
            List <string> strlist = new List <string>();

            strlist.Add("姓名");
            strlist.Add("公司名称");
            if (QueryList.Count > 0)
            {
                ConditionsQuery cq = new ConditionsQuery("录入人员姓名与所属公司", strlist, QueryList, this);
                cq.ShowDialog();
            }
            else
            {
                QueryList = psrb.selectConditionsQueryPStaffResumeBll2("selectConditionsQueryPStaffResume2");
                ConditionsQuery cq = new ConditionsQuery("录入人员姓名与所属公司", strlist, QueryList, this);
                cq.ShowDialog();
            }
        }
示例#3
0
        private void txt_Name_ButtonCustomClick(object sender, EventArgs e)
        {
            List <string> strlist = new List <string>();

            strlist.Add("姓名");
            strlist.Add("工号");
            if (QueryList.Count > 0)
            {
                ConditionsQuery cq = new ConditionsQuery("姓名工号查询", strlist, QueryList, this);
                cq.ShowDialog();
            }
            else
            {
                QueryList = psrb.selectConditionsQueryPStaffResumeBll("selectConditionsQueryPStaffResume");
                ConditionsQuery cq = new ConditionsQuery("姓名工号查询", strlist, QueryList, this);
                cq.ShowDialog();
            }
        }
示例#4
0
        private void txt_Zhidan_ButtonCustomClick(object sender, EventArgs e)
        {
            DateTime endTime   = new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day, DateTime.Now.Hour, DateTime.Now.Minute, DateTime.Now.Second);
            DateTime beginTime = new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day, 00, 00, 00);

            List <string> strlist = new List <string>();

            strlist.Add("订单号");
            if (polist.Count > 0)
            {
                ConditionsQuery cq = new ConditionsQuery("订单号查询", strlist, polist, this);
                cq.ShowDialog();
            }
            else
            {
                polist = cqb.selectOrderBll("selectzOrderAndSoftModel", "", "", beginTime, endTime);
                ConditionsQuery cq = new ConditionsQuery("订单号查询", strlist, polist, this);
                cq.ShowDialog();
            }
        }