Commit 661cf846 authored by caluka's avatar caluka

setCellValue() function changed for POI jar related issue


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@100154 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 5c9bf6ed
......@@ -70,7 +70,6 @@ import org.apache.poi.hssf.usermodel.HSSFCellStyle;
import org.apache.poi.hssf.usermodel.HSSFDataFormat;
import org.apache.poi.hssf.usermodel.HSSFDateUtil;
import org.apache.poi.hssf.usermodel.HSSFFont;
import org.apache.poi.hssf.usermodel.HSSFRichTextString;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
......@@ -11625,7 +11624,7 @@ public class RunMRPPrc extends ProcessEJB implements RunMRPPrcLocal, RunMRPPrcRe
style.setFont(font);
HSSFCell titleCell = titleRow.createCell((short) 0);
titleCell.setCellValue(new HSSFRichTextString("MRP - Material Requirements"));
titleCell.setCellValue("MRP - Material Requirements");
titleCell.setCellStyle(style);
sheet.autoSizeColumn((short) 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment