Exemple #1
0
        private void grdBids_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            try
            {
                if (e.ColumnIndex == this.colReview.Index)
                {
                    gpApplyDetailWebDO obj = this.grdBids.CurrentRow.Tag as gpApplyDetailWebDO;

                    //object obj1 = bidEvaluationService.AuxiliaryAnalysis(this.sectionId);
                    //object obj2 = bidEvaluationService.PriceAnalysis(this.sectionId);
                    //object obj3 = bidEvaluationService.ConformanceContrastResult(this.sectionId);
                    //object obj4 = bidEvaluationService.EvaluationFactorsAnalysis(this.sectionId);
                    //object obj5 = bidEvaluationService.FileDifferenceResult(this.sectionId);
                    //object obj6 = bidEvaluationService.FileExceptionResult(this.sectionId);
                    //object obj7 = bidEvaluationService.AutomaticScoreResult(this.sectionId);

                    EOBReviewForm eOBReviewForm = new EOBReviewForm(obj);
                    eOBReviewForm.ShowDialog(this);
                    eOBReviewForm.Dispose();
                }
            }
            catch (Exception ex)
            {
                log.Error(ex);
                MetroMessageBox.Show(this, "操作失败!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
        public EOBReviewForm(gpApplyDetailWebDO gpApplyDetail)
        {
            InitializeComponent();

            this.gpApplyDetail = gpApplyDetail;
        }