You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/JobSendAgentMail/quartz_jobs.xml

95 lines
3.3 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<job-scheduling-data xmlns="http://quartznet.sourceforge.net/JobSchedulingData">
<processing-directives>
<overwrite-existing-data>true</overwrite-existing-data>
</processing-directives>
<schedule>
<!--订阅数据任务-->
<job>
<name>JobSendBooking</name>
<group>Job</group>
<description>订阅数据</description>
<job-type>JobSendAgentMail.JobSendBooking,JobSendAgentMail</job-type>
<durable>true</durable>
<recover>false</recover>
<job-data-map>
<!--连接字符串-->
<entry>
<key>ConnectString</key>
<value>Data Source=.;Initial Catalog=shippingweb_qj;Persist Security Info=True;User ID=sa;Password=ds20040201</value>
</entry>
<!--查询SQL-->
<entry>
<key>QuerySql</key>
<value>
select BSNO,MBLNO,ORDERNO,AGENTID,ETD,BLFRT,PORTLOAD,PORTDISCHARGE,DESTINATION,ATD,HBLNO,ETA,CNTRTOTAL,(
SELECT EDICODE FROM info_client WHERE SHORTNAME=OP_SEAE.CARRIER) CARRIERID,(CASE WHEN ISSUETYPE='电放' then 'Telex release'else
case when ISSUETYPE='正本' then 'Original Bill' else case when ISSUETYPE='SWB' then 'Original Bill' else 'Seaway Bill' end end end ) ISSUETYPE,
(SELECT TOP 1 USERNAME FROM [user] where SHOWNAME=op_seae.OP) OPNAME,(SELECT TOP 1 email1 FROM [VW_user] where SHOWNAME=op_seae.OP) OPEMAIL,
(SELECT TOP 1 EMAIL FROM info_client where SHORTNAME=op_seae.AGENTID) AGENTEMAIL
from op_seae WHERE CUSTNO='03DS2006001'
</value>
</entry>
<!--单据类型-->
<entry>
<key>DocType</key>
<value>PA</value>
</entry>
<!--DS7绝对路径-->
<entry>
<key>D7FilePath</key>
<value>E:\DONGSHENG7\D7\DSWeb\</value>
</entry>
<!--DS7邮箱发送账号-->
<entry>
<key>MAILSENDACCOUNT</key>
<value>han_xuntao@126.com</value>
</entry>
<!--DS7邮箱发送密码-->
<entry>
<key>MAILSENDPASSWORD</key>
<value>sunshine12</value>
</entry>
<!--DS7邮箱发送账号-->
<entry>
<key>MAILSENDSERVICE</key>
<value>smtp.126.com</value>
</entry>
<!--DS7邮箱发送账号-->
<entry>
<key>MAILSENDPORT</key>
<value>25</value>
</entry>
<!--DS7邮箱发送账号-->
<entry>
<key>MAILISSSL</key>
<value>false</value>
</entry>
</job-data-map>
</job>
<!-- 发送请求数据任务触发器-->
<trigger>
<cron>
<name>TriggerBooking</name>
<group>Job</group>
<description>订阅数据触发器</description>
<job-name>JobSendBooking</job-name>
<job-group>Job</job-group>
<cron-expression>0 * * * * ? *</cron-expression>
</cron>
</trigger>
<!--<trigger>
<simple>
<name>TriggerBooking</name>
<group>Job</group>
<description>订阅数据触发器</description>
<job-name>JobSendBooking</job-name>
<job-group>Job</job-group>
<cron-expression>0 * * * * ? *</cron-expression>
</simple>
</trigger>-->
</schedule>
</job-scheduling-data>