]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/acq/lineitem/order-summary.component.html
LP1929741 ACQ Selection List & PO Angluar Port
[Evergreen.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]="{'text-danger': paidOff()}" i18n>
17     {{li.order_summary().paid_amount() | currency}} Paid
18   </span>
19 </ng-container>
20