commit 515f34ac27a7e029e0454962d2a4e984d2d76110
Author: Gorka Gil <gorka.gil@openbravo.com>
Date:   Thu Nov 19 22:14:21 2020 +0100

    Add payment method types: ACP-CKCSY and ACP-CKLSY both online and offline

diff --git a/src/com/openbravo/retail/axisc3/AXISC3Library.java b/src/com/openbravo/retail/axisc3/AXISC3Library.java
index 8a0e3cd..00d7d53 100644
--- a/src/com/openbravo/retail/axisc3/AXISC3Library.java
+++ b/src/com/openbravo/retail/axisc3/AXISC3Library.java
@@ -518,7 +518,19 @@ public class AXISC3Library implements WebSocketListener, JC3ApiCallbacks {
   private String getPaymentBrand(JC3ApiC3Rspn response) {
 
     boolean onlinemode = response.getcAxisEnum() != C3OnlineModes.C3_ONLINEMODE_OFFLINE;
-    return response.getcCardTypeEnum().getTrigram() + "." + (onlinemode ? "ONLINE" : "OFFLINE");
+    String emitter;
+    if (response.getcCAIEmetteur() == "CKCSY") {
+      logger.fine("ACP-CKCSY");
+      emitter = "-CKCSY";
+    } else if (response.getcCAIEmetteur() == "CKLSY") {
+      logger.fine("ACP-CKLSY");
+      emitter = "-CKLSY";
+    } else {
+      logger.fine("ACP");
+      emitter = "";
+    }
+    return response.getcCardTypeEnum().getTrigram() + emitter + "."
+        + (onlinemode ? "ONLINE" : "OFFLINE");
   }
 
   private void printReceipt(String documentQualifier, String receipt) throws JSONException {
