Untitled

 avatar
unknown
plain_text
2 years ago
560 B
3
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...