Before performing any transaction (sale, pre auth), I make sure the clover native receipt is disable cause we have our custom receipt, however, I randomly get the clover native receipt screen, this is the configuration I have
fun getPreAuthRequest(amount: Long): PreAuthRequest { val preAuthRequest = PreAuthRequest(amount, getNextId()) preAuthRequest.cardEntryMethods = CARD_ENTRY_METHODS preAuthRequest.disableReceiptSelection = true preAuthRequest.disablePrinting = true preAuthRequest.disableDuplicateChecking = true preAuthRequest.cardNotPresent = true preAuthRequest.externalReferenceId = preAuthRequest.externalId return preAuthRequest }
Is there anything wrong on my setup? why do I get the receipt screen?
I'm using a mini, and the secure network pay display. Thanks!!