|
@@ -30,7 +30,7 @@ namespace MySystem
|
|
|
if (!string.IsNullOrEmpty(content))
|
|
|
{
|
|
|
string result = StartDo(Newtonsoft.Json.JsonConvert.DeserializeObject<MerchantSign>(content));
|
|
|
- if(result == "wait")
|
|
|
+ if (result == "wait")
|
|
|
{
|
|
|
Thread.Sleep(10000);
|
|
|
RedisDbconn.Instance.AddList("AlipaySignQueue", content);
|
|
@@ -86,9 +86,9 @@ namespace MySystem
|
|
|
if (merchantadd != null)
|
|
|
{
|
|
|
merchantadd.AlipayPid = dic["alipay_open_agent_order_query_response"]["merchant_pid"].ToString();
|
|
|
- if(content.Contains("restrict_infos"))
|
|
|
+ if (content.Contains("restrict_infos"))
|
|
|
{
|
|
|
- if(dic["alipay_open_agent_order_query_response"]["restrict_infos"].Count > 0)
|
|
|
+ if (dic["alipay_open_agent_order_query_response"]["restrict_infos"].Count > 0)
|
|
|
{
|
|
|
merchantadd.QueryCount = -1;
|
|
|
merchantadd.AlipayRemark = dic["alipay_open_agent_order_query_response"]["restrict_infos"][0]["restrict_reason"].ToString();
|
|
@@ -105,11 +105,16 @@ namespace MySystem
|
|
|
if (merchant != null)
|
|
|
{
|
|
|
merchant.QueryCount = 2;
|
|
|
- if(merchant.SignDate == null)
|
|
|
+ if (merchant.SignDate == null)
|
|
|
{
|
|
|
merchant.SignDate = DateTime.Now;
|
|
|
}
|
|
|
}
|
|
|
+ // if (merchant.Latitude == 0)
|
|
|
+ // {
|
|
|
+ // //签约成功调用腾讯地图接口获取地址
|
|
|
+ // RedisDbconn.Instance.AddList("GetTencentAddressInfoQueue", "{\"Address\":\"" + merchant.Areas + merchant.Address + "\"}");
|
|
|
+ // }
|
|
|
}
|
|
|
}
|
|
|
else
|
|
@@ -119,22 +124,27 @@ namespace MySystem
|
|
|
if (merchant != null)
|
|
|
{
|
|
|
merchant.QueryCount = 2;
|
|
|
- if(merchant.SignDate == null)
|
|
|
+ if (merchant.SignDate == null)
|
|
|
{
|
|
|
merchant.SignDate = DateTime.Now;
|
|
|
}
|
|
|
}
|
|
|
+ // if (merchant.Latitude == 0)
|
|
|
+ // {
|
|
|
+ // //签约成功调用腾讯地图接口获取地址
|
|
|
+ // RedisDbconn.Instance.AddList("GetTencentAddressInfoQueue", "{\"Address\":\"" + merchant.Areas + merchant.Address + "\"}");
|
|
|
+ // }
|
|
|
}
|
|
|
db.SaveChanges();
|
|
|
}
|
|
|
}
|
|
|
else if (dic["alipay_open_agent_order_query_response"]["order_status"].ToString() == "MERCHANT_APPLY_ORDER_CANCELED")
|
|
|
- {
|
|
|
+ {
|
|
|
MerchantAddInfo merchantadd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
|
|
|
if (merchantadd != null)
|
|
|
{
|
|
|
string reason = "";
|
|
|
- if(dic["alipay_open_agent_order_query_response"]["restrict_infos"].Count > 0)
|
|
|
+ if (dic["alipay_open_agent_order_query_response"]["restrict_infos"].Count > 0)
|
|
|
{
|
|
|
reason = dic["alipay_open_agent_order_query_response"]["restrict_infos"][0]["restrict_reason"].ToString();
|
|
|
}
|
|
@@ -149,13 +159,13 @@ namespace MySystem
|
|
|
}
|
|
|
}
|
|
|
else if (dic["alipay_open_agent_order_query_response"]["order_status"].ToString() == "MERCHANT_AUDITING")
|
|
|
- {
|
|
|
+ {
|
|
|
return "wait";
|
|
|
}
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- if(dic["alipay_open_agent_order_query_response"]["code"].ToString() == "40004" && dic["alipay_open_agent_order_query_response"]["sub_msg"].ToString() == "系统繁忙")
|
|
|
+ if (dic["alipay_open_agent_order_query_response"]["code"].ToString() == "40004" && dic["alipay_open_agent_order_query_response"]["sub_msg"].ToString() == "系统繁忙")
|
|
|
{
|
|
|
return "wait";
|
|
|
}
|