public string SaveUser(string json) { string permission = "membsership-saveuser"; string entityName = "User"; string entityJson = Request["entityJson"]; JsonMessage jr = new JsonMessage(); DBContext db = new DBContext(EntityFormat); try { if (entityJson == null) throw new Exception("entityJson is null"); entityJson = Server.UrlDecode(entityJson); jr.Result = db.DoSave(permission, entityName, entityJson).GetPrimaryValue(); } catch (Exception ex) { Utility.LogException(jr, ex); } finally { db.Dispose(); } return JsonConvert.SerializeObject(jr); }
public JsonMessage SyncJingKongPosData(string terminal, string json) { if (DateTime.Now.Day != lastSyncTime.Day) { //每天同步一次,一次同步一个月 SyncHolday(); } lastSyncTime = DateTime.Now; while (inUploadRongbao) { System.Threading.Thread.Sleep(500); } if (clients.ContainsKey("xiandaijk")) clients["xiandaijk"].lastAccess = DateTime.Now; else { //iis reset register again RegisterClient("xiandaijk"); } DBContext db = new DBContext(true); JsonMessage resultData = new JsonMessage(); DateTime maxTime = DateTime.MinValue; List<TransactionLog> newItemList = new List<TransactionLog>(); System.Web.HttpContext.Current.Application.Lock(); try { LogStep("获取客户信息"); Customer customerInfo = db.QuerySingle<Customer>(new { terminal = terminal, status = ">-1 " }); //SourceAccount customerSource = db.QuerySingle<SourceAccount>(customerInfo.sourceAccount.Value); if (customerInfo == null) { throw new Exception("获取客户信息is null, terminal:" + terminal); } if (customerInfo.discount == null) { throw new Exception("获取客户信息discount is null or NaN,terminal:" + terminal); } if (customerInfo.tixianfei == null) { throw new Exception("获取客户信息tixianfei is null or NaN, terminal:" + terminal); } if (customerInfo.tixianfeiEles == null) { throw new Exception("获取客户信息tixianfeiEles is null or NaN, terminal:" + terminal); } stepName = "解析json : \r\n" + json; JingKongResult jkResult = JsonConvert.DeserializeObject<JingKongResult>(json); if (jkResult == null) throw new Exception("序列化出错:" + json); TransactionLog[] lst = jkResult.ToTransactionArray(); foreach (TransactionLog localItem in lst) { //判断记录是否存在,存在的话忽略,不存在则插入 var whereSql = new { terminal = terminal, timeStr = localItem.timeStr, tradeName = localItem.tradeName, tradeMoney = localItem.tradeMoney }; stepName = localItem.time + " " + localItem.tradeName + "是否已经保存过"; if (db.Exists("", "TransactionLog", whereSql)) continue; LogStep("分析时间,23点后算次日"); string tempTime; DateTime datetime = Convert.ToDateTime(localItem.time); if (datetime > maxTime) maxTime = datetime; //tomorrw is holdday if (datetime.Hour > 22) datetime = datetime.AddDays(2); else datetime = datetime.AddDays(1); tempTime = datetime.ToString("yyyy-MM-dd"); if (tempTime != lastTransDay) { LogStep("获取是否节假日"); lastTransDay = tempTime; GetLocalHolday(tempTime, db); //MyHttpUtility http = new MyHttpUtility(); //int tryCount = 10; //while (true) //{ // try // { // string timeJson = http.DoGet("http://www.easybots.cn/api/holiday.php?d=" + tempTime); // if (string.IsNullOrEmpty(timeJson)) throw new Exception("节假日返回值为空"); // string[] tempArr = timeJson.Substring(1, timeJson.Length - 2).Split(':'); // if (tempArr.Length != 2) throw new Exception("节假日返回值有变动"); // isHoldDay = Convert.ToInt32(tempArr[1].Replace('\"', ' ').Trim()) > 0; // break; // } // catch (System.Net.WebException ex) // { // tryCount--; // if (tryCount < 0) { GetLocalHolday(tempTime, db); break; } // LogError("使用网络节假日发生网络异常,重试"+ tryCount, ex); // } // catch (Exception ex) // { // LogStep("easybots节假日返回异常(" + ex.Message + "),尝试读取本地设置"); // } // break; //} } LogStep("计算手续费"); calcMoney(customerInfo, localItem); LogStep("保存交易记录"); localItem.status = 0; db.DoSave("", localItem); newItemList.Add(localItem); } LogStep("查询是否有结算交易"); string sql = "select time,id from TransactionLogs where terminal='" + terminal + "' and tradeName in ('批上送结束(平账)','批上送结束(不平账)') and resultCode='00' and status =0"; DataTable dt = db.QueryTable(sql); if (dt.Rows.Count > 0) { LogStep("有" + dt.Rows.Count + "笔结算数据,开始结算"); foreach (DataRow dr in dt.Rows) { string time = dr["time"].ToString(); string sumLogId = dr["id"].ToString(); sql = "select max(time) prevTime from TransactionLogs where terminal='" + terminal + "' and Status=0 and tradeName in ('批上送结束(平账)','批上送结束(不平账)') and resultCode='00' and time < '" + time + "'"; object o = db.ExecScalar(sql); string prevTime = o.ToString(); //sum log of (消费) sql = "select count(0) batchCount,sum(tradeMoney) tradeMoney,sum(discountMoney) discountMoney,sum(tixianfeiMoney) tixianfeiMoney from transactionLogs "; string publicWhere = " where terminal='" + terminal + "' and Status=0 and isValid = 1 and resultCode='00'"; if (string.IsNullOrEmpty(prevTime)) publicWhere += " and time < '" + time + "'"; else publicWhere += " and time between '" + prevTime + "' and '" + time + "'"; sql += publicWhere; DataTable dtSum = db.QueryTable(sql); if (dtSum.Rows.Count == 0 || dtSum.Rows[0]["batchCount"].Equals(0) || dtSum.Rows[0]["tradeMoney"] == DBNull.Value) continue; TransactionSum sumData = new TransactionSum(); sumData.shanghuName = customerInfo.shanghuName; sumData.faren = customerInfo.faren; sumData.tradeMoney = Convert.ToDouble(dtSum.Rows[0]["tradeMoney"]); sumData.discountMoney = Convert.ToDouble(dtSum.Rows[0]["discountMoney"]); sumData.tixianfeiMoney = Convert.ToDouble(dtSum.Rows[0]["tixianfeiMoney"]); sumData.finallyMoney = Convert.ToDouble(sumData.tradeMoney) - Convert.ToDouble(sumData.discountMoney) - Convert.ToDouble(sumData.tixianfeiMoney); sumData.status = 0; sumData.batchCount = Convert.ToInt32(dtSum.Rows[0]["batchCount"]); sumData.createDate = time;//(new Date()).Format("yyyy-MM-dd hh:mm:ss");用结算记录的时间 sumData.terminal = terminal; db.DoSave("", sumData);//保存结算数据 //更新交易记录的标记 sql = "update TransactionLogs set sumid=" + sumData.id + " , status =1 " + publicWhere; db.ExecuteCommand(sql); sql = "update TransactionLogs set sumid=" + sumData.id + " , status =1 where id = " + sumLogId; db.ExecuteCommand(sql); } } else { LogStep("不需要结算"); } if (maxTime == DateTime.MinValue) maxTime = DateTime.Today; //update lastQuery sql = "update Customers set lastQuery ='" + maxTime.ToString("yyyy-MM-dd") + "' where terminal='" + terminal + "' "; db.ExecuteCommand(sql); LogStep("关闭连接"); db.Close(); resultData.Result = newItemList; } catch (Exception ex) { resultData.Message = stepName + "时发生异常:" + ex.Message + "\r\nDBStepMessage:" + db.GetStepMsg(); LogError(stepName, ex); db.Dispose(); } finally { System.Web.HttpContext.Current.Application.UnLock(); } return resultData; }