|
@@ -236,7 +236,15 @@ namespace MySystem
|
|
|
return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
|
|
|
}
|
|
|
function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "立刷-设置押金-返回报文");
|
|
|
- string content = PublicImportDataService.Instance.SetLiSDeposit(pos.PosSn, int.Parse(DepositId));
|
|
|
+ string content = "";
|
|
|
+ if(pos.BrandId == 6)
|
|
|
+ {
|
|
|
+ content = PublicImportDataService.Instance.SetLiSDeposit(pos.PosSn, int.Parse(DepositId));
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ content = PublicImportDataService.Instance.SetLiSWeDeposit(pos.PosSn, int.Parse(DepositId));
|
|
|
+ }
|
|
|
function.WriteLog(DateTime.Now.ToString() + "\n" + content, "立刷-设置押金-返回报文");
|
|
|
JsonData jsonObj = JsonMapper.ToObject(content);
|
|
|
if (jsonObj["ret_code"].ToString() != "00")
|
|
@@ -247,14 +255,7 @@ namespace MySystem
|
|
|
var BeforeDeposit = 0;
|
|
|
if (string.IsNullOrEmpty(pos.PrizeParams))
|
|
|
{
|
|
|
- if (RelationClass.GetKqProductBrandInfo(pos.BrandId) == "立刷云电签")
|
|
|
- {
|
|
|
- BeforeDeposit = 249;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- BeforeDeposit = 299;
|
|
|
- }
|
|
|
+ BeforeDeposit = 299;
|
|
|
}
|
|
|
else
|
|
|
{
|