|
@@ -258,12 +258,15 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
{
|
|
{
|
|
Dictionary<string, object> Fiel = new Dictionary<string, object>();
|
|
Dictionary<string, object> Fiel = new Dictionary<string, object>();
|
|
Fiel.Add("CertMerchantName", CertMerchantName);
|
|
Fiel.Add("CertMerchantName", CertMerchantName);
|
|
|
|
+ int ParentId = MerchantAddInfoId;
|
|
Fiel.Add("OutMchtNo", MerchantAddInfoService.Query(MerchantAddInfoId).OutMchtNo); //费率
|
|
Fiel.Add("OutMchtNo", MerchantAddInfoService.Query(MerchantAddInfoId).OutMchtNo); //费率
|
|
|
|
+ Fiel.Add("ParentId", ParentId);
|
|
MerchantAddInfoId = (int)MerchantAddInfoService.Add(Fiel, false).Data;
|
|
MerchantAddInfoId = (int)MerchantAddInfoService.Add(Fiel, false).Data;
|
|
|
|
|
|
Fiel = new Dictionary<string, object>();
|
|
Fiel = new Dictionary<string, object>();
|
|
Fiel.Add("Id", MerchantAddInfoId);
|
|
Fiel.Add("Id", MerchantAddInfoId);
|
|
Fiel.Add("UserId", UserId);
|
|
Fiel.Add("UserId", UserId);
|
|
|
|
+ Fiel.Add("ParentId", ParentId);
|
|
Fiel.Add("Name", CertMerchantName);
|
|
Fiel.Add("Name", CertMerchantName);
|
|
MerchantInfoService.Add(Fiel, false);
|
|
MerchantInfoService.Add(Fiel, false);
|
|
}
|
|
}
|