|
@@ -1051,10 +1051,10 @@ public class PaymentManagementServiceImpl extends ServiceImpl<PaymentManagementM
|
|
cell.setCellValue(editFloat(paymentManagement1.getNetWeight()));
|
|
cell.setCellValue(editFloat(paymentManagement1.getNetWeight()));
|
|
cell.setCellStyle(styleDetail);
|
|
cell.setCellStyle(styleDetail);
|
|
cell = rowx.createCell(12);
|
|
cell = rowx.createCell(12);
|
|
- cell.setCellValue(editFloat(paymentManagement1.getSolidGrainPrice()));
|
|
|
|
|
|
+ cell.setCellValue(new Formatter().format("%.4f", editFloat(paymentManagement1.getSolidGrainPrice())).toString());
|
|
cell.setCellStyle(styleDetail);
|
|
cell.setCellStyle(styleDetail);
|
|
cell = rowx.createCell(13);
|
|
cell = rowx.createCell(13);
|
|
- cell.setCellValue(editFloat(paymentManagement1.getPureWeight()));
|
|
|
|
|
|
+ cell.setCellValue(new Formatter().format("%.2f", editFloat(paymentManagement1.getPureWeight())).toString());
|
|
cell.setCellStyle(styleDetail);
|
|
cell.setCellStyle(styleDetail);
|
|
cell = rowx.createCell(14);
|
|
cell = rowx.createCell(14);
|
|
cell.setCellValue(new Formatter().format("%.1f", editFloat(paymentManagement1.getAmountIngPayable())).toString());
|
|
cell.setCellValue(new Formatter().format("%.1f", editFloat(paymentManagement1.getAmountIngPayable())).toString());
|