Created
November 26, 2016 12:08
-
-
Save nriesco/b9b36d99d03d216867259185163e877e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{#if displayPurchaseOrderItemsPromise.isPending}} | |
<div class="list-group-item list-group-item-info"> | |
<h4 class="list-group-item-heading">Loading...</h4> | |
</div> | |
{{/if}} | |
{{#if displayPurchaseOrderItemsPromise.isRejected}} | |
<div class="list-group-item list-group-item-danger"> | |
<h4 class="list-group3--item-heading">Error</h4> | |
</div> | |
{{/if}} | |
{{#if displayPurchaseOrderItemsPromise.isResolved}} | |
{{#each displayPurchaseOrderItemsPromise.value}} | |
{{#if false}} | |
<div class="sidebar-message"> | |
<a href=""> | |
<div class="pull-left text-center"> | |
Qty<br> | |
{{quantity}}<br> | |
<div class="btn btn-danger btn-xs" ($click)="removeItem(this)">x</div> | |
</div> | |
<div class="pull-left text-center"> | |
<img alt="image" class="img-rounded message-avatar" src="/src/assets/images/item1.jpg"> | |
</div> | |
<div class="media-body"> | |
{{description}}<br> | |
<big class="text-info">{{unitPrice}}*{{quantity}}</big><br> | |
<span style="color:brown;">Cost {{unitCost}} </span><br> | |
<span style="color:brown;">Shipping {{unitShipping}} </span><br> | |
<span style="color:#019F3A;">Earning {{itemEarning}}</span> | |
</div> | |
</a> | |
</div> | |
{{else}} | |
<div class="btn btn-danger btn-xs" ($click)="removeItem(this)">x</div>{{description}} <BR> | |
{{/if}} | |
{{/else}} | |
No items at this time, select a PO first | |
{{/each}} | |
{{else}} | |
Error loading items | |
{{/if}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment