You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
673 B
27 lines
673 B
11 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using Quartz;
|
||
|
namespace SiaSun.LMS.WinService
|
||
|
{
|
||
|
[DisallowConcurrentExecution]
|
||
|
public class ImportErpDataJob : IJob
|
||
|
{
|
||
|
public void Execute(IJobExecutionContext context)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
//MainApp._I_BaseService.ExecuteNonQuery_ReturnVoid(" exec ImportERPGoods ");
|
||
|
|
||
|
//MainApp._I_BaseService.ExecuteNonQuery_ReturnVoid(" exec ImportERPTransaction ");
|
||
|
}
|
||
|
catch( Exception ex)
|
||
|
{
|
||
|
Program.sysLog.Fatal("导入ERP数据失败", ex);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|