Untitled
unknown
plain_text
3 years ago
560 B
6
Indexable
protected String getPinPadRentOwn() {
if (isMonerisGateWay()) {
if (isPinpad()) {
return CreateLocale.RENT.getvalue();
} else {
return CreateLocale.OWN.getvalue();
}
} else if (isMonerisGoPortal()) {
return CreateLocale.OWN.getvalue();
} else if (isPaydProPlus()) {
if (isPinpad()) {
return CreateLocale.RENT.getvalue();
} else {
return CreateLocale.OWN.getvalue();
}
} else if (isIVRSelected()) {
return CreateLocale.OWN.getvalue();
} else {
return CreateLocale.RENT.getvalue();
}
}Editor is loading...