|
@@ -81,18 +81,31 @@ namespace MySystem
|
|
}
|
|
}
|
|
else if (dic["alipay_open_agent_order_query_response"]["order_status"].ToString() == "MERCHANT_CONFIRM_SUCCESS")
|
|
else if (dic["alipay_open_agent_order_query_response"]["order_status"].ToString() == "MERCHANT_CONFIRM_SUCCESS")
|
|
{
|
|
{
|
|
|
|
+
|
|
MerchantAddInfo merchantadd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
|
|
MerchantAddInfo merchantadd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
|
|
if (merchantadd != null)
|
|
if (merchantadd != null)
|
|
{
|
|
{
|
|
merchantadd.AlipayPid = dic["alipay_open_agent_order_query_response"]["merchant_pid"].ToString();
|
|
merchantadd.AlipayPid = dic["alipay_open_agent_order_query_response"]["merchant_pid"].ToString();
|
|
- if(dic["alipay_open_agent_order_query_response"]["restrict_infos"].Count > 0)
|
|
+ if(content.Contains("restrict_infos"))
|
|
{
|
|
{
|
|
- merchantadd.QueryCount = -1;
|
|
+ if(dic["alipay_open_agent_order_query_response"]["restrict_infos"].Count > 0)
|
|
- merchantadd.AlipayRemark = dic["alipay_open_agent_order_query_response"]["restrict_infos"][0]["restrict_reason"].ToString();
|
|
+ {
|
|
- MerchantInfo merchant = db.MerchantInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
|
|
+ merchantadd.QueryCount = -1;
|
|
- if (merchant != null)
|
|
+ merchantadd.AlipayRemark = dic["alipay_open_agent_order_query_response"]["restrict_infos"][0]["restrict_reason"].ToString();
|
|
|
|
+ MerchantInfo merchant = db.MerchantInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
|
|
|
|
+ if (merchant != null)
|
|
|
|
+ {
|
|
|
|
+ merchant.QueryCount = -1;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ else
|
|
{
|
|
{
|
|
- merchant.QueryCount = -1;
|
|
+ merchantadd.QueryCount = 2;
|
|
|
|
+ MerchantInfo merchant = db.MerchantInfo.FirstOrDefault(m => m.Id == sign.MerchantAddInfoId);
|
|
|
|
+ if (merchant != null)
|
|
|
|
+ {
|
|
|
|
+ merchant.QueryCount = 2;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
else
|