|
|
@@ -84,7 +84,9 @@ public class TaskDetailsServiceImpl extends BaseMybatisDao<TaskDetailsMapper> im
|
|
|
|
|
|
|
|
|
TaskDetailsBo res = new TaskDetailsBo();
|
|
|
- BeanUtils.copyProperties(taskDetails, res);
|
|
|
+ if (taskDetails != null) {
|
|
|
+ BeanUtils.copyProperties(taskDetails, res);
|
|
|
+ }
|
|
|
BigDecimal totalAmount = tOrderNew.getTotalAmount();
|
|
|
String lvl=null;
|
|
|
if (totalAmount.compareTo(new BigDecimal("3"))<0){
|