|
@@ -35,7 +35,15 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
AppResultJson result = AddDo(value);
|
|
AppResultJson result = AddDo(value);
|
|
return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
|
|
return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
|
|
}
|
|
}
|
|
- public AppResultJson AddDo(string value)
|
|
|
|
|
|
+ public JsonResult AddSub(string value)
|
|
|
|
+ {
|
|
|
|
+ value = DesDecrypt(value);
|
|
|
|
+ value = value.Replace("null", "\"\"");
|
|
|
|
+ JsonData data = JsonMapper.ToObject(value);
|
|
|
|
+ AppResultJson result = AddDo(value, true);
|
|
|
|
+ return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
|
|
|
|
+ }
|
|
|
|
+ public AppResultJson AddDo(string value, bool sub = false)
|
|
{
|
|
{
|
|
function.WriteLog(value, "创客-首页-新增商户");
|
|
function.WriteLog(value, "创客-首页-新增商户");
|
|
JsonData data = JsonMapper.ToObject(value);
|
|
JsonData data = JsonMapper.ToObject(value);
|
|
@@ -44,6 +52,11 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
{
|
|
{
|
|
CybMakerCode = data.getItem("CybMakerCode").ToString();
|
|
CybMakerCode = data.getItem("CybMakerCode").ToString();
|
|
}
|
|
}
|
|
|
|
+ string SettleFee = "0.38";
|
|
|
|
+ if(value.Contains("SettleFee"))
|
|
|
|
+ {
|
|
|
|
+ SettleFee = data.getItem("SettleFee").ToString();
|
|
|
|
+ }
|
|
string LicenseCopy = data.getItem("LicenseCopy").ToString(); //- 营业执照
|
|
string LicenseCopy = data.getItem("LicenseCopy").ToString(); //- 营业执照
|
|
string CertMerchantName = data.getItem("CertMerchantName").ToString(); //- 商户名称
|
|
string CertMerchantName = data.getItem("CertMerchantName").ToString(); //- 商户名称
|
|
string LicenseNumber = data.getItem("LicenseNumber").ToString(); //- 商户信用代码
|
|
string LicenseNumber = data.getItem("LicenseNumber").ToString(); //- 商户信用代码
|
|
@@ -210,7 +223,7 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
if (SubjectType == "SUBJECT_TYPE_SMALL")
|
|
if (SubjectType == "SUBJECT_TYPE_SMALL")
|
|
{
|
|
{
|
|
// CertMerchantName += function.MD5_16(Guid.NewGuid().ToString("N"));
|
|
// CertMerchantName += function.MD5_16(Guid.NewGuid().ToString("N"));
|
|
- var check = MerchantAddInfoService.Query(" CertMerchantName='" + CertMerchantName + "' and Status<1 and QueryCount<1 and BrandId=" + BrandId);
|
|
|
|
|
|
+ var check = MerchantAddInfoService.Query(" CertMerchantName like '" + CertMerchantName + "%' and Status<1 and QueryCount<1 and BrandId=" + BrandId);
|
|
if (check.Id > 0)
|
|
if (check.Id > 0)
|
|
{
|
|
{
|
|
return new AppResultJson() { Status = "-1", Info = "该商户已暂存或进件,勿重复进件!", Data = Obj };
|
|
return new AppResultJson() { Status = "-1", Info = "该商户已暂存或进件,勿重复进件!", Data = Obj };
|
|
@@ -241,18 +254,31 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
}
|
|
}
|
|
else
|
|
else
|
|
{
|
|
{
|
|
- if (SubjectType == "SUBJECT_TYPE_SMALL")
|
|
|
|
|
|
+ if(sub)
|
|
{
|
|
{
|
|
- CertMerchantName = MerchantInfoService.Query(MerchantAddInfoId).Name;
|
|
|
|
|
|
+ Dictionary<string, object> Fiel = new Dictionary<string, object>();
|
|
|
|
+ Fiel.Add("CertMerchantName", CertMerchantName);
|
|
|
|
+ Fiel.Add("OutMchtNo", MerchantAddInfoService.Query(MerchantAddInfoId).OutMchtNo); //费率
|
|
|
|
+ int AddInfoId = (int)MerchantAddInfoService.Add(Fiel, false).Data;
|
|
|
|
+
|
|
|
|
+ Fiel = new Dictionary<string, object>();
|
|
|
|
+ Fiel.Add("Id", AddInfoId);
|
|
|
|
+ Fiel.Add("UserId", UserId);
|
|
|
|
+ Fiel.Add("Name", CertMerchantName);
|
|
|
|
+ MerchantInfoService.Add(Fiel, false);
|
|
}
|
|
}
|
|
else
|
|
else
|
|
{
|
|
{
|
|
- Fields.Add("CertMerchantName", CertMerchantName);
|
|
|
|
|
|
+ if (SubjectType == "SUBJECT_TYPE_SMALL")
|
|
|
|
+ {
|
|
|
|
+ CertMerchantName = MerchantInfoService.Query(MerchantAddInfoId).Name;
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ {
|
|
|
|
+ Fields.Add("CertMerchantName", CertMerchantName);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- // var ActivitiesId = "20191030111cff5b5e";
|
|
|
|
- // var ActivitiesRate = "0.38";
|
|
|
|
- // MerchantAddInfoUtil.EditMerchantAddInfo(query.Id, ContactName, ContactIdNumber, MobilePhone, ContactEmail, SubjectType, LicenseCopy, LicenseNumber, CertLegalPerson, CertMerchantName, CertLegalPerson, ServicePhone, BizStoreName, BizAddressCode, BizStoreAddress, StoreEntrancePic, IndoorPic, QualificationType, SettlementId, BankAccountType, AccountName, AccountBank, BankAddressCode, BankName, BankBranchId, AccountNumber, IdCardCopy, IdCardNational, IdCardName, IdCardNumber, IdCardAddress, CardPeriodBegin, CardPeriodEnd, MerchantShortname, Qualifications, ActivitiesId, ActivitiesRate, AlipayAccount, AlipayMccCode, ChannelKind, SalesScenesType, OpenAccountLicenses, RentAgreement, OperatorMcht, AgentProtocol, SignaturePicture, Support, CheckstandImg, ProductImg, Agreement, TaxImage, OrganizationCopy, IndustryLicense1, FaceRecognition, Extra1, BankCard, PersonWithIdCard, TakeCreditCard, MchtNo);
|
|
|
|
|
|
|
|
Fields.Add("LicenseCopy", LicenseCopy); //- 营业执照
|
|
Fields.Add("LicenseCopy", LicenseCopy); //- 营业执照
|
|
if (!Fields.ContainsKey("CertMerchantName")) Fields.Add("CertMerchantName", CertMerchantName); //- 商户名称
|
|
if (!Fields.ContainsKey("CertMerchantName")) Fields.Add("CertMerchantName", CertMerchantName); //- 商户名称
|
|
@@ -329,6 +355,7 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
Fields.Add("PlaceType", PlaceType); // 小微商户经营场所类型(0 固定场所 1 流动动摊贩)
|
|
Fields.Add("PlaceType", PlaceType); // 小微商户经营场所类型(0 固定场所 1 流动动摊贩)
|
|
Fields.Add("BrandId", BrandId); // 品牌(0 银联 1 好哒)
|
|
Fields.Add("BrandId", BrandId); // 品牌(0 银联 1 好哒)
|
|
Fields.Add("CybMakerCode", CybMakerCode); //创业帮创客编号
|
|
Fields.Add("CybMakerCode", CybMakerCode); //创业帮创客编号
|
|
|
|
+ Fields.Add("FeeRate", SettleFee); //费率
|
|
MerchantAddInfoId = (int)MerchantInfoUtil.EditMerchantInfo(MerchantAddInfoId, UserId, CertMerchantName, MobilePhone, BizAddressCode, BizStoreAddress, BindStatus, BrandId, CybMakerCode).Data;
|
|
MerchantAddInfoId = (int)MerchantInfoUtil.EditMerchantInfo(MerchantAddInfoId, UserId, CertMerchantName, MobilePhone, BizAddressCode, BizStoreAddress, BindStatus, BrandId, CybMakerCode).Data;
|
|
MerchantAddInfoUtil.EditMerchantAddInfo(Fields, MerchantAddInfoId);
|
|
MerchantAddInfoUtil.EditMerchantAddInfo(Fields, MerchantAddInfoId);
|
|
if (Finish == 1)
|
|
if (Finish == 1)
|
|
@@ -691,7 +718,29 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
}
|
|
}
|
|
#endregion
|
|
#endregion
|
|
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ #region 创客-首页-设置费率
|
|
|
|
+ // [Authorize]
|
|
|
|
+ public JsonResult SetFee(string value)
|
|
|
|
+ {
|
|
|
|
+ value = DesDecrypt(value);
|
|
|
|
+ JsonData data = JsonMapper.ToObject(value);
|
|
|
|
+ string SettleFee = data["SettleFee"].ToString(); //分类
|
|
|
|
+ int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
|
|
|
|
+ if(SettleFee == "0.25") SettleFee = "0.25";
|
|
|
|
+ else if(SettleFee == "0.30") SettleFee = "0.30";
|
|
|
|
+ else SettleFee = "0.38";
|
|
|
|
+ MerchantAddInfo add = maindb.MerchantAddInfo.FirstOrDefault(m => m.Id == Id);
|
|
|
|
+ if(add != null)
|
|
|
|
+ {
|
|
|
|
+ add.FeeRate = SettleFee;
|
|
|
|
+ maindb.SaveChanges();
|
|
|
|
+ RedisDbconn.Instance.AddList("HaoDaFeeQueue", Id.ToString());
|
|
|
|
+ return Json(new AppResultJson() { Status = "1", Info = "" });
|
|
|
|
+ }
|
|
|
|
+ return Json(new AppResultJson() { Status = "-1", Info = "设置失败" });
|
|
|
|
+ }
|
|
|
|
+ #endregion
|
|
|
|
|
|
|
|
|
|
|
|
|