|
@@ -1816,25 +1816,25 @@ public class WarehouseBaseInfoServiceImpl extends ServiceImpl<WarehouseBaseInfoM
|
|
|
cell.setCellValue(new Formatter().format("%.3f", editFloat(exportVView.getNetWeightPrice())).toString());
|
|
|
cell.setCellStyle(styleDetail);
|
|
|
cell = rowx.createCell(20);
|
|
|
- cell.setCellValue(editFloat(exportVView.getGrossWeight()));
|
|
|
+ cell.setCellValue(new Formatter().format("%.2f", editFloat(exportVView.getGrossWeight())).toString());
|
|
|
cell.setCellStyle(styleDetail);
|
|
|
cell = rowx.createCell(21);
|
|
|
- cell.setCellValue(editFloat(exportVView.getTare()));
|
|
|
+ cell.setCellValue(new Formatter().format("%.2f", editFloat(exportVView.getTare())).toString());
|
|
|
cell.setCellStyle(styleDetail);
|
|
|
cell = rowx.createCell(22);
|
|
|
- cell.setCellValue(editFloat(exportVView.getBuckleWeight()));
|
|
|
+ cell.setCellValue(new Formatter().format("%.2f", editFloat(exportVView.getBuckleWeight())).toString());
|
|
|
cell.setCellStyle(styleDetail);
|
|
|
cell = rowx.createCell(23);
|
|
|
- cell.setCellValue(editFloat(exportVView.getNetWeight()));
|
|
|
+ cell.setCellValue(new Formatter().format("%.2f", editFloat(exportVView.getNetWeight())).toString());
|
|
|
cell.setCellStyle(styleDetail);
|
|
|
cell = rowx.createCell(24);
|
|
|
- cell.setCellValue(editFloat(exportVView.getUnitDeduction()));
|
|
|
+ cell.setCellValue(new Formatter().format("%.2f", editFloat(exportVView.getUnitDeduction())).toString());
|
|
|
cell.setCellStyle(styleDetail);
|
|
|
cell = rowx.createCell(25);
|
|
|
cell.setCellValue(new Formatter().format("%.3f", editFloat(exportVView.getPureWeightPrice())).toString());
|
|
|
cell.setCellStyle(styleDetail);
|
|
|
cell = rowx.createCell(26);
|
|
|
- cell.setCellValue(editFloat(exportVView.getPureWeight()));
|
|
|
+ cell.setCellValue(new Formatter().format("%.2f", editFloat(exportVView.getPureWeight())).toString());
|
|
|
cell.setCellStyle(styleDetail);
|
|
|
cell = rowx.createCell(27);
|
|
|
cell.setCellValue(new Formatter().format("%.2f", editFloat(exportVView.getAmountIngPayable())).toString());
|