Browse Source

推送押金,默认设置卡类型为贷记卡-1

lcl 11 months ago
parent
commit
8c56404fd3
2 changed files with 2 additions and 0 deletions
  1. BIN
      .DS_Store
  2. 2 0
      AppStart/Helper/PosPushDataNewHelper.cs

BIN
.DS_Store


+ 2 - 0
AppStart/Helper/PosPushDataNewHelper.cs

@@ -104,6 +104,7 @@ namespace MySystem
                 dataContent.Add("request_id", getRequestId(act.Id, "deposit")); //流水号
                 dataContent.Add("deposit_amount", act.SeoTitle); //押金金额
                 dataContent.Add("trade_time", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")); //交易时间
+                dataContent.Add("card_type", 1); //卡类型
                 dataContent.Add("brand", int.Parse(function.CheckInt(act.ProductType))); //品牌
                 Push("deposit", dataContent);
             }
@@ -122,6 +123,7 @@ namespace MySystem
                 dataContent.Add("request_id", getRequestId(trade.Id, "deposit1")); //流水号
                 dataContent.Add("deposit_amount", trade.TradeAmount); //押金金额
                 dataContent.Add("trade_time", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")); //交易时间
+                dataContent.Add("card_type", 1); //卡类型
                 dataContent.Add("brand", int.Parse(function.CheckInt(trade.ProductType))); //品牌
                 Push("deposit", dataContent);
             }