Commit 7300c6d92ba4fbc2621b658d0a8f50985d8b13e8
1 parent
15955c041d
Exists in
master
and in
6 other branches
血压报告生成
Showing 1 changed file with 5 additions and 5 deletions
platform-operate-api/src/main/resources/spring/applicationContext-quartz.xml
View file @
7300c6d
... | ... | @@ -48,13 +48,13 @@ |
48 | 48 | <property name="cronExpression" value="${sequence.schedule.expression}"></property> |
49 | 49 | </bean> |
50 | 50 | |
51 | - <bean id="patientsServiceLocal" class="com.lyms.platform.biz.service.PatientsService"></bean> | |
51 | + <!--<bean id="patientsServiceLocal" class="com.lyms.platform.biz.service.PatientsService"></bean>--> | |
52 | 52 | |
53 | 53 | |
54 | 54 | <!--自动分娩任务 --> |
55 | 55 | <bean id="autoMatDeliverTask" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> |
56 | 56 | <!-- 要调用的bean --> |
57 | - <property name="targetObject" ref="patientsServiceLocal"></property> | |
57 | + <property name="targetObject" ref="patientsService"></property> | |
58 | 58 | <!-- 要调用的Method --> |
59 | 59 | <property name="targetMethod" value="autoMatDeliver"></property> |
60 | 60 | <!-- 是否并发,false表示 如果发生错误也不影响下一次的调用 --> |
... | ... | @@ -64,7 +64,7 @@ |
64 | 64 | <!--处理产后复查、产后追访数据显示及自动流转追访任务 --> |
65 | 65 | <bean id="dandleAutoReachDue" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> |
66 | 66 | <!-- 要调用的bean --> |
67 | - <property name="targetObject" ref="patientsServiceLocal"></property> | |
67 | + <property name="targetObject" ref="patientsService"></property> | |
68 | 68 | <!-- 要调用的Method --> |
69 | 69 | <property name="targetMethod" value="dandleAutoReachDue"></property> |
70 | 70 | <!-- 是否并发,false表示 如果发生错误也不影响下一次的调用 --> |
... | ... | @@ -73,7 +73,7 @@ |
73 | 73 | |
74 | 74 | <bean id="delSieveTask" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> |
75 | 75 | <!-- 要调用的bean --> |
76 | - <property name="targetObject" ref="patientsServiceLocal"></property> | |
76 | + <property name="targetObject" ref="patientsService"></property> | |
77 | 77 | <!-- 要调用的Method --> |
78 | 78 | <property name="targetMethod" value="delSieve"></property> |
79 | 79 | <!-- 是否并发,false表示 如果发生错误也不影响下一次的调用 --> |
... | ... | @@ -81,7 +81,7 @@ |
81 | 81 | </bean> |
82 | 82 | <bean id="addSieveJob" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> |
83 | 83 | <!-- 要调用的bean --> |
84 | - <property name="targetObject" ref="patientsServiceLocal"></property> | |
84 | + <property name="targetObject" ref="patientsService"></property> | |
85 | 85 | <!-- 要调用的Method --> |
86 | 86 | <property name="targetMethod" value="addSieveJob"></property> |
87 | 87 | <!-- 是否并发,false表示 如果发生错误也不影响下一次的调用 --> |