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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | 2x | <div data-testing-id="cart-page">
<div class="cart-header">
<h1 class="d-flex flex-wrap align-items-baseline">
<span class="cart-header-title">{{ 'shopping_cart.heading' | translate }}</span>
<span class="header-note">
<span>{{ 'shopping_cart.transaction.text' | translate }}</span>
<ish-modal-dialog-link
linkText="shopping_cart.read_more.link"
[options]="{ titleText: 'checkout.safeandsecure.details.title' | translate, size: 'lg' }"
class="details-link"
>
<ish-content-include includeId="include.dialog.safeAndSecure.pagelet2-Include" *ishLazyLoadingContent />
</ish-modal-dialog-link>
</span>
</h1>
</div>
<div>
<!-- Error message -->
<ish-error-message *ngIf="error?.message" [error]="error" />
<ish-basket-error-message [error]="error" />
<!-- Basket Info messages -->
<ish-basket-info />
<!-- Validation messages-->
<ish-basket-validation-results />
<!-- Dynamic Promotion Message -->
<div *ngIf="basket?.dynamicMessages?.length" class="alert alert-info">
<ul class="list-unstyled">
<li *ngFor="let msg of basket.dynamicMessages">
<span *ngIf="msg" [ishServerHtml]="msg"></span>
</li>
</ul>
</div>
</div>
<div class="form-horizontal">
<div class="row">
<div class="col-md-12 col-lg-8">
<div class="marketing-area">
<ish-content-include includeId="include.basket.content.top.pagelet2-Include" />
</div>
<ish-basket-cost-center-selection />
<ish-basket-custom-fields />
<div class="section">
<h2 class="h3 mb-0">{{ 'shopping_cart.items.heading' | translate }}</h2>
<ish-skip-content-link>
<ng-container *ishFeature="'quoting'; else elseTemplate">
<ish-lazy-quoting-basket-line-items />
</ng-container>
<ng-template #elseTemplate>
<ish-line-item-list *ngIf="basket" [lineItems]="basket.lineItems" />
</ng-template>
</ish-skip-content-link>
<ish-loading *ngIf="loading" />
<div class="button-group clearfix">
<div class="float-md-start">
<ish-lazy-basket-add-to-quote />
<ish-lazy-basket-create-order-template
*ngIf="basket"
[cssClass]="'btn btn-secondary'"
[products]="basket.lineItems"
/>
</div>
<ish-clear-basket cssClass="float-md-end" />
</div>
</div>
<ish-lazy-direct-order />
<p>
<a routerLink="/home" class="text-nowrap no-print">{{
'shopping_cart.detailed.continue_shopping.link' | translate
}}</a>
</p>
<div class="marketing-area">
<ish-content-include includeId="include.basket.content.bottom.pagelet2-Include" />
</div>
</div>
<div class="col-md-12 col-lg-4 order-summary">
<h2>{{ 'checkout.order_details.heading' | translate }}</h2>
<ish-basket-promotion-code />
<div class="cost-summary">
<!-- Cost Summary Component -->
<ish-basket-cost-summary [totals]="basket.totals" />
<ng-container *ishHasNotRole="['APP_B2B_CXML_USER', 'APP_B2B_OCI_USER']">
<ish-loading *ngIf="loading" />
<ish-basket-order-recurrence-edit
*ngIf="'recurringOrder.enabled' | ishServerSetting"
[recurrence]="basket.recurrence"
/>
</ng-container>
<div class="d-grid">
<button
*ishHasNotRole="['APP_B2B_CXML_USER', 'APP_B2B_OCI_USER']"
type="submit"
class="btn btn-lg btn-primary"
(click)="checkout()"
>
{{ 'shopping_cart.proceed_to_checkout.button.label' | translate }}
</button>
</div>
<ish-lazy-punchout-transfer-basket *ishIsAuthorizedTo="'APP_B2B_SEND_PUNCHOUT_BASKET'" />
<ish-shopping-basket-payment *ishHasNotRole="['APP_B2B_CXML_USER', 'APP_B2B_OCI_USER']" [basket]="basket" />
</div>
<div class="marketing-area">
<ish-content-include includeId="include.basket.ordersummary.pagelet2-Include" />
</div>
</div>
</div>
</div>
</div>
|