using Estsh.Core.Model.EnumUtil; using Estsh.Core.Models; using Estsh.Core.Quartz.BaseService; using Estsh.Core.Util; using Estsh.Core.Wms.IRepositories; namespace Estsh.Core.Wms.Jobs { /// /// 从SAP传递客户基本信息到WMS /// public class InterfaceCustomerMasterJob : IJobService { private readonly IInterfaceMasterRepository repository; public InterfaceCustomerMasterJob(IInterfaceMasterRepository _repository) { this.repository = _repository; } public string ExecuteService(string parameter) { try { List sapCus = repository.GetCustomerMasterInfo(); if (sapCus.Count <= 0) { return "没有待处理的客户主数据!"; } bool bl = repository.InsertCustomerMasterInfo(sapCus); if (bl == true) { return "客户主数据同步成功!"; } else { return "客户主数据同步失败!"; } } catch (Exception ex) { LogHelper.Error("客户主数据同步错误!" + ex); return "客户主数据同步错误!" + ex.Message; } } } }