|
|
|
@ -7,6 +7,7 @@ import java.util.*; |
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource; |
|
|
|
|
|
|
|
|
|
import com.dxhy.common.utils.DateUtils; |
|
|
|
|
import org.springframework.http.ResponseEntity; |
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
|
import org.springframework.web.bind.annotation.RequestParam; |
|
|
|
@ -244,6 +245,16 @@ public class ExtIndexController extends AbstractController { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
if (pramsMap.get("kpksrq") != null && !"".equals(pramsMap.get("kpksrq"))) { |
|
|
|
|
pramsMap.put("kpksrq", DateUtils.getMorning(DateUtils.strToDate(pramsMap.get("kpksrq").toString()))); |
|
|
|
|
} else { |
|
|
|
|
throw new RuntimeException("开票开始日期不能为空!"); |
|
|
|
|
} |
|
|
|
|
if (pramsMap.get("kpjsrq") != null && !"".equals(pramsMap.get("kpjsrq"))) { |
|
|
|
|
pramsMap.put("kpjsrq", DateUtils.getNight(DateUtils.strToDate(pramsMap.get("kpjsrq").toString()))); |
|
|
|
|
} else { |
|
|
|
|
throw new RuntimeException("开票开始日期不能为空!"); |
|
|
|
|
} |
|
|
|
|
Map<String, Object> map = new HashMap<>(16); |
|
|
|
|
List<ExtIndexInvoiceTaskRemindingModel> listVO = indexStatisticsService.getInvoiceTaskReminding(pramsMap); |
|
|
|
|
for (ExtIndexInvoiceTaskRemindingModel vo : listVO) { |
|
|
|
|