Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 3x | <p *ngIf="paymentCostThresholdReached(paymentMethod); else displayPaymentCosts"> {{ 'checkout.payment.payment_cost_threshold.amount_reached' | translate }} {{ basket.totals.total | ishPrice }} </p> <ng-template #displayPaymentCosts> <div *ngIf="!paymentMethod.isRestricted; else displayRestrictions"> <p *ngIf="paymentMethod.paymentCosts?.[priceType]"> {{ 'checkout.payment.method.charges.text' | translate }} {{ paymentMethod.paymentCosts | ishPrice }} <span *ngIf="paymentMethod.paymentCostsThreshold" class="text-muted"> <span>- </span>{{ 'checkout.payment.payment_cost_threshold.text' | translate }} <span class="text-nowrap" data-testing-id="basket-payment-cost">{{ paymentMethod.paymentCostsThreshold | ishPrice }}</span> </span> </p> </div> </ng-template> <!--payment restriction information --> <ng-template #displayRestrictions> {{ 'checkout.payment.method.charges.text' | translate }} {{ paymentMethod.paymentCosts | ishPrice }} <p *ngFor="let restriction of paymentMethod.restrictionCauses" class="text-info" data-testing-id="basket-payment-restriction-information" > {{ restriction.message }} </p> </ng-template> |