question

Melvin Vy avatar image
Melvin Vy asked David Marginian Deactivated answered

Tips % on Discount Service

Hi,
I run into this issue on the Tips with discount on service

Example
1. service price $100
2. Discount 10%
Pay
3. $90 send to Clover
4. Tips Suggestion choose 10%

Result the Clover will take 10% on $90
Total $90
Tips $9

My Question is can Clover take 10% on $100 as service cost before discount? because pos only send over amount need to be charge is $90

Thanks

Discounts
10 |2000

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

1 Answer

·
David Marginian avatar image
David Marginian Deactivated answered

Assuming you are using a Remote Pay SDK, you can work-around this by passing in custom tip suggestions with an amount (the amount being a fixed dollar amount that is a % of the pre-discount total) - https://docs.clover.com/docs/using-per-transaction-settings#tips.

const tipSuggestion1 = new clover.sdk.merchant.TipSuggestion();  
tipSuggestion1.setAmount(100);  
tipSuggestion1.setIsEnabled(true);  
tipSuggestion1.setName("10% of pre-discount");  
...
saleRequest.setTipSuggestions([tipSuggestion1, ...]);


10 |2000

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

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

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

Welcome to the
Clover Developer Community