|
@@ -90,6 +90,8 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
}
|
|
|
RedisDbconn.Instance.Set("ConfirmOrder:" + MerchantId + "_" + OrderNo, "1");
|
|
|
RedisDbconn.Instance.SetExpire("ConfirmOrder:" + MerchantId + "_" + OrderNo, 10);
|
|
|
+ var IsBuy = new MerchantDepositOrderService().QueryByMerchantId(MerchantId);
|
|
|
+ if (IsBuy.Id > 0) return new AppResultJson() { Status = "-1", Info = "请勿重复下单!" };
|
|
|
decimal ActPayPrice = 365; //服务费总额
|
|
|
var Id = MerchantDepositOrderUtil.AddMerchantDepositOrder(OrderNo, merchant.UserId, MerchantId, ActPayPrice);
|
|
|
var query = new MerchantDepositOrderService().QueryById(Id);
|
|
@@ -107,10 +109,10 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
{
|
|
|
value = DesDecrypt(value);
|
|
|
JsonData data = JsonMapper.ToObject(value);
|
|
|
- Dictionary<string, object> Obj = InfoDo(value);
|
|
|
- return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
|
|
|
+ AppResultJson result = InfoDo(value);
|
|
|
+ return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
|
|
|
}
|
|
|
- public Dictionary<string, object> InfoDo(string value)
|
|
|
+ public AppResultJson InfoDo(string value)
|
|
|
{
|
|
|
JsonData data = JsonMapper.ToObject(value);
|
|
|
int MerchantId = int.Parse(function.CheckInt(data["MerchantId"].ToString())); //商户Id
|
|
@@ -118,18 +120,21 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
var CreateDate = "";
|
|
|
var StartDate = "";
|
|
|
var EndDate = "";
|
|
|
+ var Status = -1;
|
|
|
var query = new MerchantDepositOrderService().QueryByMerchantId(MerchantId);
|
|
|
if (query.Id > 0)
|
|
|
{
|
|
|
CreateDate = DateTime.Parse(query.UpdateDate.ToString()).Year + "年" + DateTime.Parse(query.UpdateDate.ToString()).Month + "月" + DateTime.Parse(query.UpdateDate.ToString()).Day + "日";
|
|
|
StartDate = DateTime.Parse(query.UpdateDate.ToString()).AddMonths(1).Year + "年" + DateTime.Parse(query.UpdateDate.ToString()).AddMonths(1).Month + "月";
|
|
|
EndDate = DateTime.Parse(query.UpdateDate.ToString()).AddMonths(11).Year + "年" + DateTime.Parse(query.UpdateDate.ToString()).AddMonths(11).Month + "月";
|
|
|
+ Status = new MerchantInfoService().Query(MerchantId).ExamineStatus;
|
|
|
}
|
|
|
Obj.Add("CreateDate", CreateDate); //参与时间
|
|
|
Obj.Add("StartDate", StartDate); //考核开始时间
|
|
|
Obj.Add("EndDate", EndDate); //考核结束时间
|
|
|
+ Obj.Add("Status", Status); //考核状态(-1 未参与 0 考核中 1 已通过 2 未通过 101 待领取 100 已领取 99 发放中)
|
|
|
|
|
|
- return Obj;
|
|
|
+ return new AppResultJson() { Status = "1", Info = "", Data = Obj };
|
|
|
}
|
|
|
#endregion
|
|
|
|