コード例 #1
0
 static void CreateMessage501(object para)
 {
     try
     {
         ArrayList      array         = (ArrayList)para;
         string         orderNoFake   = array[0].ToString();
         string         logisticsCode = array[1].ToString();
         MessageControl control       = new MessageControl();
         control.CreateMessage501(orderNoFake);
     }
     catch (Exception ex)
     {
         Logs.Error("CreateMessage501 static Exception:" + ex.ToString());
     }
 }
コード例 #2
0
        public static void DealWith302(XElement xElement, string path)
        {
            ReceiptSql sqlserver = null;
            MessageService msService = null;
            try
            {
                IEnumerable<XElement> eles = xElement.Elements().First().Elements();
                string guid = eles.Where(e => e.Name.LocalName == "guid").First().Value;
                string orderNoFake = eles.Where(e => e.Name.LocalName == "orderNo").First().Value;
                string status = eles.Where(e => e.Name.LocalName == "returnStatus").First().Value;
                string returnTime = eles.Where(e => e.Name.LocalName == "returnTime").First().Value;
                string returnInfo = eles.Where(e => e.Name.LocalName == "returnInfo").First().Value;

                sqlserver = new ReceiptSql();
                sqlserver.Operate302(orderNoFake, status, returnInfo);

                string destPath = FileUtilities.GetNewFolderName(true, ConfigurationInfo.PathBackUp, "302") + "\\" + FileUtilities.GetNewFileName(orderNoFake, status) + ".xml";

                msService = new MessageService();
                bool success = msService.DealMessage302(orderNoFake, guid, status, returnTime, returnInfo, destPath);
                if (!success)
                {
                    destPath = FileUtilities.GetNewFolderName(true, ConfigurationInfo.PathBackUpError, "302") + "\\" + FileUtilities.GetNewFileName(orderNoFake, status) + ".xml";
                }
                FileUtilities.FileMove(path, destPath);
                if (ConfigurationInfo.Need501 && status.Equals("120"))
                {

                    CacheInfo info = MessageCache.GetCacheByKey("501" + orderNoFake);
                    MessageCache.DeleteMessageCache("501" + orderNoFake);
                    string logisticCode = null;
                    if (info != null)
                    {
                        logisticCode = ((dynamic)info.value).LogisticCode;
                    }
                    else
                    {
                        logisticCode = msService.GetLogisticCodeByOrderNoFake(orderNoFake);
                    }
                    if (MessageControl.CheckNeedSendLogistics(logisticCode))
                    {
                        MessageControl msControl = new MessageControl();
                        msControl.CreateMessage501(orderNoFake);
                    }
                }
            }
            catch (Exception ex)
            {
                BackUpForError(path);
                Logs.Error("DealWith302 Exception: " + ex.ToString());
            }
        }
コード例 #3
0
 static void CreateMessage501(object para)
 {
     try
     {
         ArrayList array = (ArrayList)para;
         string orderNoFake = array[0].ToString();
         string logisticsCode = array[1].ToString();
         MessageControl control = new MessageControl();
         control.CreateMessage501(orderNoFake);
     }
     catch (Exception ex)
     {
         Logs.Error("CreateMessage501 static Exception:" + ex.ToString());
     }
 }