Commit 2128d00f authored by 吴春's avatar 吴春

提交代码

parent 6c6f3d4a
......@@ -105,10 +105,10 @@ namespace Mall.WebApi.Controllers.AppletWeChat
var req = new RequestHandler();
App_Code.PayUtil PayUtil = new App_Code.PayUtil();
var result = PayUtil.NotifyZhouTian(_accessor);
LogHelper.Write(null, "NotifyZhouTian返回信息进来了" );
LogHelper.WriteInfo( "NotifyZhouTian返回信息进来了" );
if (result.IsSuccess)
{
LogHelper.Write(null, "NotifyZhouTian回调成功:"+ result.ToString());
LogHelper.WriteInfo( "NotifyZhouTian回调成功:"+ result.ToString());
var dic = ((Dictionary<string, string>)result.Data);
//开始回写订单状态
lock (_lock)
......@@ -124,7 +124,7 @@ namespace Mall.WebApi.Controllers.AppletWeChat
DateTime PayDate = DateTime.ParseExact(dic["PayDate"], "yyyyMMddHHmmss", System.Globalization.CultureInfo.CurrentCulture);//转换时间// Convert.ToDateTime(dic["PayDate"]);
#region 新增订单支付信息
LogHelper.Write(null, "NotifyZhouTian订单信息");
LogHelper.WriteInfo( "NotifyZhouTian订单信息");
userCommonModule.InsertOrderPayInfo(UserId, OrderId, sOrderNo, TransactionId, Common.Enum.Goods.OrderPayTypeEnum.WeChatPay, PayType, dPaid, PayDate, 0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment