Run a Charge and Provide a Printed Receipt
The waiter takes the payment card from the guest back to the POS
System and runs a CHARGE transaction for the invoice amount
(excluding any tips). Your POS System then prints merchant and
shopper receipts that include lines for Tip and Total Amount.
The guest receives back the payment card together with the printed receipts from the waiter
and can fill in the desired Tip and / or Total Amounts at their discretion.
If required, the customer can also provides their signature. Once the guest
has left, the waiter collects the receipt and stores it for later Tip
Adjust.
To perform a
CHARGE
that can be Tip Adjusted later
on, modify the
TransactionParameters
to include
TipAdjustable(true)
for the initial transaction:
var transactionParameters = new TransactionParameters.Builder()
.Charge(10.00m, Currency.USD)
.Subject("Bouquet of Flowers")
.CustomIdentifier("yourReferenceForTheTransaction")
.TipAdjustable(true)
.Build();
// Start the transaction as usual via PosClient.GetTransactionModule().StartTransaction()