|
|
@@ -11,6 +11,8 @@ import com.iformall.enums.*; |
|
|
|
import com.iformall.service.*; |
|
|
|
import com.iformall.service.pay.PayServiceFactory; |
|
|
|
import com.iformall.service.pay.service.pay.PayAdapterService; |
|
|
|
import com.iformall.utils.DateUtils; |
|
|
|
|
|
|
|
import io.swagger.annotations.Api; |
|
|
|
import io.swagger.annotations.ApiImplicitParam; |
|
|
|
import io.swagger.annotations.ApiImplicitParams; |
|
|
@@ -53,6 +55,14 @@ public class ProductOrderController extends BaseController { |
|
|
|
return new ResultData(ErrorCode.SYS_PARAMETER_TYPE_ERROR.getCode(),"projectType参数错误"); |
|
|
|
} |
|
|
|
|
|
|
|
if (null != record.getStartDate()) { |
|
|
|
record.setStartDate(DateUtils.stringToDate(DateUtils.format(record.getStartDate())+ " 00:00:00",DateUtils.DATE_TIME_PATTERN)); |
|
|
|
} |
|
|
|
|
|
|
|
if (null != record.getEndDate()) { |
|
|
|
record.setEndDate(DateUtils.stringToDate(DateUtils.format(record.getEndDate())+ " 23:59:59",DateUtils.DATE_TIME_PATTERN)); |
|
|
|
} |
|
|
|
|
|
|
|
if (StringUtils.isNotBlank(record.getPhone())) { |
|
|
|
List<Long> cUserIds = wxCUserBasicInfoService.findIdsListByPhone(null, record.getPhone()); |
|
|
|
if (null == cUserIds || cUserIds.size() <= 0 ) { |
|
|
|