コード例 #1
0
ファイル: VanBan_DongBo.aspx.cs プロジェクト: NhatPG/YKCD
        protected override void GetDataList()
        {
            ExchangeDocServiceSoapClient client = new ExchangeDocServiceSoapClient();

            client.Endpoint.Address = new EndpointAddress(AppSettings.HSCV_Service);

            if (ChiLayVbCaNhan.Checked)
            {
                BaseCollection = client.GetVBDiHasIdeaLeader(TuNgay.Text.ToDateTime(), DenNgay.Text.ToDateTime())
                                 .Where(item => item.NguoiSoanThao != null && item.NguoiSoanThao.ToUnsign().ToUpper().Equals(Sessions.DisplayName.ToUnsign().ToUpper()))
                                 .Where(item => DocumentServices.GetByVbdhCode(item.MaVBDi) == null)
                                 .ToList();
            }
            else
            {
                BaseCollection = client.GetVBDiHasIdeaLeader(TuNgay.Text.ToDateTime(), DenNgay.Text.ToDateTime())
                                 .Where(item => DocumentServices.GetByVbdhCode(item.MaVBDi) == null)
                                 .ToList();
            }
        }
コード例 #2
0
        protected override void GetDataList()
        {
            ExchangeDocServiceSoapClient client = new ExchangeDocServiceSoapClient();

            client.Endpoint.Address = new EndpointAddress(AppSettings.HSCV_Service);

            BaseCollection = client.GetVBDiHasIdeaLeader(DateTime.Now.AddDays(-30), DateTime.Now)
                             ?.Where(item => !string.IsNullOrEmpty(item.NguoiSoanThao) && item.NguoiSoanThao.ToUnsign().ToUpper().Equals(Sessions.DisplayName.ToUnsign().ToUpper()))
                             ?.Where(item => DocumentServices.GetByVbdhCode(item.MaVBDi) == null)
                             ?.ToList();
        }
コード例 #3
0
ファイル: BaoCao_QuanLy.aspx.cs プロジェクト: NhatPG/YKCD
        protected override void BindValueToPageControls()
        {
            var request = RequestServices.GetById(Parameters.Pid);

            ThucHien.Items.Clear();

            if (request.Performs?.Count > 0)
            {
                foreach (var perform in request.Performs)
                {
                    ThucHien.AddSelectItem(perform.DepartmentID > 0 ? perform.Department.DepartmentName : perform.User.FullName, perform.PerformID.ToString());
                }
            }
            else if (request.IsProvinceRequest)
            {
                ThucHien.Items.Add(new ListItem(text: AppSettings.AGENCY_NAME, value: ""));
            }

            //Hiển thị ô chọn văn bản có ý kiến chỉ đạo nếu đây là YKCD của UBND tỉnh và có dữ liệu ở HSCV Service
            if (!string.IsNullOrEmpty(AppSettings.HSCV_Service) && request.IsProvinceRequest && AppSettings.IS_USE_SYNC_DOCUMENT_REPORT)
            {
                ExchangeDocServiceSoapClient client = new ExchangeDocServiceSoapClient();
                client.Endpoint.Address = new EndpointAddress(AppSettings.HSCV_Service);

                var syncDocs = client.GetVBDiHasIdeaLeader(DateTime.Now.AddDays(-7), DateTime.Now);

                if (syncDocs != null && syncDocs.Length > 0)
                {
                    VanBanDaBaoCaoGroup.Visible = true;

                    VanBanDaBaoCao.Items.Clear();

                    foreach (var item in syncDocs)
                    {
                        VanBanDaBaoCao.AddSelectItem($"{item.SoKyHieu} ({item.TrichYeu})", item.MaVBDi);
                    }

                    VanBanDaBaoCao.AddSelectItem("Chọn văn bản báo cáo", "");
                }
            }
        }