Beispiel #1
0
        //获取绩效数据列表
        private void GetJXList()
        {
            int year, month;

            this.customMonthDate1.GetCurrentTimeDur(out year, out month);
            this.popupContainerEdit1.Text = string.Format("{0}-{1:D2}", year, month);
            OtherMainNetOperation.GetJXList(GetJXListResult, year, month);
        }
Beispiel #2
0
        //获取日志数据列表
        private void GetLogList()
        {
            StructPage.Builder page = new StructPage.Builder()
            {
                Pagebegin = this.pagebegin,
                Pagesize  = this.pageSize,
                Fieldname = 0,
                Order     = 0
            };
            string staff = "";

            if (this.comboBoxEdit1.SelectedIndex >= 0)
            {
                staff = this.staffs[this.comboBoxEdit1.SelectedIndex].Nickname;
            }
            string keyword = this.buttonEdit1.Text;

            OtherMainNetOperation.GetLogList(GetLogListResult, page.Build(), startTime, endTime, staff, keyword);
        }