sale-order-list.html 817 B

12345678910111213141516171819202122232425
  1. <olist-header title="Presupuestos" (toggle)="toggleSearch()" (search)="search($event)"></olist-header>
  2. <ion-content class="has-header">
  3. <ion-card *ngFor="let s of visibleElements; trackBy:trackByElements">
  4. <ion-item>
  5. <h2>{{ s.customer.name }}</h2>
  6. <p>
  7. <strong>Fecha:</strong>
  8. {{ s.write_date }}
  9. </p>
  10. <p>
  11. <strong>Cantidad de items:</strong>
  12. {{ s.lines.length }}
  13. </p>
  14. <p>
  15. <strong>Total:</strong>
  16. {{ s.total }}
  17. </p>
  18. </ion-item>
  19. </ion-card>
  20. <olist-footer [hasElements]="hasVisibleElements()" (create)="goToPage(null)"></olist-footer>
  21. </ion-content>