Showing
1 changed file
with
1 additions
and
1 deletions
| ... | ... | @@ -242,7 +242,7 @@ public class SpecLockDelayApplicationController extends DefaultBaseController { |
| 242 | 242 | result.setCustomerName(customer.getName()); |
| 243 | 243 | result.setContractType(contractDistributorStandard.getType()); |
| 244 | 244 | result.setWorkshopName(workshop.getName()); |
| 245 | - result.setApplicationCount(CollectionUtils.isEmpty(specLockDelayApplicationList) ? 0 : specLockDelayApplicationList.size() + 1); | |
| 245 | + result.setApplicationCount(CollectionUtils.isEmpty(specLockDelayApplicationList) ? 1 : specLockDelayApplicationList.size() + 1); | |
| 246 | 246 | |
| 247 | 247 | return InvokeResultBuilder.success(result); |
| 248 | 248 | } | ... | ... |