ExcelExport:GWM
This commit is contained in:
parent
b587f48ad5
commit
29fea224ce
@ -201,24 +201,20 @@
|
||||
</ng-template>
|
||||
|
||||
</ng-data-table-column>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<ng-data-table-column
|
||||
[field]="'status'"
|
||||
|
||||
|
||||
[title]="'Status'"
|
||||
[sortable]="false"
|
||||
|
||||
|
||||
[width]="5">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<ng-template #ngDataTableCell let-row="row">
|
||||
<td (click)="onViewConfirm(row.item)">
|
||||
<div style="display: flex; align-items: center;">
|
||||
@ -431,6 +427,34 @@
|
||||
</ng-template>
|
||||
|
||||
</ng-data-table-column>
|
||||
|
||||
|
||||
<ng-data-table-column
|
||||
[field]="'productDetails'"
|
||||
[sortable]="false"
|
||||
[title]="'Products'"
|
||||
[filterable]="false"
|
||||
[width]="4">
|
||||
|
||||
<ng-template #ngDataTableCell let-row="row">
|
||||
<td (click)="onViewConfirm(row.item)">
|
||||
<div>
|
||||
<ol>
|
||||
<li *ngFor="let product of row.item.productDetails; let i = index">
|
||||
{{ i+1}}. Product Name: {{ product.productName }} - {{ product.qty }}
|
||||
<span *ngIf="product.qty > 1"> No's </span><span *ngIf="product.qty == 1"> No </span>
|
||||
<div *ngIf="product.productSpec !== null"> | Mixed Gas: {{ product.productSpec }}</div>
|
||||
</li>
|
||||
</ol>
|
||||
</div>
|
||||
</td>
|
||||
</ng-template>
|
||||
|
||||
|
||||
</ng-data-table-column>
|
||||
|
||||
|
||||
|
||||
<ng-data-table-column
|
||||
[field]="'status'"
|
||||
[title]="'Status'"
|
||||
|
||||
BIN
vnms-live-13-3-24.zip
Normal file
BIN
vnms-live-13-3-24.zip
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user