question

trueox avatar image
trueox asked trueox commented

Manual Card Entry Screen

can I please get some example on how to force clover mini to display manual card entry screen after the customer finished with the Tipping screen?

Currently,

the client has to swipe or uses the chip for payment after they are done with the tipping screen which means the client has to be there to pay. there are times that client want to pay by phone and I do not want to exit the USB remote pay screen to get to that screen, is there a way to bring up the manual entry screen from remotely? I am using windows remote play SDK 4.0.3 and I am connecting to the mini clover (2nd gen) via a USB cable.

semi-integrations
10 |2000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

David Marginian avatar image
David Marginian Deactivated answered

There is a setter for card entry methods on the payment request. You will just set the manual entry enum. I can get you specifics later if required.

10 |2000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

trueox avatar image
trueox answered David Marginian Deactivated commented

will this request do it?


SaleRequest sale = new SaleRequest

{

Amount = amount,

ExternalId = externalId,

SignatureEntryLocation = DataEntryLocation.ON_SCREEN,

AutoAcceptSignature = true,

DisableDuplicateChecking = true,

DisableCashback = true,

DisableRestartTransactionOnFail = true,

AutoAcceptPaymentConfirmations = true,

CardEntryMethods = CloverConnector.CARD_ENTRY_METHOD_MAG_STRIPE | CloverConnector.CARD_ENTRY_METHOD_ICC_CONTACT | CloverConnector.CARD_ENTRY_METHOD_NFC_CONTACTLESS | CloverConnector.CARD_ENTRY_METHOD_MANUAL,

};

1 comment
10 |2000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

David Marginian avatar image David Marginian ♦♦ commented ·

No, if you only want manual entry don't include the other enums just CARD_ENTRY_METHOD_MANUAL.

0 Likes 0 ·
trueox avatar image
trueox answered trueox commented

what about this?


SaleRequest sale = new SaleRequest

{

Amount = amount,

ExternalId = externalId,

SignatureEntryLocation = DataEntryLocation.ON_SCREEN,

AutoAcceptSignature = true,

DisableDuplicateChecking = true,

DisableCashback = true,

DisableRestartTransactionOnFail = true,

AutoAcceptPaymentConfirmations = true,

CardEntryMethods = CloverConnector.CARD_ENTRY_METHOD_MANUAL,

};


3 comments
10 |2000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

David Marginian avatar image David Marginian ♦♦ commented ·

Looks better.

0 Likes 0 ·
trueox avatar image trueox David Marginian ♦♦ commented ·

will give that a swirl. thanks

0 Likes 0 ·
trueox avatar image trueox trueox commented ·

this is working as expected

0 Likes 0 ·

Welcome to the
Clover Developer Community