ExcelExport:GWM

This commit is contained in:
Venba 2024-03-14 13:54:41 +05:30
parent b587f48ad5
commit 29fea224ce
2 changed files with 36 additions and 12 deletions

View File

@ -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

Binary file not shown.