Ejemplo n.º 1
0
        public FileMergeResult MergeCMCorporateFinance(SqlConnection con, long cmId, string foldertemplate, string temporaryFolderLocation)
        {
            DBHelper db = new DBHelper();

            List <CMData> dataResult = db.ExecToModel <CMData>(con, "dbo.Generate_Document_CM_Data_SP", CommandType.StoredProcedure, new List <SqlParameter> {
                this.NewSqlParameter("@Id", SqlDbType.BigInt, cmId)
            });

            System.Data.DataTable listBorrower = db.ExecToDataTable(con, "Generate_Document_CM_Borrower_SP", CommandType.StoredProcedure, new List <SqlParameter> {
                this.NewSqlParameter("@Id", SqlDbType.BigInt, cmId)
            });

            System.Data.DataTable listFacility = db.ExecToDataTable(con, "Generate_Document_CM_ProposalFacility_SP", CommandType.StoredProcedure, new List <SqlParameter> {
                this.NewSqlParameter("@Id", SqlDbType.BigInt, cmId)
            });

            System.Data.DataTable listDealTeam = db.ExecToDataTable(con, "Generate_Document_CM_DealTeam_SP", CommandType.StoredProcedure, new List <SqlParameter> {
                this.NewSqlParameter("@Id", SqlDbType.BigInt, cmId)
            });

            string fileName    = "CM-" + dataResult[0].ProductType + "-" + dataResult[0].CompanyName + "-" + dataResult[0].ProjectCode + ".docx";
            string fileNamePDF = "CM-" + dataResult[0].ProductType + "-" + dataResult[0].CompanyName + "-" + dataResult[0].ProjectCode + ".pdf";

            string fileTemplateName     = "CM Template - Corporate Finance.docx";
            string fileTemplateFullName = foldertemplate.AppendPath("\\", fileTemplateName);

            string getfileName = Path.GetFileName(fileTemplateFullName);
            string destFile    = Path.Combine(temporaryFolderLocation, fileName);

            File.Copy(fileTemplateFullName, destFile, true);

            object      missing  = System.Reflection.Missing.Value;
            object      readOnly = (object)false;
            Application app      = new Application();

            string currFontFamily = "";
            float  currFontSize   = 0;

            try
            {
                Document doc = app.Documents.Open(destFile, ref missing, ref readOnly);
                app.Visible = false;
                try
                {
                    #region Cover
                    Range reviewMemo = app.ActiveDocument.Bookmarks["bmReview"].Range;
                    reviewMemo.Text      = dataResult[0].ReviewMemo;
                    reviewMemo.Font.Name = "Roboto Light";
                    Range cmNumber = app.ActiveDocument.Bookmarks["bmCMnumber"].Range;
                    //cmNumber.Text = dataResult[0].c;
                    cmNumber.Font.Name = "Roboto Light";
                    Range projCompanyName = app.ActiveDocument.Bookmarks["bmCompanyName"].Range;
                    projCompanyName.Text      = dataResult[0].CompanyName;
                    projCompanyName.Font.Name = "Roboto Light";
                    Range projName = app.ActiveDocument.Bookmarks["bmProjectName"].Range;
                    projName.Text      = dataResult[0].ProjectName;
                    projName.Font.Name = "Roboto Light";
                    Range projCode = app.ActiveDocument.Bookmarks["bmProjectCode"].Range;
                    projCode.Text      = dataResult[0].ProjectCode;
                    projCode.Font.Name = "Roboto Light";
                    Range projDate = app.ActiveDocument.Bookmarks["bmProjectDate"].Range;
                    projDate.Text      = dataResult[0].CMDate.ToString("dd-MMMM-yyyy");
                    projDate.Font.Name = "Roboto Light";
                    #endregion

                    #region PROJECT
                    Range project    = app.ActiveDocument.Bookmarks["bmProject"].Range;
                    Table tblproject = app.ActiveDocument.Tables.Add(project, 4, 2, WdDefaultTableBehavior.wdWord9TableBehavior);
                    tblproject.Range.Font.Name = currFontFamily = "Roboto Light";
                    tblproject.Range.Font.Size = currFontSize = 10;
                    tblproject.set_Style("Table Grid");

                    tblproject.Columns[1].SetWidth(130, WdRulerStyle.wdAdjustFirstColumn);
                    tblproject.Cell(1, 1).Range.Text = "Project Name";
                    //tblproject.Cell(1, 2).Range.Text = dataResult[0].ProjectDescription.ToString();
                    tblproject.Cell(1, 2).Range.Text = "-";
                    tblproject.Cell(2, 1).Range.Text = "Sector – Sub sector";
                    tblproject.Cell(2, 2).Range.Text = dataResult[0].SubSector + " " + dataResult[0].SubSector;
                    tblproject.Cell(3, 1).Range.Text = "Funding Needs";
                    tblproject.Cell(3, 2).Range.InsertFile(ConvertHtmlAndFile.SaveToHtmlNew(dataResult[0].FundingNeeds, currFontFamily, currFontSize));
                    tblproject.Cell(4, 1).Range.Text = "Deal Strategy";
                    tblproject.Cell(4, 2).Range.InsertFile(ConvertHtmlAndFile.SaveToHtmlNew(dataResult[0].DealStrategy, currFontFamily, currFontSize));
                    #endregion

                    #region BORROWER
                    Range borrower    = app.ActiveDocument.Bookmarks["bmBorrower"].Range;
                    Table tblborrower = app.ActiveDocument.Tables.Add(borrower, 3, 5, WdDefaultTableBehavior.wdWord9TableBehavior);
                    int   rowCount    = 3;
                    tblborrower.Range.Font.Name = currFontFamily = "Roboto Light";
                    tblborrower.Range.Font.Size = currFontSize = 10;
                    tblborrower.set_Style("Table Grid");
                    tblborrower.AutoFitBehavior(WdAutoFitBehavior.wdAutoFitWindow);
                    tblborrower.Columns[1].SetWidth(app.InchesToPoints(1.6f / 2.54f), WdRulerStyle.wdAdjustNone);

                    tblborrower.Cell(1, 1).Range.Text = "Project Company";
                    tblborrower.Cell(1, 2).Merge(tblborrower.Cell(1, 5));

                    tblborrower.Cell(2, 1).Range.Text = "Project Sponsors";
                    tblborrower.Cell(2, 1).Range.Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;

                    tblborrower.Cell(2, 2).Range.Text = "Project Company";
                    tblborrower.Cell(2, 2).Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblborrower.Cell(2, 2).Range.Shading.BackgroundPatternColor = WdColor.wdColorGray10;

                    tblborrower.Cell(2, 3).Merge(tblborrower.Cell(2, 4));
                    tblborrower.Cell(2, 3).Range.Text = "Shareholders";
                    tblborrower.Cell(2, 3).Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblborrower.Cell(2, 3).Range.Shading.BackgroundPatternColor = WdColor.wdColorGray10;

                    tblborrower.Cell(2, 4).Range.Text = "% ownership";
                    tblborrower.Cell(2, 4).Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblborrower.Cell(2, 4).Range.Shading.BackgroundPatternColor = WdColor.wdColorGray10;

                    int rowtemp = 0;

                    string prevkey  = "";
                    string cellText = "";

                    foreach (DataRow item in listBorrower.Rows)
                    {
                        prevkey = item[0].ToString() + "\r\a";
                        if (cellText != prevkey)
                        {
                            tblborrower.Rows[rowCount].Cells[2].Range.Text = item[0].ToString();
                            cellText = tblborrower.Rows[rowCount].Cells[2].Range.Text;
                            tblborrower.Cell(1, 2).Range.Text = item[0].ToString() + " ";
                        }

                        tblborrower.Rows.Add(ref missing);
                        tblborrower.Rows[rowCount].Cells[1].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                        tblborrower.Rows[rowCount].Cells[3].Range.Text = item[1].ToString();
                        tblborrower.Rows[rowCount].Cells[5].Range.Text = item[2].ToString();
                        rowCount++;
                    }

                    rowCount++;
                    tblborrower.Rows.Add(ref missing);
                    tblborrower.Rows[rowCount].Cells[1].Range.Text = "Ultimate Beneficial Owner";
                    tblborrower.Rows[rowCount].Cells[1].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleSingle;
                    tblborrower.Rows[rowCount].Cells[1].Borders[WdBorderType.wdBorderTop].LineStyle    = WdLineStyle.wdLineStyleSingle;
                    tblborrower.Rows[rowCount].Cells[2].Range.Text = dataResult[0].UltimateBeneficialOwner;
                    rowtemp = rowCount;

                    rowCount++;
                    tblborrower.Rows.Add(ref missing);
                    tblborrower.Rows[rowCount].Cells[1].Range.Text = "Rating";
                    tblborrower.Rows[rowCount].Cells[1].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleSingle;
                    tblborrower.Rows[rowCount].Cells[1].Borders[WdBorderType.wdBorderTop].LineStyle    = WdLineStyle.wdLineStyleSingle;
                    tblborrower.Rows[rowCount].Cells[2].Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblborrower.Rows[rowCount].Cells[2].Range.Shading.BackgroundPatternColor = WdColor.wdColorGray10;
                    tblborrower.Rows[rowCount].Cells[2].Range.Text = "IIF Rating";
                    tblborrower.Rows[rowCount].Cells[3].Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblborrower.Rows[rowCount].Cells[3].Range.Shading.BackgroundPatternColor = WdColor.wdColorGray10;
                    tblborrower.Rows[rowCount].Cells[3].Range.Text = "External Rating";
                    tblborrower.Rows[rowCount].Cells[4].Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblborrower.Rows[rowCount].Cells[4].Range.Shading.BackgroundPatternColor = WdColor.wdColorGray10;
                    tblborrower.Rows[rowCount].Cells[4].Range.Text = "S&E Category";
                    tblborrower.Rows[rowCount].Cells[5].Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblborrower.Rows[rowCount].Cells[5].Range.Shading.BackgroundPatternColor = WdColor.wdColorGray10;
                    tblborrower.Rows[rowCount].Cells[5].Range.Text = "LQC/BI Checking";

                    //merge column Ultimate Beneficial Owner
                    tblborrower.Rows[rowtemp].Cells[2].Merge(tblborrower.Rows[rowtemp].Cells[5]);

                    rowCount++;
                    tblborrower.Rows.Add(ref missing);
                    tblborrower.Rows[rowCount].Cells[2].Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblborrower.Rows[rowCount].Cells[2].Range.Shading.BackgroundPatternColor = WdColor.wdColorWhite;
                    tblborrower.Rows[rowCount].Cells[3].Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblborrower.Rows[rowCount].Cells[3].Range.Shading.BackgroundPatternColor = WdColor.wdColorWhite;
                    tblborrower.Rows[rowCount].Cells[4].Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblborrower.Rows[rowCount].Cells[4].Range.Shading.BackgroundPatternColor = WdColor.wdColorWhite;
                    tblborrower.Rows[rowCount].Cells[5].Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblborrower.Rows[rowCount].Cells[5].Range.Shading.BackgroundPatternColor = WdColor.wdColorWhite;

                    tblborrower.Rows[rowCount].Cells[2].Range.Text = "";
                    tblborrower.Rows[rowCount].Cells[3].Range.Text = "S&P: ";
                    tblborrower.Rows[rowCount].Cells[4].Range.Text = "";
                    tblborrower.Rows[rowCount].Cells[5].Range.Text = "";
                    tblborrower.Rows[rowCount].Cells[1].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[2].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[3].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[4].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[5].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;

                    rowCount++;
                    tblborrower.Rows.Add(ref missing);
                    tblborrower.Rows[rowCount].Cells[2].Range.Text = "Rating Date: " + Convert.ToDateTime(dataResult[0].IIFRatingDate).ToString("dd MMM yyyy");
                    tblborrower.Rows[rowCount].Cells[3].Range.Text = "Moodys: " + dataResult[0].MoodysRate;
                    tblborrower.Rows[rowCount].Cells[1].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[2].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[3].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[4].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[5].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;

                    rowCount++;
                    tblborrower.Rows.Add(ref missing);
                    tblborrower.Rows[rowCount].Cells[3].Range.Text = "Fitch: " + dataResult[0].FitchRate;
                    tblborrower.Rows[rowCount].Cells[1].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[2].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[3].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[4].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[5].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;

                    rowCount++;
                    tblborrower.Rows.Add(ref missing);
                    tblborrower.Rows[rowCount].Cells[3].Range.Text = "Pefindo: " + dataResult[0].PefindoRate;

                    rowCount++;
                    tblborrower.Rows.Add(ref missing);
                    tblborrower.Rows[rowCount].Cells[1].Range.Text = "Other information";
                    tblborrower.Rows[rowCount].Cells[2].Merge(tblborrower.Rows[rowCount].Cells[5]);
                    //tblborrower.Rows[rowCount].Cells[2].Range.Text = dataResult[0].OtherInformation;
                    tblborrower.Rows[rowCount].Cells[2].Range.InsertFile(ConvertHtmlAndFile.SaveToHtmlNew(dataResult[0].OtherInformation, currFontFamily, currFontSize));
                    tblborrower.Rows[rowCount].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleSingle;
                    #endregion

                    #region FACILITY
                    Range proposal    = app.ActiveDocument.Bookmarks["bmFacility"].Range;
                    Table tblProposal = app.ActiveDocument.Tables.Add(proposal, 3, 5, WdDefaultTableBehavior.wdWord9TableBehavior);
                    tblProposal.AutoFitBehavior(WdAutoFitBehavior.wdAutoFitWindow);
                    tblProposal.Range.Font.Name = "Roboto Light";
                    tblProposal.Range.Font.Size = 10;
                    tblProposal.set_Style("Table Grid");
                    tblProposal.Columns[1].SetWidth(app.InchesToPoints(1.8f / 2.54f), WdRulerStyle.wdAdjustNone);
                    int rowcount = 2;

                    tblProposal.Cell(1, 1).Range.Text = "Purpose";
                    tblProposal.Cell(1, 2).Merge(tblProposal.Cell(1, 3));
                    tblProposal.Cell(1, 2).Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].Purpose));

                    tblProposal.Cell(2, 1).Range.Text = "Approval Authority";
                    tblProposal.Cell(2, 2).Merge(tblProposal.Cell(2, 3));
                    tblProposal.Cell(2, 2).Range.Text = dataResult[0].ApprovalAuhority;

                    tblProposal.Cell(3, 1).Range.Text = "Facility";
                    tblProposal.Cell(3, 2).Shading.BackgroundPatternColor  = WdColor.wdColorGray10;
                    tblProposal.Cell(3, 2).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblProposal.Cell(3, 2).Range.Text = "Type";
                    tblProposal.Cell(3, 3).Shading.BackgroundPatternColor  = WdColor.wdColorGray10;
                    tblProposal.Cell(3, 3).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblProposal.Cell(3, 3).Range.Text = "Approved";
                    tblProposal.Cell(3, 4).Shading.BackgroundPatternColor  = WdColor.wdColorGray10;
                    tblProposal.Cell(3, 4).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblProposal.Cell(3, 4).Range.Text = "Proposed";
                    tblProposal.Cell(3, 5).Shading.BackgroundPatternColor  = WdColor.wdColorGray10;
                    tblProposal.Cell(3, 5).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblProposal.Cell(3, 5).Range.Text = "Outstanding";

                    foreach (DataRow item in listFacility.Rows)
                    {
                        tblProposal.Rows.Add(ref missing);
                        rowcount++;
                        tblProposal.Rows[rowcount].Cells[2].Range.Text = item[0].ToString();
                        tblProposal.Rows[rowcount].Cells[3].Range.Text = item[1].ToString() + " " + item[2].ToString();
                        tblProposal.Rows[rowcount].Cells[4].Range.Text = item[3].ToString() + " " + item[4].ToString();
                        tblProposal.Rows[rowcount].Cells[5].Range.Text = item[5].ToString() + " " + item[6].ToString();
                    }

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[1].Range.Text = "Group Exposure";
                    tblProposal.Rows[rowcount].Cells[2].Range.Text = dataResult[0].GroupExposureCurr + dataResult[0].GroupExposureAmount;

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[1].Range.Text = "Remarks";
                    tblProposal.Rows[rowcount].Cells[2].Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].Remarks));

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[1].Range.Text = "Tenor";
                    tblProposal.Rows[rowcount].Cells[2].Range.Text = dataResult[0].TenorYear + " year(s)  " + dataResult[0].TenorMonth + " month(s)";

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[1].Range.Text = "Average Loan Life";
                    tblProposal.Rows[rowcount].Cells[2].Range.Text = dataResult[0].AverageLoanLifeYear + " year(s)  " + dataResult[0].AverageLoanLifeMonth + " month(s)";

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[1].Range.Text = "Pricing";
                    tblProposal.Rows[rowcount].Cells[2].Range.Text = "Interest rate";
                    tblProposal.Rows[rowcount].Cells[3].Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].PricingInterestRate));

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[2].Range.Text = "Commitment Fee";
                    tblProposal.Rows[rowcount].Cells[3].Range.Text = dataResult[0].PricingCommitmentFee;

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[2].Range.Text = "Upfront Fee";
                    tblProposal.Rows[rowcount].Cells[3].Range.Text = dataResult[0].PricingUpfrontFacilityFee;

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[2].Range.Text = "Structuring Fee";
                    tblProposal.Rows[rowcount].Cells[3].Range.Text = dataResult[0].PricingStructuringFee;

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[2].Range.Text = "Arranger Fee";
                    tblProposal.Rows[rowcount].Cells[3].Range.Text = dataResult[0].PricingArrangerFee;

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[1].Range.Text = "Collateral";
                    tblProposal.Rows[rowcount].Cells[2].Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].PricingCollateral));

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[1].Range.Text = "Other Conditions";
                    tblProposal.Rows[rowcount].Cells[2].Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].PricingOtherConditions));

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[1].Range.Text = "Limit Compliance";
                    tblProposal.Cell(rowcount, 2).Shading.BackgroundPatternColor  = WdColor.wdColorGray10;
                    tblProposal.Cell(rowcount, 2).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblProposal.Rows[rowcount].Cells[2].Range.Text = "IDR  million, as of xx1] ";
                    tblProposal.Cell(rowcount, 3).Shading.BackgroundPatternColor  = WdColor.wdColorGray10;
                    tblProposal.Cell(rowcount, 3).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblProposal.Rows[rowcount].Cells[3].Range.Text = "Max Limit";
                    tblProposal.Cell(rowcount, 4).Shading.BackgroundPatternColor  = WdColor.wdColorGray10;
                    tblProposal.Cell(rowcount, 4).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblProposal.Rows[rowcount].Cells[4].Range.Text = "Proposed";
                    tblProposal.Cell(rowcount, 5).Shading.BackgroundPatternColor  = WdColor.wdColorGray10;
                    tblProposal.Cell(rowcount, 5).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblProposal.Rows[rowcount].Cells[5].Range.Text = "Remarks";

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[2].Range.Text = "Single Project Exposure limit";
                    //tblProposal.Columns[rowcount].Shading.BackgroundPatternColor = WdColor.wdColorWhite;
                    tblProposal.Cell(rowcount, 2).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblProposal.Rows[rowcount].Cells[3].Range.Text = Convert.ToString(dataResult[0].FacilityLimitComplianceSingleProjectExposureMaxLimit);
                    tblProposal.Cell(rowcount, 3).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblProposal.Rows[rowcount].Cells[4].Range.Text = Convert.ToString(dataResult[0].FacilityLimitComplianceSingleProjectExposureProposed);
                    tblProposal.Cell(rowcount, 4).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblProposal.Rows[rowcount].Cells[5].Range.Text = dataResult[0].SingleProjectExposureRemarks;
                    tblProposal.Cell(rowcount, 5).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[2].Range.Text = "Product";
                    tblProposal.Cell(rowcount, 2).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblProposal.Rows[rowcount].Cells[3].Range.Text = Convert.ToString(dataResult[0].FacilityLimitComplianceProductMaxLimit);
                    tblProposal.Cell(rowcount, 3).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblProposal.Rows[rowcount].Cells[4].Range.Text = Convert.ToString(dataResult[0].FacilityLimitComplianceProductProposed);
                    tblProposal.Cell(rowcount, 4).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblProposal.Rows[rowcount].Cells[5].Range.Text = dataResult[0].ProductRemarks;
                    tblProposal.Cell(rowcount, 5).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[2].Range.Text = "Risk Rating";
                    tblProposal.Cell(rowcount, 2).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblProposal.Rows[rowcount].Cells[3].Range.Text = Convert.ToString(dataResult[0].FacilityLimitComplianceRiskRatingMaxLimit);
                    tblProposal.Cell(rowcount, 3).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblProposal.Rows[rowcount].Cells[4].Range.Text = Convert.ToString(dataResult[0].FacilityLimitComplianceRiskRatingProposed);
                    tblProposal.Cell(rowcount, 4).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblProposal.Rows[rowcount].Cells[5].Range.Text = dataResult[0].RiskRatingRemarks;
                    tblProposal.Cell(rowcount, 5).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[2].Range.Text = "Group Exposure Limit";
                    tblProposal.Cell(rowcount, 2).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblProposal.Rows[rowcount].Cells[3].Range.Text = Convert.ToString(dataResult[0].FacilityLimitComplianceGrupExposureMaxLimit);
                    tblProposal.Cell(rowcount, 3).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblProposal.Rows[rowcount].Cells[4].Range.Text = Convert.ToString(dataResult[0].FacilityLimitComplianceGrupExposureProposed);
                    tblProposal.Cell(rowcount, 4).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblProposal.Rows[rowcount].Cells[5].Range.Text = dataResult[0].GrupExposureRemarks;
                    tblProposal.Cell(rowcount, 5).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[2].Range.Text = "Sector exposure";
                    tblProposal.Cell(rowcount, 2).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblProposal.Rows[rowcount].Cells[3].Range.Text = Convert.ToString(dataResult[0].FacilityLimitComplianceSectorExposureMaxLimit);
                    tblProposal.Cell(rowcount, 3).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblProposal.Rows[rowcount].Cells[4].Range.Text = Convert.ToString(dataResult[0].FacilityLimitComplianceSectorExposureProposed);
                    tblProposal.Cell(rowcount, 4).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblProposal.Rows[rowcount].Cells[5].Range.Text = dataResult[0].SectorExposureRemarks;
                    tblProposal.Cell(rowcount, 5).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[1].Range.Text = "Exception to IIF Policy";
                    tblProposal.Rows[rowcount].Cells[2].Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].PricingExceptionToIIFPolicy));

                    rowcount++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcount].Cells[1].Range.Text = "Review Period";
                    tblProposal.Rows[rowcount].Cells[2].Range.Text = dataResult[0].ProposalReviewPeriod;
                    #endregion

                    #region D.Recommendation
                    Range     keyInvestment = app.ActiveDocument.Bookmarks["bmRecommendation"].Range;
                    Paragraph paragraph     = doc.Content.Paragraphs.Add(keyInvestment);
                    paragraph.Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].KeyInvestmentRecommendation));

                    Range recommendation = app.ActiveDocument.Bookmarks["bmRecommendation"].Range;
                    paragraph.Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].Recommendation));

                    Range accountResponsible    = app.ActiveDocument.Bookmarks["bmRecommendation"].Range;
                    Table tblAccountResponsible = app.ActiveDocument.Tables.Add(accountResponsible, 1, 3, WdDefaultTableBehavior.wdWord9TableBehavior);
                    tblAccountResponsible.Range.Font.Name = "Roboto Light";
                    tblAccountResponsible.Range.Font.Size = 10;
                    tblAccountResponsible.set_Style("Table Grid");
                    tblAccountResponsible.Columns[1].SetWidth(130, WdRulerStyle.wdAdjustFirstColumn);
                    tblAccountResponsible.AutoFitBehavior(WdAutoFitBehavior.wdAutoFitWindow);

                    tblAccountResponsible.Cell(1, 1).Range.Text = "Account Responsible";
                    tblAccountResponsible.Cell(1, 2).Range.Text = "Deal Team";
                    tblAccountResponsible.Cell(1, 2).Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblAccountResponsible.Cell(1, 2).Range.Shading.BackgroundPatternColor = WdColor.wdColorGray10;
                    tblAccountResponsible.Cell(1, 3).Range.Text = "CIO";
                    tblAccountResponsible.Cell(1, 3).Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblAccountResponsible.Cell(1, 3).Range.Shading.BackgroundPatternColor = WdColor.wdColorGray10;

                    int rowCountDealTeam = 1;
                    foreach (DataRow item in listDealTeam.Rows)
                    {
                        rowCountDealTeam++;
                        tblAccountResponsible.Rows.Add(ref missing);

                        tblAccountResponsible.Rows[rowCountDealTeam].Cells[2].Shading.BackgroundPatternColor  = WdColor.wdColorWhite;
                        tblAccountResponsible.Rows[rowCountDealTeam].Cells[2].Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                        tblAccountResponsible.Rows[rowCountDealTeam].Cells[3].Shading.BackgroundPatternColor  = WdColor.wdColorWhite;
                        tblAccountResponsible.Rows[rowCountDealTeam].Cells[3].Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                        tblAccountResponsible.Rows[rowCountDealTeam].Cells[2].Range.Text = item[0].ToString();
                        if (rowCountDealTeam <= 2)
                        {
                            tblAccountResponsible.Rows[rowCountDealTeam].Cells[3].Range.Text = dataResult[0].AccountResponsibleCIOName;
                        }
                    }
                    #endregion

                    #region Attachment
                    this.FillBookmarkWithCMAttachmentType1(app, con, "bmPeriodicReview", AppConstants.TableName.CM_PeriodicReview, cmId);
                    this.FillBookmarkWithCMAttachmentType1(app, con, "bmPreviousApproval", AppConstants.TableName.CM_PreviousApprovals, cmId);
                    this.FillBookmarkWithCMAttachmentType1(app, con, "bmRiskRating", AppConstants.TableName.CM_RiskRating, cmId);
                    this.FillBookmarkWithCMAttachmentType1(app, con, "bmKYCchecklist", AppConstants.TableName.CM_KYCChecklists, cmId);
                    this.FillBookmarkWithCMAttachmentType1(app, con, "bmSAndEReview", AppConstants.TableName.CM_SAndEReview, cmId);
                    this.FillBookmarkWithCMAttachmentType1(app, con, "bmOtherbankFacilities", AppConstants.TableName.CM_OtherBanksFacilities, cmId);
                    this.FillBookmarkWithCMAttachmentType1(app, con, "bmOtherAttachment", AppConstants.TableName.CM_OtherAttachment, cmId);
                    #endregion

                    doc.PageSetup.PaperSize = WdPaperSize.wdPaperA4;
                    //doc.SaveAs2(Path.Combine(temporaryFolderLocation, fileNamePDF), WdExportFormat.wdExportFormatPDF);
                    doc.SaveAs2(Path.Combine(temporaryFolderLocation, fileName));
                }
                finally
                {
                    doc.Close(WdSaveOptions.wdDoNotSaveChanges);
                }
            }
            finally
            {
                app.Quit();
            }

            //File.Delete(destFile);
            //string destFilePDF = Path.Combine(temporaryFolderLocation, fileNamePDF);
            //byte[] fileContent = File.ReadAllBytes(destFilePDF);

            FileMergeResult result = new FileMergeResult();
            //result.FileContent = fileContent;
            //result.FileName = fileNamePDF;
            return(result);
        }
Ejemplo n.º 2
0
        protected void FillBookmarkWithPAMAttachmentNormal(Application app, SqlConnection con, string bookmarkName, string tableName, long pamId)
        {
            this.Logger.Info(tableName);

            object missing           = System.Reflection.Missing.Value;
            object confirmConversion = true;

            object Normal = "Normal";

            string query = "SELECT ";

            query = query + " Attachment";
            query = query + " FROM " + tableName;
            query = query + " WHERE PAMId = @PAMId";
            query = query + " ORDER BY OrderNumber DESC";

            using (SqlCommand cmd = con.CreateCommand())
            {
                cmd.CommandType = CommandType.Text;
                cmd.CommandText = query;
                cmd.Parameters.Add(this.NewSqlParameter("PAMId", SqlDbType.BigInt, pamId));

                Range rangeBookmark = app.ActiveDocument.Bookmarks[bookmarkName].Range;

                using (SqlDataReader dr = cmd.ExecuteReader())
                {
                    while (dr.Read())
                    {
                        string fileContent = dr.GetNullableString(0);
                        if (fileContent != null)
                        {
                            string htmlResult = ConvertHtmlAndFile.SaveToFile(fileContent);

                            try
                            {
                                //htmlResult = @"C:\Project\IIF\IIF\landscape.docx";
                                //string htmlResult = @"C:\Project\IIF\landscape.docx";

                                Application app2           = new Application();
                                Document    sourceDocument = app2.Documents.Open(htmlResult);
                                object      start          = sourceDocument.Content.Start;
                                object      end            = sourceDocument.Content.End;
                                Microsoft.Office.Interop.Word.Range myRange = sourceDocument.Range(ref start, ref end);
                                myRange.Select();
                                //myRange.set_Style(ref Normal);

                                myRange.Find.ClearFormatting();
                                myRange.Find.ClearAllFuzzyOptions();
                                myRange.Find.Highlight = 1;
                                myRange.Find.Replacement.ClearFormatting();
                                myRange.Find.Replacement.Text = "";
                                myRange.Find.Wrap             = Microsoft.Office.Interop.Word.WdFindWrap.wdFindContinue;
                                myRange.Find.Execute(Replace: Microsoft.Office.Interop.Word.WdReplace.wdReplaceAll);

                                sourceDocument.Save();
                                sourceDocument.Close(WdSaveOptions.wdSaveChanges);
                                app2.Quit();

                                rangeBookmark.InsertFile(htmlResult);
                            }
                            catch (Exception ex)
                            {
                                throw ex;
                            }
                            finally
                            {
                                File.Delete(htmlResult);
                            }
                        }
                    }
                }
            }
        }
