Showing
1 changed file
with
1 additions
and
1 deletions
| ... | ... | @@ -1120,7 +1120,6 @@ public class ContractDistributorStandardController extends DefaultBaseController |
| 1120 | 1120 | } |
| 1121 | 1121 | |
| 1122 | 1122 | if (CollectionUtils.isNotEmpty(data.getContractStdProcessingLineList())) { |
| 1123 | - startRow++; | |
| 1124 | 1123 | for (GetContractStdProcessingLineBo line : data.getContractStdProcessingLineList()) { |
| 1125 | 1124 | setCellValue(sheet, startRow, 1, line.getRawProductName() + "、" + line.getRawProductGradeName()); |
| 1126 | 1125 | setCellValue(sheet, startRow, 4, line.getSupplyTime()); |
| ... | ... | @@ -1149,6 +1148,7 @@ public class ContractDistributorStandardController extends DefaultBaseController |
| 1149 | 1148 | setCellValue(sheet, startRow, 13, line.getTotalAmount()); |
| 1150 | 1149 | setCellValue(sheet, startRow, 14, |
| 1151 | 1150 | line.getDeliveryDate() != null ? line.getDeliveryDate().format(dateFormatter) : ""); |
| 1151 | + startRow++; | |
| 1152 | 1152 | } |
| 1153 | 1153 | } |
| 1154 | 1154 | ... | ... |