b96b1a007f74d949a5b84a3317e3b1c450eed5d3
[evergreen-equinox.git] / Open-ILS / src / eg2 / src / app / staff / acq / lineitem / order-summary.component.html
1 <ng-container *ngIf="li">
2   <span i18n>{{li.order_summary().item_count()}} Items</span>
3   <span class="ml-1 mr-1" i18n> | </span>
4   <span i18n>{{li.order_summary().recv_count()}} Received</span>
5   <span class="ml-1 mr-1" i18n> | </span>
6   <span i18n>{{li.order_summary().invoice_count()}} Invoiced</span>
7   <span class="ml-1 mr-1" i18n> | </span>
8   <span i18n>{{li.order_summary().cancel_count()}} Canceled</span>
9   <span class="ml-1 mr-1" i18n> | </span>
10   <span i18n>{{li.order_summary().delay_count()}} Delayed</span>
11   <span class="ml-1 mr-1" i18n> | </span>
12   <span i18n>{{li.order_summary().estimated_amount() | currency}} Estimated</span>
13   <span class="ml-1 mr-1" i18n> | </span>
14   <span i18n>{{li.order_summary().encumbrance_amount() | currency}} Encumbered</span>
15   <span class="ml-1 mr-1" i18n> | </span>
16   <span [ngClass]="{'font-weight-bold text-danger': paidOff()}" i18n>
17     {{li.order_summary().paid_amount() | currency}} Paid
18   </span>
19 </ng-container>
20