|
@ -1,9 +1,6 @@
|
|
|
package com.yihu.wlyy.web.quota;
|
|
|
|
|
|
import com.yihu.wlyy.job.FollowupPlanJob;
|
|
|
import com.yihu.wlyy.job.QuartzHelper;
|
|
|
import com.yihu.wlyy.job.SFExpressJob;
|
|
|
import com.yihu.wlyy.job.ZyDictJob;
|
|
|
import com.yihu.wlyy.job.*;
|
|
|
import com.yihu.wlyy.job.consult.ConsultCleanerJob;
|
|
|
import com.yihu.wlyy.job.consult.FamousConsultTimesJob;
|
|
|
import com.yihu.wlyy.service.app.disease.PatientDiseaseService;
|
|
@ -358,7 +355,7 @@ public class JobController extends BaseController {
|
|
|
* @date 2017/8/12 15:35
|
|
|
*/
|
|
|
@RequestMapping(value = "/reOrderExpress", method = RequestMethod.POST)
|
|
|
@ApiOperation("添加超时咨询自动关闭任务")
|
|
|
@ApiOperation("遍历顺丰快递下单失败的记录,重新下单")
|
|
|
public String reOrderExpressJob() {
|
|
|
try {
|
|
|
quartzHelper.startNow(SFExpressJob.class, "SFEXPRESS-REORDER", null);
|
|
@ -390,5 +387,22 @@ public class JobController extends BaseController {
|
|
|
return error(-1, e.getMessage());
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
*遍历长处方支付成功但是院内结算失败的记录,重新执行院内结算
|
|
|
*@author huangwenjie
|
|
|
*@date 2017/8/18 14:16
|
|
|
*/
|
|
|
@RequestMapping(value = "/executeSickSettleJob", method = RequestMethod.POST)
|
|
|
@ApiOperation("遍历长处方支付成功但是院内结算失败的记录,重新执行院内结算")
|
|
|
public String executeSickSettleJob() {
|
|
|
try {
|
|
|
quartzHelper.startNow(PrescriptionExecuteSickSettleJob.class, "ZY-SICK-SETTLE", null);
|
|
|
return write(200, "");
|
|
|
} catch (Exception e) {
|
|
|
error(e);
|
|
|
return error(-1, e.getMessage());
|
|
|
}
|
|
|
}
|
|
|
//******************************长处方 end********************************
|
|
|
}
|