Commit 98200a3419f30ad45b5f0cad04c686107a84b11d
1 parent
b33504fc
customer code added for card payment
Showing
1 changed file
with
1 additions
and
0 deletions
cashier-pipeline/src/main/java/com/diligrp/cashier/pipeline/client/CardPaymentHttpClient.java
| ... | ... | @@ -77,6 +77,7 @@ public class CardPaymentHttpClient extends ServiceEndpointSupport { |
| 77 | 77 | String outTradeNo = (String) data.get("tradeId"); |
| 78 | 78 | Map<String, Object> payerId = new LinkedHashMap<>(); |
| 79 | 79 | payerId.put("customerId", convertLong(data.get("customerId"))); |
| 80 | + payerId.put("customerCode", data.get("customerCode")); | |
| 80 | 81 | payerId.put("accountId", convertLong(data.get("accountId"))); |
| 81 | 82 | payerId.put("cardNo", data.get("cardNo")); |
| 82 | 83 | payerId.put("name", data.get("customerName")); | ... | ... |