using Quartz; using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.IO; using System.Linq; using System.Net; using System.Reflection; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; namespace ICSSoft.FromERP { /// /// 主营业务收入明细账 /// public class YERP_003 : IJob { private static object key = new object(); private static log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); public void Execute(IJobExecutionContext context) { try { lock (key) { log.Info("开始……………………………………………………………………"); Execute(); log.Info("结束……………………………………………………………………"); } } catch (Exception ex) { log.Error(ex.ToString()); } } public async void Execute() { try { Configuration config = GetConfig(); //string url = config.ConnectionStrings.ConnectionStrings["APIAddStdWorkHour"].ConnectionString.ToString(); var Dates = DateTime.Now; string conStr = ICSHelper.GetConnectString(); // 202404 // 过滤时间为上个月 string Date = Dates.ToString("yyyy"); string Muoth = Dates.AddMonths(-1).ToString("MM"); string Day = Dates.ToString("dd"); // // // // // // // ? // ? // ? // ? //
?
// ? // ? // ? // // ? // // ? // ? // ? //
//
//
//
var beginPeriod = "202301";//Date + Muoth; var endPeriod = "202302";//Date + Muoth; string sqls = @" begin transaction exec GL_Ledger @tblname=N'zyywsrmxz',@KmCode=N'6001',@beginPeriod={0},@endPeriod={1},@bVouch=0,@bequal=1,@sum=0,@bMJ=1,@swhere=N'',@sAuth=N'',@ReportID=N'GL13',@ReportType=0,@iUnite=0 select autoid,cCode SBJ_CD,ccode_name SBJ_NM,iyear YYYY,imonth MM,iday DD,csign_no SPTDOC,cDigest SMR,cDCode ODR_ACC,md DBTO_AMT,mc CRDTO_AMT,(case when ibook is null then '平' else (case when ibook ='1' then '贷' else '借' end) end) DBTO_CRDTO_DVSN,tmpme, (Select Sum(-tmpme) from tempdb..zyywsrmxz where autoid<=a.autoid) BLNC from tempdb..zyywsrmxz a rollback transaction"; sqls = string.Format(sqls, beginPeriod, endPeriod); log.Info("YERP_003 sql:" + sqls); DataTable vbsdt = ICSHelper.ExecuteTable(conStr, sqls); log.Info("sql结果数量" + vbsdt.Rows.Count); if (vbsdt.Rows.Count > 0) { StringBuilder soapRequestData = new StringBuilder(); soapRequestData.Append(""); soapRequestData.Append(""); soapRequestData.Append(""); soapRequestData.Append(""); //循环数据 foreach (DataRow itemRow in vbsdt.Rows) { //原循环部分 begin soapRequestData.Append(""); soapRequestData.Append(itemRow["SBJ_CD"] != null ? "" + itemRow["SBJ_CD"].ToString() + "" : "" + ""); soapRequestData.Append(itemRow["SBJ_NM"] != null ? "" + itemRow["SBJ_NM"].ToString() + "" : "" + ""); soapRequestData.Append(itemRow["YYYY"] != null ? "" + itemRow["YYYY"].ToString() + "" : "" + ""); soapRequestData.Append(itemRow["MM"] != null ? "" + itemRow["MM"].ToString() + "" : "" + ""); soapRequestData.Append(itemRow["DD"] != null ? "
" + itemRow["DD"].ToString() + "
" : "
" + "
"); soapRequestData.Append(itemRow["SPTDOC"] != null ? "" + itemRow["SPTDOC"].ToString() + "" : "" + ""); soapRequestData.Append(itemRow["SMR"] != null ? "" + itemRow["SMR"].ToString() + "" : "" + ""); soapRequestData.Append(itemRow["ODR_ACC"] != null ? "" + itemRow["ODR_ACC"].ToString() + "" : "" + ""); soapRequestData.Append(itemRow["DBTO_AMT"] != null ? "" + itemRow["DBTO_AMT"].ToString() + "" : "" + ""); soapRequestData.Append(itemRow["CRDTO_AMT"] != null ? "" + itemRow["CRDTO_AMT"].ToString() + "" : "" + ""); soapRequestData.Append(itemRow["DBTO_CRDTO_DVSN"] != null ? "" + itemRow["DBTO_CRDTO_DVSN"].ToString() + "" : "" + ""); soapRequestData.Append(itemRow["BLNC"] != null ? "" + itemRow["BLNC"].ToString() + "" : "" + ""); soapRequestData.Append("
"); //原循环部分 end } soapRequestData.Append("
"); soapRequestData.Append("
"); soapRequestData.Append("
"); string postData = soapRequestData.ToString(); log.Info("YERP_003 xmlRequest:" + postData); string statusCode; string resultContent; ServicePointManager.SecurityProtocol = (SecurityProtocolType)192 | (SecurityProtocolType)768 | (SecurityProtocolType)3072; RestOpHelper rop = new RestOpHelper(); rop.Clientp12path = @"C:\Users\Administrator\Desktop\yonyou-cert\wildcard.pfx"; rop.Clientp12PassWord = "Yonyou2024!"; rop.Url = @"https://yerp-proxy-sap-dev.skchemicals.com/XISOAPAdapter/MessageServlet?senderParty=&senderService=YERP_D&receiverParty=&receiverService=&interface=YERP_003_OA1_SI&interfaceNamespace=http://skch.com/YERP_003_CORP_COMMISSION"; rop.RequestSAP(rop.Url, 10000, postData, "IF_YERP", "Xtxc355860", out statusCode, out resultContent); log.Info("YERP_003 statusCode:" + statusCode + "\r\n" + "resultContent:" + resultContent); } } catch (Exception ex) { log.Error(ex.ToString()); } } public static Configuration GetConfig() { Assembly assembly = Assembly.GetCallingAssembly(); string path = string.Format("{0}.config", assembly.Location); if (!File.Exists(path)) { throw new FileNotFoundException(path + "路径下的文件未找到!"); } try { ExeConfigurationFileMap configFile = new ExeConfigurationFileMap(); configFile.ExeConfigFilename = path; Configuration config = ConfigurationManager.OpenMappedExeConfiguration(configFile, ConfigurationUserLevel.None); return config; } catch (Exception) { throw; } } } }