Ejemplo n.º 3
0
        public FileMergeResult MergePAMCorporateFinance(SqlConnection con, long pamId, string foldertemplate, string temporaryFolderLocation)
        {
            DBHelper db = new DBHelper();

            List <PAMData> dataResult = db.ExecToModel <PAMData>(con, "dbo.Generate_Document_PAM_Data_SP", CommandType.StoredProcedure, new List <SqlParameter> {
                this.NewSqlParameter("@Id", SqlDbType.BigInt, pamId)
            });

            System.Data.DataTable listBorrower = db.ExecToDataTable(con, "Generate_Document_PAM_Borrower_SP", CommandType.StoredProcedure, new List <SqlParameter> {
                this.NewSqlParameter("@Id", SqlDbType.BigInt, pamId)
            });

            System.Data.DataTable listFacility = db.ExecToDataTable(con, "Generate_Document_PAM_ProposalFacility_SP", CommandType.StoredProcedure, new List <SqlParameter> {
                this.NewSqlParameter("@Id", SqlDbType.BigInt, pamId)
            });

            System.Data.DataTable listDealTeam = db.ExecToDataTable(con, "Generate_Document_PAM_DealTeam_SP", CommandType.StoredProcedure, new List <SqlParameter> {
                this.NewSqlParameter("@Id", SqlDbType.BigInt, pamId)
            });

            string fileName = "PAM-" + dataResult[0].ProductType + "-" + dataResult[0].ProjectCompanyName + "-" + dataResult[0].ProjectCode + ".docx";

            string fileNamePDF          = "PAM-" + dataResult[0].ProductType + "-" + dataResult[0].ProjectCompanyName + "-" + dataResult[0].ProjectCode + ".pdf";
            string fileTemplateName     = "PAM Template - Corporate Finance.docx";
            string fileTemplateFullName = foldertemplate.AppendPath("\\", fileTemplateName);

            string getfileName = Path.GetFileName(fileTemplateFullName);
            string destFile    = Path.Combine(temporaryFolderLocation, fileName);

            File.Copy(fileTemplateFullName, destFile, true);

            object      missing  = System.Reflection.Missing.Value;
            object      readOnly = (object)false;
            Application app      = new Application();

            try
            {
                Document doc = app.Documents.Open(destFile, ref missing, ref readOnly);
                app.Visible = false;
                try
                {
                    #region header & Footer
                    //doc.ActiveWindow.ActivePane.View.SeekView = WdSeekView.wdSeekCurrentPageFooter;
                    //Object oMissing = System.Reflection.Missing.Value;
                    //doc.ActiveWindow.Selection.TypeText("Review Memorandum – Project Finance");
                    //Object TotalPages = WdFieldType.wdFieldNumPages;
                    //Object CurrentPage = WdFieldType.wdFieldPage;
                    //doc.ActiveWindow.Selection.TypeText("\t\t");
                    //doc.ActiveWindow.Selection.Fields.Add(doc.ActiveWindow.Selection.Range, ref CurrentPage, ref oMissing, ref oMissing);
                    #endregion

                    #region Cover
                    this.SetBookmarkText(app, "BorrowerName", dataResult[0].ProjectCompanyName);
                    this.SetBookmarkText(app, "ProjectName", dataResult[0].ProjectName);
                    this.SetBookmarkText(app, "ProjectCode", dataResult[0].ProjectCode);
                    this.SetBookmarkText(app, "ProjectDate", dataResult[0].PAMDate.ToString("dd-MMMM-yyyy"));

                    #endregion

                    #region A.Project
                    Range project    = app.ActiveDocument.Bookmarks["ExecutiveSummary"].Range;
                    Table tblproject = app.ActiveDocument.Tables.Add(project, 4, 2, WdDefaultTableBehavior.wdWord9TableBehavior);
                    tblproject.Range.Font.Name = "Roboto Light";
                    tblproject.Range.Font.Size = 10;
                    tblproject.set_Style("Table Grid");

                    tblproject.Columns[1].SetWidth(120, WdRulerStyle.wdAdjustFirstColumn);
                    tblproject.Cell(1, 1).Range.Text = "Borrower Name";
                    tblproject.Cell(1, 2).Range.Text = dataResult[0].ProjectCompanyName.ToString();
                    tblproject.Cell(2, 1).Range.Text = "Sector – Sub sector";
                    tblproject.Cell(2, 2).Range.Text = dataResult[0].Sector + " - " + dataResult[0].SubSector;
                    tblproject.Cell(3, 1).Range.Text = "Funding Needs";

                    Logger.Error("yefta:" + dataResult[0].FundingNeeds);


                    tblproject.Cell(3, 2).Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].FundingNeeds));
                    tblproject.Cell(4, 1).Range.Text = "Deal Strategy";
                    tblproject.Cell(4, 2).Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].DealStrategy));
                    #endregion

                    #region B.Borrower
                    Range borrower    = app.ActiveDocument.Bookmarks["Borrower"].Range;
                    Table tblborrower = app.ActiveDocument.Tables.Add(borrower, 2, 5, WdDefaultTableBehavior.wdWord9TableBehavior);
                    tblborrower.Range.Font.Name = "Roboto Light";
                    tblborrower.Range.Font.Size = 10;
                    tblborrower.set_Style("Table Grid");
                    tblborrower.Columns[1].SetWidth(100, WdRulerStyle.wdAdjustFirstColumn);

                    tblborrower.Cell(1, 1).Range.Text = "Borrower Company";

                    string prevkey  = "";
                    string cellText = "";
                    foreach (DataRow items in listBorrower.Rows)
                    {
                        prevkey = items[0].ToString() + "\r\a";
                        if (cellText != prevkey)
                        {
                            tblborrower.Cell(1, 2).Range.Text = items[0].ToString();
                            cellText = tblborrower.Cell(1, 2).Range.Text;
                        }
                    }

                    tblborrower.Cell(2, 1).Range.Text = "Shareholders";
                    tblborrower.Cell(2, 1).Range.Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;

                    tblborrower.Cell(2, 2).SetWidth(140, WdRulerStyle.wdAdjustFirstColumn);
                    tblborrower.Cell(2, 2).Range.Text = "Borrower(s)";
                    tblborrower.Cell(2, 2).Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblborrower.Cell(2, 2).Range.Shading.BackgroundPatternColor = WdColor.wdColorGray10;

                    tblborrower.Cell(2, 3).Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblborrower.Cell(2, 3).Range.Shading.BackgroundPatternColor = WdColor.wdColorGray10;
                    tblborrower.Cell(2, 3).Range.Text = "Shareholders";

                    tblborrower.Cell(2, 5).Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblborrower.Cell(2, 5).Range.Shading.BackgroundPatternColor = WdColor.wdColorGray10;
                    tblborrower.Cell(2, 5).Range.Text = "% ownership";

                    string prevkey1  = "";
                    string cellText1 = "";
                    int    rowCount  = 2;
                    foreach (DataRow item in listBorrower.Rows)
                    {
                        rowCount++;
                        tblborrower.Rows.Add(ref missing);

                        prevkey1 = item[0].ToString() + "\r\a";
                        if (cellText1 != prevkey1)
                        {
                            tblborrower.Rows[rowCount].Cells[2].Range.Text = item[0].ToString();
                            tblborrower.Rows[rowCount].Cells[2].Range.Shading.BackgroundPatternColor = WdColor.wdColorWhite;
                            tblborrower.Rows[rowCount].Cells[3].Range.Shading.BackgroundPatternColor = WdColor.wdColorWhite;
                            tblborrower.Rows[rowCount].Cells[5].Range.Shading.BackgroundPatternColor = WdColor.wdColorWhite;
                            cellText1 = tblborrower.Rows[rowCount].Cells[2].Range.Text;
                            tblborrower.Cell(1, 2).Range.Text      = item[0].ToString() + " ";
                            tblborrower.Cell(1, 2).Range.Font.Name = "Roboto Light";
                            tblborrower.Cell(1, 2).Range.Font.Size = 10;
                        }
                        tblborrower.Rows[rowCount].Cells[1].Borders[WdBorderType.wdBorderTop].LineStyle    = WdLineStyle.wdLineStyleNone;
                        tblborrower.Rows[rowCount].Cells[1].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                        tblborrower.Rows[rowCount].Cells[3].Range.Text      = item[1].ToString();
                        tblborrower.Rows[rowCount].Cells[3].Range.Font.Name = "Roboto Light";
                        tblborrower.Rows[rowCount].Cells[3].Range.Font.Size = 10;
                        var Ownership = Convert.ToDecimal(item[2]);
                        tblborrower.Rows[rowCount].Cells[5].Range.Text      = Ownership.ToString("#,#");
                        tblborrower.Rows[rowCount].Cells[5].Range.Font.Name = "Roboto Light";
                        tblborrower.Rows[rowCount].Cells[5].Range.Font.Size = 10;
                    }

                    rowCount++;
                    tblborrower.Rows.Add(ref missing);
                    tblborrower.Rows[rowCount].Cells[1].Range.Text = "Ultimate Beneficial Owner";
                    tblborrower.Rows[rowCount].Cells[1].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleSingle;
                    tblborrower.Rows[rowCount].Cells[1].Borders[WdBorderType.wdBorderTop].LineStyle    = WdLineStyle.wdLineStyleSingle;
                    tblborrower.Rows[rowCount].Cells[2].Range.Text      = dataResult[0].UltimateBeneficialOwner;
                    tblborrower.Rows[rowCount].Cells[2].Range.Font.Name = "Roboto Light";
                    int rowtemp = rowCount;

                    rowCount++;
                    tblborrower.Rows.Add(ref missing);
                    tblborrower.Rows[rowCount].Range.Font.Name     = "Roboto Light";
                    tblborrower.Rows[rowCount].Cells[1].Range.Text = "Rating";
                    tblborrower.Rows[rowCount].Cells[1].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[2].Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblborrower.Rows[rowCount].Cells[2].Range.Shading.BackgroundPatternColor = WdColor.wdColorGray10;
                    tblborrower.Rows[rowCount].Cells[2].Range.Text = "IIF Rating";
                    tblborrower.Rows[rowCount].Cells[3].Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblborrower.Rows[rowCount].Cells[3].Range.Shading.BackgroundPatternColor = WdColor.wdColorGray10;
                    tblborrower.Rows[rowCount].Cells[3].Range.Text = "External Rating";
                    tblborrower.Rows[rowCount].Cells[4].Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblborrower.Rows[rowCount].Cells[4].Range.Shading.BackgroundPatternColor = WdColor.wdColorGray10;
                    tblborrower.Rows[rowCount].Cells[4].Range.Text = "S&E Category";
                    tblborrower.Rows[rowCount].Cells[5].Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblborrower.Rows[rowCount].Cells[5].Range.Shading.BackgroundPatternColor = WdColor.wdColorGray10;
                    tblborrower.Rows[rowCount].Cells[5].Range.Text = "LQC/BI Checking";

                    rowCount++;
                    tblborrower.Rows.Add(ref missing);
                    tblborrower.Rows[rowCount].Cells[1].Borders[WdBorderType.wdBorderTop].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[2].Range.ParagraphFormat.Alignment             = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblborrower.Rows[rowCount].Cells[2].Range.Shading.BackgroundPatternColor        = WdColor.wdColorWhite;
                    tblborrower.Rows[rowCount].Cells[3].Range.ParagraphFormat.Alignment             = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblborrower.Rows[rowCount].Cells[3].Range.Shading.BackgroundPatternColor        = WdColor.wdColorWhite;
                    tblborrower.Rows[rowCount].Cells[4].Range.ParagraphFormat.Alignment             = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblborrower.Rows[rowCount].Cells[4].Range.Shading.BackgroundPatternColor        = WdColor.wdColorWhite;
                    tblborrower.Rows[rowCount].Cells[5].Range.ParagraphFormat.Alignment             = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblborrower.Rows[rowCount].Cells[5].Range.Shading.BackgroundPatternColor        = WdColor.wdColorWhite;

                    tblborrower.Rows[rowCount].Cells[2].Range.Text      = dataResult[0].IIFRate;
                    tblborrower.Rows[rowCount].Cells[3].Range.Text      = "S&P: " + dataResult[0].SAndPRate;
                    tblborrower.Rows[rowCount].Cells[3].Range.Font.Name = "Roboto Light";
                    tblborrower.Rows[rowCount].Cells[4].Range.Text      = dataResult[0].SAndECategoryRate;
                    tblborrower.Rows[rowCount].Cells[5].Range.Text      = dataResult[0].LQCOrBICheckingRate;;
                    tblborrower.Rows[rowCount].Cells[1].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[2].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[3].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[4].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[5].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;

                    rowCount++;
                    tblborrower.Rows.Add(ref missing);
                    tblborrower.Rows[rowCount].Cells[1].Borders[WdBorderType.wdBorderTop].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[2].Borders[WdBorderType.wdBorderTop].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[3].Borders[WdBorderType.wdBorderTop].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[4].Borders[WdBorderType.wdBorderTop].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[5].Borders[WdBorderType.wdBorderTop].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblborrower.Rows[rowCount].Cells[2].Range.Text      = "Rating Date: " + dataResult[0].IIFRatingDate.Value.ToString("dd-MMM-yyyy");
                    tblborrower.Rows[rowCount].Cells[2].Range.Font.Name = "Roboto Light";
                    tblborrower.Rows[rowCount].Cells[3].Range.Text      = "Moodys: " + dataResult[0].MoodysRate;
                    tblborrower.Rows[rowCount].Cells[3].Range.Font.Name = "Roboto Light";

                    rowCount++;
                    tblborrower.Rows.Add(ref missing);
                    tblborrower.Rows[rowCount].Cells[3].Range.Text      = "Fitch: " + dataResult[0].FitchRate;
                    tblborrower.Rows[rowCount].Cells[3].Range.Font.Name = "Roboto Light";

                    rowCount++;
                    tblborrower.Rows.Add(ref missing);
                    tblborrower.Rows[rowCount].Cells[3].Range.Text      = "Pefindo: " + dataResult[0].PefindoRate;
                    tblborrower.Rows[rowCount].Cells[3].Range.Font.Name = "Roboto Light";

                    rowCount++;
                    int countBusinessActivities = rowCount;
                    tblborrower.Rows.Add(ref missing);
                    tblborrower.Rows[rowCount].Cells[1].Range.Text = "Business Activities";
                    tblborrower.Rows[rowCount].Cells[2].Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].BusinessActivities));
                    tblborrower.Rows[rowCount].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleSingle;
                    tblborrower.Rows[rowCount].Borders[WdBorderType.wdBorderTop].LineStyle    = WdLineStyle.wdLineStyleSingle;
                    tblborrower.Rows[rowCount].Range.Font.Name = "Roboto Light";

                    rowCount++;
                    tblborrower.Rows.Add(ref missing);
                    int countOtherinfo = rowCount;
                    tblborrower.Rows[rowCount].Cells[1].Range.Text = "Other information";
                    tblborrower.Rows[rowCount].Cells[2].Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].OtherInformation));
                    tblborrower.Rows[rowCount].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleSingle;
                    tblborrower.Rows[rowCount].Range.Font.Name = "Roboto Light";

                    tblborrower.Cell(1, 2).Merge(tblborrower.Cell(1, 5));
                    tblborrower.Cell(2, 3).Merge(tblborrower.Cell(2, 4));
                    tblborrower.Cell(2, 3).SetWidth(130, WdRulerStyle.wdAdjustSameWidth);

                    for (int a = 1; a <= listBorrower.Rows.Count; a++)
                    {
                        tblborrower.Cell(2 + a, 3).Merge(tblborrower.Cell(2 + a, 4));
                        tblborrower.Cell(2 + a, 3).SetWidth(130, WdRulerStyle.wdAdjustSameWidth);
                    }
                    tblborrower.Rows[countOtherinfo].Cells[2].Merge(tblborrower.Rows[countOtherinfo].Cells[5]);
                    tblborrower.Rows[countBusinessActivities].Cells[2].Merge(tblborrower.Rows[countBusinessActivities].Cells[5]);
                    tblborrower.Rows[rowtemp].Cells[2].Merge(tblborrower.Rows[rowtemp].Cells[5]);
                    #endregion

                    #region C.Proposal
                    Range proposal    = app.ActiveDocument.Bookmarks["Proposal"].Range;
                    Table tblProposal = app.ActiveDocument.Tables.Add(proposal, 3, 3, WdDefaultTableBehavior.wdWord9TableBehavior);
                    tblProposal.Range.Font.Name = "Roboto Light";
                    tblProposal.Range.Font.Size = 10;
                    tblProposal.set_Style("Table Grid");
                    tblProposal.Columns[1].SetWidth(130, WdRulerStyle.wdAdjustFirstColumn);
                    tblProposal.AutoFitBehavior(WdAutoFitBehavior.wdAutoFitWindow);

                    tblProposal.Cell(1, 1).Range.Text = "Purpose";
                    tblProposal.Cell(1, 2).Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].Purpose));
                    tblProposal.Cell(1, 2).Merge(tblProposal.Cell(1, 3));
                    tblProposal.Cell(1, 2).Range.Font.Name = "Roboto Light";
                    tblProposal.Cell(1, 2).Range.Font.Size = 10;

                    tblProposal.Cell(2, 1).Range.Text = "Approval Authority";
                    tblProposal.Cell(2, 2).Merge(tblProposal.Cell(2, 3));
                    tblProposal.Cell(2, 2).Range.Text      = dataResult[0].ApprovalAuthority;
                    tblProposal.Cell(2, 2).Range.Font.Name = "Roboto Light";

                    tblProposal.Cell(3, 1).Range.Text = "Facility";
                    tblProposal.Cell(3, 1).Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;

                    tblProposal.Cell(3, 2).Shading.BackgroundPatternColor  = WdColor.wdColorGray10;
                    tblProposal.Cell(3, 2).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblProposal.Cell(3, 2).Range.Text = "Type";

                    tblProposal.Cell(3, 3).Shading.BackgroundPatternColor  = WdColor.wdColorGray10;
                    tblProposal.Cell(3, 3).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblProposal.Cell(3, 3).Range.Text = "Amount";

                    int rowcounttblProposal = 3;
                    foreach (DataRow item in listFacility.Rows)
                    {
                        rowcounttblProposal++;
                        tblProposal.Rows.Add(ref missing);
                        tblProposal.Rows[rowcounttblProposal].Cells[1].Borders[WdBorderType.wdBorderTop].LineStyle = WdLineStyle.wdLineStyleNone;
                        tblProposal.Rows[rowcounttblProposal].Cells[2].Shading.BackgroundPatternColor  = WdColor.wdColorWhite;
                        tblProposal.Rows[rowcounttblProposal].Cells[2].Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                        tblProposal.Rows[rowcounttblProposal].Cells[3].Shading.BackgroundPatternColor  = WdColor.wdColorWhite;
                        tblProposal.Rows[rowcounttblProposal].Cells[3].Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                        tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Text      = item[0].ToString();
                        tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Font.Name = "Roboto Light";
                        tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Font.Size = 10;
                        var amout = Convert.ToDecimal(item[2]);
                        tblProposal.Rows[rowcounttblProposal].Cells[3].Range.Text      = item[1].ToString() + " " + amout.ToString("#,#");
                        tblProposal.Rows[rowcounttblProposal].Cells[3].Range.Font.Name = "Roboto Light";
                        tblProposal.Rows[rowcounttblProposal].Cells[3].Range.Font.Size = 10;
                    }

                    rowcounttblProposal++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Shading.BackgroundPatternColor  = WdColor.wdColorWhite;
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
                    tblProposal.Rows[rowcounttblProposal].Cells[3].Shading.BackgroundPatternColor  = WdColor.wdColorWhite;
                    tblProposal.Rows[rowcounttblProposal].Cells[3].Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;

                    tblProposal.Rows[rowcounttblProposal].Cells[1].Borders[WdBorderType.wdBorderTop].LineStyle = WdLineStyle.wdLineStyleSingle;
                    tblProposal.Rows[rowcounttblProposal].Cells[1].Range.Text      = "Group Exposure";
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Text      = dataResult[0].GroupExposureCurr + " " + dataResult[0].GroupExposureAmount;
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Font.Name = "Roboto Light";
                    int GroupExpoCount = rowcounttblProposal;

                    rowcounttblProposal++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcounttblProposal].Cells[1].Range.Text = "Remarks";
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].Remarks));
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Font.Name = "Roboto Light";
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Font.Size = 10;
                    int RemarksCount = rowcounttblProposal;

                    rowcounttblProposal++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcounttblProposal].Cells[1].Range.Text      = "Tenor";
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Text      = dataResult[0].tenorYear + " year(s)  " + dataResult[0].tenorMonth + " month(s)";
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Font.Name = "Roboto Light";
                    int tenorCount = rowcounttblProposal;

                    rowcounttblProposal++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcounttblProposal].Cells[1].Range.Text      = "Average Loan Life";
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Text      = dataResult[0].averageLoanLifeYear + " year(s)  " + dataResult[0].averageLoanLifeMonth + " month(s)";
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Font.Name = "Roboto Light";
                    int AverageCount = rowcounttblProposal;

                    rowcounttblProposal++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcounttblProposal].Cells[1].Range.Text = "Pricing";
                    tblProposal.Rows[rowcounttblProposal].Cells[1].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Text = "Interest rate";
                    tblProposal.Rows[rowcounttblProposal].Cells[3].Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].pricingInterestRate));
                    tblProposal.Rows[rowcounttblProposal].Cells[3].Range.Font.Name = "Roboto Light";
                    tblProposal.Rows[rowcounttblProposal].Cells[3].Range.Font.Size = 10;

                    rowcounttblProposal++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcounttblProposal].Cells[1].Borders[WdBorderType.wdBorderTop].LineStyle = WdLineStyle.wdLineStyleNone;
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Text      = "Commitment Fee";
                    tblProposal.Rows[rowcounttblProposal].Cells[3].Range.Text      = dataResult[0].pricingCommitmentFee;
                    tblProposal.Rows[rowcounttblProposal].Cells[3].Range.Font.Name = "Roboto Light";

                    rowcounttblProposal++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Text      = "Upfront Fee";
                    tblProposal.Rows[rowcounttblProposal].Cells[3].Range.Text      = dataResult[0].pricingUpfrontFacilityFee;
                    tblProposal.Rows[rowcounttblProposal].Cells[3].Range.Font.Name = "Roboto Light";

                    rowcounttblProposal++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Text      = "Structuring Fee";
                    tblProposal.Rows[rowcounttblProposal].Cells[3].Range.Text      = dataResult[0].pricingStructuringFee;
                    tblProposal.Rows[rowcounttblProposal].Cells[3].Range.Font.Name = "Roboto Light";

                    rowcounttblProposal++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Text      = "Arranger Fee";
                    tblProposal.Rows[rowcounttblProposal].Cells[3].Range.Text      = dataResult[0].pricingArrangerFee;
                    tblProposal.Rows[rowcounttblProposal].Cells[3].Range.Font.Name = "Roboto Light";

                    rowcounttblProposal++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcounttblProposal].Cells[1].Borders[WdBorderType.wdBorderTop].LineStyle = WdLineStyle.wdLineStyleSingle;
                    tblProposal.Rows[rowcounttblProposal].Cells[1].Range.Text = "Collateral";
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].pricingCollateral));
                    tblProposal.Cell(rowcounttblProposal, 2).Merge(tblProposal.Cell(rowcounttblProposal, 3));
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Font.Name = "Roboto Light";
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Font.Size = 10;

                    rowcounttblProposal++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcounttblProposal].Cells[1].Range.Text = "Other Conditions";
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].pricingOtherConditions));
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Font.Name = "Roboto Light";
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Font.Size = 10;

                    rowcounttblProposal++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcounttblProposal].Cells[1].Range.Text = "Exception to IIF Policy";
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].pricingExceptionToIIFPolicy));
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Font.Name = "Roboto Light";
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Font.Size = 10;

                    rowcounttblProposal++;
                    tblProposal.Rows.Add(ref missing);
                    tblProposal.Rows[rowcounttblProposal].Cells[1].Range.Text      = "Review Period";
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Text      = dataResult[0].reviewPeriod;
                    tblProposal.Rows[rowcounttblProposal].Cells[2].Range.Font.Name = "Roboto Light";

                    tblProposal.Cell(GroupExpoCount, 2).Merge(tblProposal.Cell(GroupExpoCount, 3));
                    tblProposal.Cell(RemarksCount, 2).Merge(tblProposal.Cell(RemarksCount, 3));
                    tblProposal.Cell(tenorCount, 2).Merge(tblProposal.Cell(tenorCount, 3));
                    tblProposal.Cell(AverageCount, 2).Merge(tblProposal.Cell(AverageCount, 3));
                    #endregion

                    #region D.Recommendation
                    Range     keyInvestment      = app.ActiveDocument.Bookmarks["KeyInvestment"].Range;
                    Paragraph paragkeyInvestment = doc.Content.Paragraphs.Add(keyInvestment);
                    paragkeyInvestment.Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].KeyInvestmentRecommendation));
                    paragkeyInvestment.Range.Font.Name = "Roboto Light";
                    paragkeyInvestment.Range.Font.Size = 10;

                    Range     recommendation      = app.ActiveDocument.Bookmarks["Recommendation"].Range;
                    Paragraph paragRecommendation = doc.Content.Paragraphs.Add(recommendation);
                    paragRecommendation.Range.InsertFile(ConvertHtmlAndFile.SaveToHtml(dataResult[0].Recommendation));
                    paragRecommendation.Range.Font.Name = "Roboto Light";
                    paragRecommendation.Range.Font.Size = 10;

                    Range accountResponsible    = app.ActiveDocument.Bookmarks["AccountRespon"].Range;
                    Table tblAccountResponsible = app.ActiveDocument.Tables.Add(accountResponsible, 1, 3, WdDefaultTableBehavior.wdWord9TableBehavior);
                    tblAccountResponsible.Range.Font.Name = "Roboto Light";
                    tblAccountResponsible.Range.Font.Size = 10;
                    tblAccountResponsible.set_Style("Table Grid");
                    tblAccountResponsible.Columns[1].SetWidth(130, WdRulerStyle.wdAdjustFirstColumn);
                    tblAccountResponsible.AutoFitBehavior(WdAutoFitBehavior.wdAutoFitWindow);

                    tblAccountResponsible.Cell(1, 1).Range.Text = "Account Responsible";
                    tblAccountResponsible.Cell(1, 2).Range.Text = "Deal Team";
                    tblAccountResponsible.Cell(1, 2).Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblAccountResponsible.Cell(1, 2).Range.Shading.BackgroundPatternColor = WdColor.wdColorGray10;
                    tblAccountResponsible.Cell(1, 3).Range.Text = "CIO";
                    tblAccountResponsible.Cell(1, 3).Range.ParagraphFormat.Alignment      = WdParagraphAlignment.wdAlignParagraphCenter;
                    tblAccountResponsible.Cell(1, 3).Range.Shading.BackgroundPatternColor = WdColor.wdColorGray10;

                    int rowCountDealTeam = 1;
                    foreach (DataRow item in listDealTeam.Rows)
                    {
                        rowCountDealTeam++;
                        tblAccountResponsible.Rows.Add(ref missing);
                        tblAccountResponsible.Rows[rowCountDealTeam].Range.Font.Name = "Roboto Light";
                        tblAccountResponsible.Cell(rowCountDealTeam, 1).Borders[WdBorderType.wdBorderTop].LineStyle    = WdLineStyle.wdLineStyleNone;
                        tblAccountResponsible.Cell(rowCountDealTeam, 1).Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleNone;
                        tblAccountResponsible.Rows[rowCountDealTeam].Cells[2].Shading.BackgroundPatternColor           = WdColor.wdColorWhite;
                        tblAccountResponsible.Rows[rowCountDealTeam].Cells[2].Range.ParagraphFormat.Alignment          = WdParagraphAlignment.wdAlignParagraphLeft;
                        tblAccountResponsible.Rows[rowCountDealTeam].Cells[3].Shading.BackgroundPatternColor           = WdColor.wdColorWhite;
                        tblAccountResponsible.Rows[rowCountDealTeam].Cells[3].Range.ParagraphFormat.Alignment          = WdParagraphAlignment.wdAlignParagraphLeft;
                        tblAccountResponsible.Rows[rowCountDealTeam].Cells[2].Range.Text = item[0].ToString();
                        if (rowCountDealTeam <= 2)
                        {
                            tblAccountResponsible.Rows[rowCountDealTeam].Cells[3].Range.Text      = dataResult[0].AccountResponsibleCIOName;
                            tblAccountResponsible.Rows[rowCountDealTeam].Cells[3].Range.Font.Name = "Roboto Light";
                        }
                    }
                    tblAccountResponsible.Cell(rowCountDealTeam, 1).Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleSingle;
                    #endregion

                    #region Attachment
                    this.FillBookmarkWithPAMAttachmentType1(app, con, "ProjectAnalysis", AppConstants.TableName.PAM_ProjectAnalysis, pamId);
                    this.FillBookmarkWithPAMAttachmentType1(app, con, "HistoricalFinancial", AppConstants.TableName.PAM_HistoricalFinancial, pamId);
                    this.FillBookmarkWithPAMAttachmentType1(app, con, "SupplementalProcurement", AppConstants.TableName.PAM_Supplemental, pamId);
                    this.FillBookmarkWithPAMAttachmentType1(app, con, "SocialEnvironmental", AppConstants.TableName.PAM_Social, pamId);

                    this.FillBookmarkWithPAMAttachmentType1(app, con, "TermSheet", AppConstants.TableName.PAM_TermSheet, pamId);
                    this.FillBookmarkWithPAMAttachmentType1(app, con, "RiskRating", AppConstants.TableName.PAM_RiskRating, pamId);
                    this.FillBookmarkWithPAMAttachmentType1(app, con, "KYCchecklists", AppConstants.TableName.PAM_KYCChecklists, pamId);
                    this.FillBookmarkWithPAMAttachmentType1(app, con, "OtherBanks", AppConstants.TableName.PAM_OtherBanksFacilities, pamId);

                    this.FillBookmarkWithPAMAttachmentType2(app, con, "LegalDueDiligence", AppConstants.TableName.PAM_LegalDueDiligenceReport, pamId);
                    this.FillBookmarkWithPAMAttachmentType2(app, con, "SAndEDueDiligence", AppConstants.TableName.PAM_SAndEDueDiligence, pamId);
                    this.FillBookmarkWithPAMAttachmentType2(app, con, "OtherReports", AppConstants.TableName.PAM_OtherReports, pamId);
                    #endregion

                    doc.PageSetup.PaperSize = WdPaperSize.wdPaperA4;
                    doc.SaveAs2(Path.Combine(temporaryFolderLocation, fileNamePDF), WdExportFormat.wdExportFormatPDF);
                }
                finally
                {
                    doc.Close(WdSaveOptions.wdDoNotSaveChanges);
                }
            }
            finally
            {
                app.Quit();
            }

            File.Delete(destFile);
            string destFilePDF = Path.Combine(temporaryFolderLocation, fileNamePDF);
            byte[] fileContent = File.ReadAllBytes(destFilePDF);

            FileMergeResult result = new FileMergeResult();
            result.FileContent = fileContent;
            result.FileName    = fileNamePDF;
            return(result);
        }
