Commit 4d6a8f7a authored by RenanMontenegro3's avatar RenanMontenegro3

feat: alteração no campo status em aceites

parent ee14e409
...@@ -7,10 +7,11 @@ ...@@ -7,10 +7,11 @@
<div class="main-body"> <div class="main-body">
<button mat-raised-button color="primary" style="background-color: #43a047; color: #fff; margin: 12px 0;" (click)="saveDataInCSV('aceites')"> <button mat-raised-button color="primary" style="background-color: #43a047; color: #fff; margin: 12px 0;"
(click)="saveDataInCSV('aceites')">
<mat-icon>download</mat-icon> <mat-icon>download</mat-icon>
Exportar Excel Exportar Excel
</button> </button>
<div class="table-container" style="overflow-x: auto"> <div class="table-container" style="overflow-x: auto">
<table mat-table [dataSource]="dataSource" matSort> <table mat-table [dataSource]="dataSource" matSort>
<!-- ID Column --> <!-- ID Column -->
...@@ -50,7 +51,7 @@ ...@@ -50,7 +51,7 @@
<ng-container matColumnDef="status"> <ng-container matColumnDef="status">
<th mat-header-cell *matHeaderCellDef>Status</th> <th mat-header-cell *matHeaderCellDef>Status</th>
<td mat-cell *matCellDef="let row"> <td mat-cell *matCellDef="let row">
{{ row.status == "Y" ? "Verificado" : "Não verificado" }} {{ (row.status === "Y" || row.status === "NE" || row.status === "YR") ? "Verificado" : "Não verificado" }}
</td> </td>
</ng-container> </ng-container>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment