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