12345678910111213141516171819202122232425 |
- <olist-header title="Presupuestos" (toggle)="toggleSearch()" (search)="search($event)"></olist-header>
- <ion-content class="has-header">
- <ion-card *ngFor="let s of visibleElements; trackBy:trackByElements">
- <ion-item>
- <h2>{{ s.customer.name }}</h2>
- <p>
- <strong>Fecha:</strong>
- {{ s.write_date }}
- </p>
- <p>
- <strong>Cantidad de items:</strong>
- {{ s.lines.length }}
- </p>
- <p>
- <strong>Total:</strong>
- {{ s.total }}
- </p>
- </ion-item>
- </ion-card>
- <olist-footer [hasElements]="hasVisibleElements()" (create)="goToPage(null)"></olist-footer>
- </ion-content>
|