Ejemplo n.º 4
0
        protected void FillBookmarkWithCMAttachmentABNormal(Application app, SqlConnection con, string bookmarkName, string tableName, long cmId, string columnName, string columnCMId)
        {
            this.Logger.Info(tableName);

            object Normal = "Normal";

            string query = "SELECT";

            query = query + " " + columnName;
            query = query + " FROM " + tableName;
            query = query + " WHERE " + columnCMId + " = @CMId";

            using (SqlCommand cmd = con.CreateCommand())
            {
                cmd.CommandType = CommandType.Text;
                cmd.CommandText = query;
                cmd.Parameters.Add(this.NewSqlParameter("CMId", SqlDbType.BigInt, cmId));

                Range rangeBookmark = app.ActiveDocument.Bookmarks[bookmarkName].Range;
                using (SqlDataReader dr = cmd.ExecuteReader())
                {
                    while (dr.Read())
                    {
                        string fileContent = dr.GetNullableString(0);
                        if (fileContent != null)
                        {
                            string htmlResult = ConvertHtmlAndFile.SaveToFile(fileContent);

                            try
                            {
                                Application app2           = new Application();
                                Document    sourceDocument = app2.Documents.Open(htmlResult);
                                sourceDocument.Activate();
                                object start = sourceDocument.Content.Start;
                                object end   = sourceDocument.Content.End;
                                Microsoft.Office.Interop.Word.Range myRange = sourceDocument.Range(ref start, ref end);
                                myRange.Select();

                                myRange.Font.Name = "Roboto Light";
                                myRange.Font.Size = 10;

                                IIFCommon.FindEmptyParagraphsAndDelete(sourceDocument);
                                //DeleteCurrentSelectionLine(app2);
                                //myRange.set_Style(ref Normal);
                                sourceDocument.Save();
                                sourceDocument.Close(WdSaveOptions.wdSaveChanges);
                                app2.Quit();

                                rangeBookmark.InsertFile(htmlResult);
                            }
                            catch (Exception ex)
                            {
                                throw ex;
                            }
                            finally
                            {
                                File.Delete(htmlResult);
                            }
                        }
                    }
                }
            }
        }