Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
aceite-tecnico-frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Renan de Jesus Montenegro da Silva
aceite-tecnico-frontend
Commits
4d6a8f7a
Commit
4d6a8f7a
authored
Nov 27, 2025
by
RenanMontenegro3
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: alteração no campo status em aceites
parent
ee14e409
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
aceites.component.html
src/app/pages/crud-aceites/aceites/aceites.component.html
+6
-5
No files found.
src/app/pages/crud-aceites/aceites/aceites.component.html
View file @
4d6a8f7a
...
...
@@ -7,10 +7,11 @@
<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>
Exportar Excel
</button>
</button>
<div
class=
"table-container"
style=
"overflow-x: auto"
>
<table
mat-table
[dataSource]=
"dataSource"
matSort
>
<!-- ID Column -->
...
...
@@ -50,7 +51,7 @@
<ng-container
matColumnDef=
"status"
>
<th
mat-header-cell
*matHeaderCellDef
>
Status
</th>
<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>
</ng-container>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment