Commit 1bb4f8b9 authored by pborate's avatar pborate

Updated ecm-cart.component.html and ecm-cart.component.ts

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@177331 ce508802-f39f-4f6c-b175-0d175dae99d5
parent fea42b83
......@@ -42,7 +42,7 @@
<tr>
<td class="itemImage"><bb-image [refId]='item.itemCode'
[refSer]="'M-ITEM'" [object]="'ITEM'" [isSingleImage]="true"
[isThumbnail]="true"></bb-image></td>
[isThumbnail]="true" [enterprise]='enterpise'></bb-image></td>
<td class="itemdescription" (click)="closePanel.emit(viewItem(item.itemCode))">
<span class="item-descr-span">{{item.itemHeader.itemShDescr}}</span>
</td>
......@@ -89,7 +89,7 @@
<div *ngFor="let item of cartItems | async" class="ecm-item-container row">
<div class="large-2 columns ecm-item-img">
<bb-image [refId]='item.itemCode' [refSer]="'M-ITEM'"
[object]="'ITEM'" [isSingleImage]="true" [isThumbnail]="true"></bb-image>
[object]="'ITEM'" [isSingleImage]="true" [isThumbnail]="true" [enterprise]='enterpise'></bb-image>
</div>
<div class="large-6 columns ecm-item-info">
......
......@@ -41,6 +41,7 @@ export class EcmCartComponent implements OnInit, AfterViewChecked {
@ViewChild('scrollMe') private myScrollContainer: ElementRef;
@ViewChild('header') header: ECMHeaderComponent;
enterpise = localStorage.getItem( 'ENTERPRISE' );
hostUrl;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment