|
@@ -17,414 +17,399 @@ namespace MySystem
|
|
|
private SetDepositPostService()
|
|
|
{ }
|
|
|
|
|
|
- public void Start()
|
|
|
- {
|
|
|
- Thread th = new Thread(dosomething);
|
|
|
- th.IsBackground = true;
|
|
|
- th.Start();
|
|
|
- }
|
|
|
|
|
|
- public void dosomething()
|
|
|
+ public bool ChangeFee(string data)
|
|
|
{
|
|
|
- while (true)
|
|
|
+ bool result = true;
|
|
|
+ try
|
|
|
{
|
|
|
- string data = RedisDbconn.Instance.RPop<string>("SetDepositPostQueue");
|
|
|
- if (!string.IsNullOrEmpty(data))
|
|
|
+ WebCMSEntities db = new WebCMSEntities();
|
|
|
+ JsonData jsonObj = JsonMapper.ToObject(data);
|
|
|
+ string PosIds = jsonObj["PosId"].ToString();
|
|
|
+ int Kind = int.Parse(function.CheckInt(jsonObj["Kind"].ToString()));
|
|
|
+ int RecordId = 0;
|
|
|
+ if(data.Contains("\"RecordId\""))
|
|
|
+ {
|
|
|
+ RecordId = int.Parse(function.CheckInt(jsonObj["RecordId"].ToString()));
|
|
|
+ }
|
|
|
+ string OpMan = jsonObj["OpMan"].ToString();
|
|
|
+ if(!string.IsNullOrEmpty(PosIds) && Kind > 0)
|
|
|
{
|
|
|
- try
|
|
|
+ List<int> ids = new List<int>();
|
|
|
+ string[] PosIdList = PosIds.Split(',');
|
|
|
+ foreach(string sub in PosIdList)
|
|
|
{
|
|
|
- WebCMSEntities db = new WebCMSEntities();
|
|
|
- JsonData jsonObj = JsonMapper.ToObject(data);
|
|
|
- string PosIds = jsonObj["PosId"].ToString();
|
|
|
- int Kind = int.Parse(function.CheckInt(jsonObj["Kind"].ToString()));
|
|
|
- int RecordId = 0;
|
|
|
- if(data.Contains("\"RecordId\""))
|
|
|
- {
|
|
|
- RecordId = int.Parse(function.CheckInt(jsonObj["RecordId"].ToString()));
|
|
|
- }
|
|
|
- string OpMan = jsonObj["OpMan"].ToString();
|
|
|
- if(!string.IsNullOrEmpty(PosIds) && Kind > 0)
|
|
|
+ ids.Add(int.Parse(sub));
|
|
|
+ }
|
|
|
+ List<KqProducts> brands = db.KqProducts.ToList();
|
|
|
+ List<PosMachinesTwo> poslist = db.PosMachinesTwo.Where(m => ids.Contains(m.Id)).ToList();
|
|
|
+ List<int> mids = poslist.Select(m => m.BindMerchantId).ToList();
|
|
|
+ List<PosMerchantInfo> merchantlist = db.PosMerchantInfo.Where(m => mids.Contains(m.Id)).ToList();
|
|
|
+ foreach(PosMachinesTwo pos in poslist)
|
|
|
+ {
|
|
|
+ PosMerchantInfo merchant = merchantlist.FirstOrDefault(m => m.Id == pos.BindMerchantId);
|
|
|
+ if(merchant != null)
|
|
|
{
|
|
|
- List<int> ids = new List<int>();
|
|
|
- string[] PosIdList = PosIds.Split(',');
|
|
|
- foreach(string sub in PosIdList)
|
|
|
+ decimal Fee = 0.63M;
|
|
|
+ int addRate = 0;
|
|
|
+ if(pos.BrandId != 12 && pos.BrandId != 13)
|
|
|
{
|
|
|
- ids.Add(int.Parse(sub));
|
|
|
- }
|
|
|
- List<KqProducts> brands = db.KqProducts.ToList();
|
|
|
- List<PosMachinesTwo> poslist = db.PosMachinesTwo.Where(m => ids.Contains(m.Id)).ToList();
|
|
|
- List<int> mids = poslist.Select(m => m.BindMerchantId).ToList();
|
|
|
- List<PosMerchantInfo> merchantlist = db.PosMerchantInfo.Where(m => mids.Contains(m.Id)).ToList();
|
|
|
- foreach(PosMachinesTwo pos in poslist)
|
|
|
- {
|
|
|
- PosMerchantInfo merchant = merchantlist.FirstOrDefault(m => m.Id == pos.BindMerchantId);
|
|
|
- if(merchant != null)
|
|
|
+ if(Kind == 1)
|
|
|
{
|
|
|
- decimal Fee = 0.63M;
|
|
|
- int addRate = 0;
|
|
|
- if(pos.BrandId != 12 && pos.BrandId != 13)
|
|
|
- {
|
|
|
- if(Kind == 1)
|
|
|
- {
|
|
|
- addRate = 3;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- addRate = 0;
|
|
|
- if(Kind == 3)
|
|
|
- {
|
|
|
- Fee = 0.6M;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- if(pos.BrandId == 12 || pos.BrandId == 13)
|
|
|
- {
|
|
|
- if(Kind == 1) Kind = 2;
|
|
|
- if(Kind == 3) Fee = 0.6M;
|
|
|
- }
|
|
|
- if(pos.BrandId == 7 && Kind == 4)
|
|
|
- {
|
|
|
- Fee = decimal.Parse(function.CheckNum(jsonObj["Fee"].ToString()));
|
|
|
- addRate = int.Parse(function.CheckInt(jsonObj["AddRate"].ToString()));
|
|
|
- }
|
|
|
- if(pos.BrandId == 1 || pos.BrandId == 3) //金控
|
|
|
- {
|
|
|
- addRate = addRate * 100;
|
|
|
- // string content = function.GetWebRequest("http://connect.kexiaoshuang.com/home/setfee?merNo=" + merchant.KqMerNo + "&sn=" + pos.PosSn + "&fee=" + Fee + "&addRate=" + addRate);
|
|
|
- // string content = SetFee(merchant.KqMerNo, pos.PosSn, Fee, addRate);
|
|
|
- string content = PublicImportDataService.Instance.LkbSetFee(pos.PosSn, Fee, addRate);
|
|
|
- JsonData obj = JsonMapper.ToObject(content);
|
|
|
- if (obj["respCode"].ToString() == "00")
|
|
|
- {
|
|
|
- pos.SeoDescription = "设置成功";
|
|
|
- SetRecordResult(db, RecordId, 1, "设置成功");
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- string msg = obj["respMsg"].ToString();
|
|
|
- pos.SeoDescription = msg;
|
|
|
- SetRecordResult(db, RecordId, -1, msg);
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
- }
|
|
|
- else if(pos.BrandId == 2) //开店宝
|
|
|
- {
|
|
|
- Fee = Fee / 100;
|
|
|
- string content = ModifyFee(pos.PosSn, Fee, addRate.ToString());
|
|
|
- JsonData obj = JsonMapper.ToObject(content);
|
|
|
- if(content.Contains("orderNo"))
|
|
|
- {
|
|
|
- pos.SeoDescription = "提交成功|" + obj["orderNo"].ToString() + "|" + RecordId;
|
|
|
- // SetRecordResult(db, RecordId, 1, "设置成功");
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- string msg = obj["msg"].ToString();
|
|
|
- pos.SeoDescription = msg;
|
|
|
- SetRecordResult(db, RecordId, -1, msg);
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
- }
|
|
|
- else if(pos.BrandId == 4 || pos.BrandId == 5) //乐刷
|
|
|
+ addRate = 3;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ addRate = 0;
|
|
|
+ if(Kind == 3)
|
|
|
{
|
|
|
- // 电签
|
|
|
- // 电签标准0.63 729702301652492288
|
|
|
- // 电签优惠0.63 729702442300088320
|
|
|
- // 电签pos不加 696339175297294336
|
|
|
-
|
|
|
- // 大POS
|
|
|
- // PY-传统POS标准0.63 554666598481842176
|
|
|
- // PY-传统POS优惠0.63 683857388021264384
|
|
|
- // 大pos不加 698228081038991360
|
|
|
-
|
|
|
- // 大POS
|
|
|
- // 大POS标准0.6:713806109336940544
|
|
|
- // 大POS优惠0.6:713806774515802112
|
|
|
-
|
|
|
- // 电签POS
|
|
|
- // 电签标准0.6:712391426860134400
|
|
|
- // 电签优惠0.6:712391668250718208
|
|
|
- // S0电签pos不加:696339175297294336
|
|
|
- string bzConfigId = "", yhConfigId = "", surfeeConfigId = "";
|
|
|
- if(pos.BrandId == 4)
|
|
|
- {
|
|
|
- if(Kind == 1)
|
|
|
- {
|
|
|
- bzConfigId = "729702301652492288";
|
|
|
- yhConfigId = "729702442300088320";
|
|
|
- surfeeConfigId = "696339175297294336";
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- bzConfigId = "712391426860134400";
|
|
|
- yhConfigId = "712391668250718208";
|
|
|
- surfeeConfigId = "696339175297294336";
|
|
|
- }
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- if(Kind == 1)
|
|
|
- {
|
|
|
- bzConfigId = "554666598481842176";
|
|
|
- yhConfigId = "683857388021264384";
|
|
|
- surfeeConfigId = "698228081038991360";
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- bzConfigId = "713806109336940544";
|
|
|
- yhConfigId = "713806774515802112";
|
|
|
- surfeeConfigId = "698228081038991360";
|
|
|
- }
|
|
|
- }
|
|
|
- string content = SetFeeForBrand(pos.PosSn, bzConfigId, yhConfigId, surfeeConfigId, pos.BrandId);
|
|
|
- JsonData obj = JsonMapper.ToObject(content);
|
|
|
- if(obj["code"].ToString() == "0")
|
|
|
- {
|
|
|
- pos.SeoDescription = "设置成功";
|
|
|
- SetRecordResult(db, RecordId, 1, "设置成功");
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- string msg = obj["msg"].ToString();
|
|
|
- pos.SeoDescription = msg;
|
|
|
- SetRecordResult(db, RecordId, -1, msg);
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
+ Fee = 0.6M;
|
|
|
}
|
|
|
- else if(pos.BrandId == 6) //立刷
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(pos.BrandId == 12 || pos.BrandId == 13)
|
|
|
+ {
|
|
|
+ if(Kind == 1) Kind = 2;
|
|
|
+ if(Kind == 3) Fee = 0.6M;
|
|
|
+ }
|
|
|
+ if(pos.BrandId == 7 && Kind == 4)
|
|
|
+ {
|
|
|
+ Fee = decimal.Parse(function.CheckNum(jsonObj["Fee"].ToString()));
|
|
|
+ addRate = int.Parse(function.CheckInt(jsonObj["AddRate"].ToString()));
|
|
|
+ }
|
|
|
+ if(pos.BrandId == 1 || pos.BrandId == 3) //金控
|
|
|
+ {
|
|
|
+ addRate = addRate * 100;
|
|
|
+ // string content = function.GetWebRequest("http://connect.kexiaoshuang.com/home/setfee?merNo=" + merchant.KqMerNo + "&sn=" + pos.PosSn + "&fee=" + Fee + "&addRate=" + addRate);
|
|
|
+ // string content = SetFee(merchant.KqMerNo, pos.PosSn, Fee, addRate);
|
|
|
+ string content = PublicImportDataService.Instance.LkbSetFee(pos.PosSn, Fee, addRate);
|
|
|
+ JsonData obj = JsonMapper.ToObject(content);
|
|
|
+ if (obj["respCode"].ToString() == "00")
|
|
|
+ {
|
|
|
+ pos.SeoDescription = "设置成功";
|
|
|
+ SetRecordResult(db, RecordId, 1, "设置成功");
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ string msg = obj["respMsg"].ToString();
|
|
|
+ pos.SeoDescription = msg;
|
|
|
+ SetRecordResult(db, RecordId, -1, msg);
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if(pos.BrandId == 2) //开店宝
|
|
|
+ {
|
|
|
+ Fee = Fee / 100;
|
|
|
+ string content = ModifyFee(pos.PosSn, Fee, addRate.ToString());
|
|
|
+ JsonData obj = JsonMapper.ToObject(content);
|
|
|
+ if(content.Contains("orderNo"))
|
|
|
+ {
|
|
|
+ pos.SeoDescription = "提交成功|" + obj["orderNo"].ToString() + "|" + RecordId;
|
|
|
+ // SetRecordResult(db, RecordId, 1, "设置成功");
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ string msg = obj["msg"].ToString();
|
|
|
+ pos.SeoDescription = msg;
|
|
|
+ SetRecordResult(db, RecordId, -1, msg);
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if(pos.BrandId == 4 || pos.BrandId == 5) //乐刷
|
|
|
+ {
|
|
|
+ // 电签
|
|
|
+ // 电签标准0.63 729702301652492288
|
|
|
+ // 电签优惠0.63 729702442300088320
|
|
|
+ // 电签pos不加 696339175297294336
|
|
|
+
|
|
|
+ // 大POS
|
|
|
+ // PY-传统POS标准0.63 554666598481842176
|
|
|
+ // PY-传统POS优惠0.63 683857388021264384
|
|
|
+ // 大pos不加 698228081038991360
|
|
|
+
|
|
|
+ // 大POS
|
|
|
+ // 大POS标准0.6:713806109336940544
|
|
|
+ // 大POS优惠0.6:713806774515802112
|
|
|
+
|
|
|
+ // 电签POS
|
|
|
+ // 电签标准0.6:712391426860134400
|
|
|
+ // 电签优惠0.6:712391668250718208
|
|
|
+ // S0电签pos不加:696339175297294336
|
|
|
+ string bzConfigId = "", yhConfigId = "", surfeeConfigId = "";
|
|
|
+ if(pos.BrandId == 4)
|
|
|
+ {
|
|
|
+ if(Kind == 1)
|
|
|
{
|
|
|
- addRate = addRate * 100;
|
|
|
- string content = PublicImportDataService.Instance.SetLiSFee(pos.PosSn, merchant.KqMerNo, Fee.ToString("f2"), addRate.ToString());
|
|
|
- JsonData obj = JsonMapper.ToObject(content);
|
|
|
- if (obj["ret_code"].ToString() == "00")
|
|
|
- {
|
|
|
- SetRecordResult(db, RecordId, 1);
|
|
|
- AddFeeRecord(db, merchant, pos);
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- string msg = obj["ret_msg"].ToString();
|
|
|
- pos.SeoDescription = msg;
|
|
|
- SetRecordResult(db, RecordId, -1, msg);
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
+ bzConfigId = "729702301652492288";
|
|
|
+ yhConfigId = "729702442300088320";
|
|
|
+ surfeeConfigId = "696339175297294336";
|
|
|
}
|
|
|
- else if(pos.BrandId == 22) //立刷微电签
|
|
|
+ else
|
|
|
{
|
|
|
- addRate = addRate * 100;
|
|
|
- string content = PublicImportDataService.Instance.SetLiSWeFee(pos.PosSn, merchant.KqMerNo, Fee.ToString("f2"), addRate.ToString());
|
|
|
- JsonData obj = JsonMapper.ToObject(content);
|
|
|
- if (obj["ret_code"].ToString() == "00")
|
|
|
- {
|
|
|
- pos.SeoDescription = "设置成功";
|
|
|
- SetRecordResult(db, RecordId, 1);
|
|
|
- AddFeeRecord(db, merchant, pos);
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- string msg = obj["ret_msg"].ToString();
|
|
|
- pos.SeoDescription = msg;
|
|
|
- SetRecordResult(db, RecordId, -1, msg);
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
+ bzConfigId = "712391426860134400";
|
|
|
+ yhConfigId = "712391668250718208";
|
|
|
+ surfeeConfigId = "696339175297294336";
|
|
|
}
|
|
|
- else if(pos.BrandId == 7) //盛付通
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ if(Kind == 1)
|
|
|
{
|
|
|
- string content = SetFeeForSft(merchant.KqMerNo, Fee.ToString("f4"), addRate.ToString());
|
|
|
- JsonData obj = JsonMapper.ToObject(content);
|
|
|
- if(obj["respCode"].ToString() == "00")
|
|
|
- {
|
|
|
- pos.SeoDescription = "设置成功";
|
|
|
- SetRecordResult(db, RecordId, 1, "设置成功");
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- string msg = obj["errorMsg"].ToString();
|
|
|
- pos.SeoDescription = msg;
|
|
|
- SetRecordResult(db, RecordId, -1, msg);
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
+ bzConfigId = "554666598481842176";
|
|
|
+ yhConfigId = "683857388021264384";
|
|
|
+ surfeeConfigId = "698228081038991360";
|
|
|
}
|
|
|
- else if(pos.BrandId == 8 || pos.BrandId == 9) //海科
|
|
|
+ else
|
|
|
{
|
|
|
- // 【融通金宝大POS】
|
|
|
- // 584068951081226240 大POS标准贷0.60|借0.50
|
|
|
- // 584070145207963648 大POS优惠贷0.60|借0.5
|
|
|
- // 574600660289888256 大POS不加
|
|
|
-
|
|
|
- // 691739824478494720 大POS标准贷0.63|借0.50
|
|
|
- // 691740128238383104 大POS优惠贷0.63|借0.50
|
|
|
- // 574600660289888256 大POS不加
|
|
|
-
|
|
|
- // 【融通金宝电签POS】
|
|
|
- // 585167132691009536 电签POS标准贷0.60|借0.50
|
|
|
- // 579355312831074304 电签POS优惠贷0.6|借0.5
|
|
|
- // 570331704834170880 电签POS不加
|
|
|
-
|
|
|
- // 684753829778436096 电签POS标准贷0.63|借0.50
|
|
|
- // 684754046342934528 电签POS优惠贷0.63|借0.5
|
|
|
- // 570331704834170880 电签POS不加
|
|
|
- string bzConfigId = "", yhConfigId = "", surfeeConfigId = "";
|
|
|
- if(pos.BrandId == 8)
|
|
|
- {
|
|
|
- if(Kind == 1)
|
|
|
- {
|
|
|
- bzConfigId = "684753829778436096";
|
|
|
- yhConfigId = "684754046342934528";
|
|
|
- surfeeConfigId = "570331704834170880";
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- bzConfigId = "585167132691009536";
|
|
|
- yhConfigId = "579355312831074304";
|
|
|
- surfeeConfigId = "570331704834170880";
|
|
|
- }
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- if(Kind == 1)
|
|
|
- {
|
|
|
- bzConfigId = "691739824478494720";
|
|
|
- yhConfigId = "691740128238383104";
|
|
|
- surfeeConfigId = "574600660289888256";
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- bzConfigId = "584068951081226240";
|
|
|
- yhConfigId = "584070145207963648";
|
|
|
- surfeeConfigId = "574600660289888256";
|
|
|
- }
|
|
|
- }
|
|
|
- string content = HKSetFeeForBrand(pos.PosSn, bzConfigId, yhConfigId, surfeeConfigId, pos.BrandId);
|
|
|
- JsonData obj = JsonMapper.ToObject(content);
|
|
|
- if(obj["code"].ToString() == "0")
|
|
|
- {
|
|
|
- pos.SeoDescription = "设置成功";
|
|
|
- SetRecordResult(db, RecordId, 1, "设置成功");
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- string msg = obj["msg"].ToString();
|
|
|
- pos.SeoDescription = msg;
|
|
|
- SetRecordResult(db, RecordId, -1, msg);
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
+ bzConfigId = "713806109336940544";
|
|
|
+ yhConfigId = "713806774515802112";
|
|
|
+ surfeeConfigId = "698228081038991360";
|
|
|
}
|
|
|
- else if(pos.BrandId == 10 || pos.BrandId == 11) //联动
|
|
|
+ }
|
|
|
+ string content = SetFeeForBrand(pos.PosSn, bzConfigId, yhConfigId, surfeeConfigId, pos.BrandId);
|
|
|
+ JsonData obj = JsonMapper.ToObject(content);
|
|
|
+ if(obj["code"].ToString() == "0")
|
|
|
+ {
|
|
|
+ pos.SeoDescription = "设置成功";
|
|
|
+ SetRecordResult(db, RecordId, 1, "设置成功");
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ string msg = obj["msg"].ToString();
|
|
|
+ pos.SeoDescription = msg;
|
|
|
+ SetRecordResult(db, RecordId, -1, msg);
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if(pos.BrandId == 6) //立刷
|
|
|
+ {
|
|
|
+ addRate = addRate * 100;
|
|
|
+ string content = PublicImportDataService.Instance.SetLiSFee(pos.PosSn, merchant.KqMerNo, Fee.ToString("f2"), addRate.ToString());
|
|
|
+ JsonData obj = JsonMapper.ToObject(content);
|
|
|
+ if (obj["ret_code"].ToString() == "00")
|
|
|
+ {
|
|
|
+ SetRecordResult(db, RecordId, 1);
|
|
|
+ AddFeeRecord(db, merchant, pos);
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ string msg = obj["ret_msg"].ToString();
|
|
|
+ pos.SeoDescription = msg;
|
|
|
+ SetRecordResult(db, RecordId, -1, msg);
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if(pos.BrandId == 22) //立刷微电签
|
|
|
+ {
|
|
|
+ addRate = addRate * 100;
|
|
|
+ string content = PublicImportDataService.Instance.SetLiSWeFee(pos.PosSn, merchant.KqMerNo, Fee.ToString("f2"), addRate.ToString());
|
|
|
+ JsonData obj = JsonMapper.ToObject(content);
|
|
|
+ if (obj["ret_code"].ToString() == "00")
|
|
|
+ {
|
|
|
+ pos.SeoDescription = "设置成功";
|
|
|
+ SetRecordResult(db, RecordId, 1);
|
|
|
+ AddFeeRecord(db, merchant, pos);
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ string msg = obj["ret_msg"].ToString();
|
|
|
+ pos.SeoDescription = msg;
|
|
|
+ SetRecordResult(db, RecordId, -1, msg);
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if(pos.BrandId == 7) //盛付通
|
|
|
+ {
|
|
|
+ string content = SetFeeForSft(merchant.KqMerNo, Fee.ToString("f4"), addRate.ToString());
|
|
|
+ JsonData obj = JsonMapper.ToObject(content);
|
|
|
+ if(obj["respCode"].ToString() == "00")
|
|
|
+ {
|
|
|
+ pos.SeoDescription = "设置成功";
|
|
|
+ SetRecordResult(db, RecordId, 1, "设置成功");
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ string msg = obj["errorMsg"].ToString();
|
|
|
+ pos.SeoDescription = msg;
|
|
|
+ SetRecordResult(db, RecordId, -1, msg);
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if(pos.BrandId == 8 || pos.BrandId == 9) //海科
|
|
|
+ {
|
|
|
+ // 【融通金宝大POS】
|
|
|
+ // 584068951081226240 大POS标准贷0.60|借0.50
|
|
|
+ // 584070145207963648 大POS优惠贷0.60|借0.5
|
|
|
+ // 574600660289888256 大POS不加
|
|
|
+
|
|
|
+ // 691739824478494720 大POS标准贷0.63|借0.50
|
|
|
+ // 691740128238383104 大POS优惠贷0.63|借0.50
|
|
|
+ // 574600660289888256 大POS不加
|
|
|
+
|
|
|
+ // 【融通金宝电签POS】
|
|
|
+ // 585167132691009536 电签POS标准贷0.60|借0.50
|
|
|
+ // 579355312831074304 电签POS优惠贷0.6|借0.5
|
|
|
+ // 570331704834170880 电签POS不加
|
|
|
+
|
|
|
+ // 684753829778436096 电签POS标准贷0.63|借0.50
|
|
|
+ // 684754046342934528 电签POS优惠贷0.63|借0.5
|
|
|
+ // 570331704834170880 电签POS不加
|
|
|
+ string bzConfigId = "", yhConfigId = "", surfeeConfigId = "";
|
|
|
+ if(pos.BrandId == 8)
|
|
|
+ {
|
|
|
+ if(Kind == 1)
|
|
|
{
|
|
|
- decimal LastFee = Fee / 100;
|
|
|
- string content = LDFeeRate(merchant.KqMerNo, LastFee.ToString("f4"), pos.BrandId, addRate);
|
|
|
- JsonData obj = JsonMapper.ToObject(content);
|
|
|
- if(obj["code"].ToString() == "000000")
|
|
|
- {
|
|
|
- pos.SeoDescription = "设置成功";
|
|
|
- SetRecordResult(db, RecordId, 1, "设置成功");
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- string msg = obj["msg"].ToString();
|
|
|
- pos.SeoDescription = msg;
|
|
|
- SetRecordResult(db, RecordId, -1, msg);
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
+ bzConfigId = "684753829778436096";
|
|
|
+ yhConfigId = "684754046342934528";
|
|
|
+ surfeeConfigId = "570331704834170880";
|
|
|
}
|
|
|
- else if(pos.BrandId == 12 || pos.BrandId == 13) //盒易付
|
|
|
+ else
|
|
|
{
|
|
|
- string content = BoxFee(merchant.KqMerNo, Fee.ToString("f2"));
|
|
|
- JsonData obj = JsonMapper.ToObject(content);
|
|
|
- if(obj["resultCode"].ToString() == "1")
|
|
|
- {
|
|
|
- pos.SeoDescription = "设置成功";
|
|
|
- SetRecordResult(db, RecordId, 1, "设置成功");
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- string msg = obj["errorDesc"].ToString();
|
|
|
- pos.SeoDescription = msg;
|
|
|
- SetRecordResult(db, RecordId, -1, msg);
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
+ bzConfigId = "585167132691009536";
|
|
|
+ yhConfigId = "579355312831074304";
|
|
|
+ surfeeConfigId = "570331704834170880";
|
|
|
}
|
|
|
- else if(pos.BrandId == 15 || pos.BrandId == 16) //联客宝
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ if(Kind == 1)
|
|
|
{
|
|
|
- List<string> merno = new List<string>();
|
|
|
- merno.Add(merchant.KqMerNo);
|
|
|
- string policy_code = "";
|
|
|
- string policy_name = "";
|
|
|
- if(Kind == 1)
|
|
|
- {
|
|
|
- policy_code = "LKB_0.63+3";
|
|
|
- policy_name = "联客宝";
|
|
|
- }
|
|
|
- else if(Kind == 2)
|
|
|
- {
|
|
|
- policy_code = "LKB_0.63+0";
|
|
|
- policy_name = "联客宝0.63+0";
|
|
|
- }
|
|
|
- else if(Kind == 3)
|
|
|
- {
|
|
|
- policy_code = "LKB_0.6+0";
|
|
|
- policy_name = "联客宝0.6+0";
|
|
|
- }
|
|
|
- string content = PublicImportDataService.Instance.PospFee(merno, policy_code, policy_name);
|
|
|
- JsonData obj = JsonMapper.ToObject(content);
|
|
|
- if(obj["code"].ToString() == "200")
|
|
|
- {
|
|
|
- pos.SeoDescription = "设置成功";
|
|
|
- SetRecordResult(db, RecordId, 1, "设置成功");
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- string msg = obj["msg"].ToString();
|
|
|
- pos.SeoDescription = msg;
|
|
|
- SetRecordResult(db, RecordId, -1, msg);
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
+ bzConfigId = "691739824478494720";
|
|
|
+ yhConfigId = "691740128238383104";
|
|
|
+ surfeeConfigId = "574600660289888256";
|
|
|
}
|
|
|
- else if(pos.BrandId == 30 || pos.BrandId == 31) //拉卡拉
|
|
|
+ else
|
|
|
{
|
|
|
- string content = PublicImportDataService.Instance.LkLSetFee(merchant.KqMerNo, Fee, addRate);
|
|
|
- JsonData obj = JsonMapper.ToObject(content);
|
|
|
- if (obj["message"].ToString() == "SUCCESS")
|
|
|
- {
|
|
|
- pos.SeoDescription = "设置成功";
|
|
|
- SetRecordResult(db, RecordId, 1, "设置成功");
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- string msg = obj["message"].ToString();
|
|
|
- pos.SeoDescription = msg;
|
|
|
- SetRecordResult(db, RecordId, -1, msg);
|
|
|
- db.SaveChanges();
|
|
|
- }
|
|
|
+ bzConfigId = "584068951081226240";
|
|
|
+ yhConfigId = "584070145207963648";
|
|
|
+ surfeeConfigId = "574600660289888256";
|
|
|
}
|
|
|
}
|
|
|
+ string content = HKSetFeeForBrand(pos.PosSn, bzConfigId, yhConfigId, surfeeConfigId, pos.BrandId);
|
|
|
+ JsonData obj = JsonMapper.ToObject(content);
|
|
|
+ if(obj["code"].ToString() == "0")
|
|
|
+ {
|
|
|
+ pos.SeoDescription = "设置成功";
|
|
|
+ SetRecordResult(db, RecordId, 1, "设置成功");
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ string msg = obj["msg"].ToString();
|
|
|
+ pos.SeoDescription = msg;
|
|
|
+ SetRecordResult(db, RecordId, -1, msg);
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if(pos.BrandId == 10 || pos.BrandId == 11) //联动
|
|
|
+ {
|
|
|
+ decimal LastFee = Fee / 100;
|
|
|
+ string content = LDFeeRate(merchant.KqMerNo, LastFee.ToString("f4"), pos.BrandId, addRate);
|
|
|
+ JsonData obj = JsonMapper.ToObject(content);
|
|
|
+ if(obj["code"].ToString() == "000000")
|
|
|
+ {
|
|
|
+ pos.SeoDescription = "设置成功";
|
|
|
+ SetRecordResult(db, RecordId, 1, "设置成功");
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ string msg = obj["msg"].ToString();
|
|
|
+ pos.SeoDescription = msg;
|
|
|
+ SetRecordResult(db, RecordId, -1, msg);
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if(pos.BrandId == 12 || pos.BrandId == 13) //盒易付
|
|
|
+ {
|
|
|
+ string content = BoxFee(merchant.KqMerNo, Fee.ToString("f2"));
|
|
|
+ JsonData obj = JsonMapper.ToObject(content);
|
|
|
+ if(obj["resultCode"].ToString() == "1")
|
|
|
+ {
|
|
|
+ pos.SeoDescription = "设置成功";
|
|
|
+ SetRecordResult(db, RecordId, 1, "设置成功");
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ string msg = obj["errorDesc"].ToString();
|
|
|
+ pos.SeoDescription = msg;
|
|
|
+ SetRecordResult(db, RecordId, -1, msg);
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if(pos.BrandId == 15 || pos.BrandId == 16) //联客宝
|
|
|
+ {
|
|
|
+ List<string> merno = new List<string>();
|
|
|
+ merno.Add(merchant.KqMerNo);
|
|
|
+ string policy_code = "";
|
|
|
+ string policy_name = "";
|
|
|
+ if(Kind == 1)
|
|
|
+ {
|
|
|
+ policy_code = "LKB_0.63+3";
|
|
|
+ policy_name = "联客宝";
|
|
|
+ }
|
|
|
+ else if(Kind == 2)
|
|
|
+ {
|
|
|
+ policy_code = "LKB_0.63+0";
|
|
|
+ policy_name = "联客宝0.63+0";
|
|
|
+ }
|
|
|
+ else if(Kind == 3)
|
|
|
+ {
|
|
|
+ policy_code = "LKB_0.6+0";
|
|
|
+ policy_name = "联客宝0.6+0";
|
|
|
+ }
|
|
|
+ string content = PublicImportDataService.Instance.PospFee(merno, policy_code, policy_name);
|
|
|
+ JsonData obj = JsonMapper.ToObject(content);
|
|
|
+ if(obj["code"].ToString() == "200")
|
|
|
+ {
|
|
|
+ pos.SeoDescription = "设置成功";
|
|
|
+ SetRecordResult(db, RecordId, 1, "设置成功");
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ string msg = obj["msg"].ToString();
|
|
|
+ pos.SeoDescription = msg;
|
|
|
+ SetRecordResult(db, RecordId, -1, msg);
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if(pos.BrandId == 30 || pos.BrandId == 31) //拉卡拉
|
|
|
+ {
|
|
|
+ string content = PublicImportDataService.Instance.LkLSetFee(merchant.KqMerNo, Fee, addRate);
|
|
|
+ JsonData obj = JsonMapper.ToObject(content);
|
|
|
+ if (obj["message"].ToString() == "SUCCESS")
|
|
|
+ {
|
|
|
+ pos.SeoDescription = "设置成功";
|
|
|
+ SetRecordResult(db, RecordId, 1, "设置成功");
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ string msg = obj["message"].ToString();
|
|
|
+ pos.SeoDescription = msg;
|
|
|
+ SetRecordResult(db, RecordId, -1, msg);
|
|
|
+ db.SaveChanges();
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
- db.Dispose();
|
|
|
- Thread.Sleep(500);
|
|
|
- }
|
|
|
- catch (Exception ex)
|
|
|
- {
|
|
|
- function.WriteLog(DateTime.Now.ToString() + "\r\n" + ex.ToString(), "设置费率到支付平台异常");
|
|
|
}
|
|
|
}
|
|
|
- else
|
|
|
- {
|
|
|
- Thread.Sleep(500);
|
|
|
- }
|
|
|
+ db.Dispose();
|
|
|
}
|
|
|
+ catch (Exception ex)
|
|
|
+ {
|
|
|
+ function.WriteLog(DateTime.Now.ToString() + "\r\n" + ex.ToString(), "设置费率到支付平台异常");
|
|
|
+ result = false;
|
|
|
+ }
|
|
|
+ return result;
|
|
|
}
|
|
|
|
|
|
private void SetRecordResult(WebCMSEntities db, int RecordId, int Status, string Note = "")
|