|
@@ -141,7 +141,14 @@ namespace MySystem
|
|
|
Dictionary<string, object> dataContent = new Dictionary<string, object>();
|
|
|
dataContent.Add("pos_sn", act.SnNo); //机具sn
|
|
|
dataContent.Add("mer_no", act.MerNo); //商户号
|
|
|
- dataContent.Add("request_id", getRequestId(act.Id, "deposit")); //流水号
|
|
|
+ if(Utils.Instance.IsWifi(int.Parse(act.ProductType)))
|
|
|
+ {
|
|
|
+ dataContent.Add("request_id", getRequestId(act.SnNo + act.MerMobile, "deposit")); //流水号
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ dataContent.Add("request_id", getRequestId(act.Id, "deposit")); //流水号
|
|
|
+ }
|
|
|
if(act.ProductType == "14")
|
|
|
{
|
|
|
dataContent.Add("deposit_amount", 0); //押金金额
|