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
77b81c59
Commit
77b81c59
authored
Oct 28, 2025
by
RenanMontenegro3
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:"alteração em aceite + black-list+navios"
parent
abd4d7d1
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
23 deletions
+11
-23
aceite-edit.component.html
...pages/crud-aceites/aceite-edit/aceite-edit.component.html
+2
-3
aceites.component.html
src/app/pages/crud-aceites/aceites/aceites.component.html
+0
-9
aceites.component.ts
src/app/pages/crud-aceites/aceites/aceites.component.ts
+1
-3
black-list.component.html
...pages/crud-blackList/black-list/black-list.component.html
+4
-4
visualizacao-black-list.component.html
...lizacao-black-list/visualizacao-black-list.component.html
+3
-3
navio-edit.component.html
...pp/pages/crud-navios/navio-edit/navio-edit.component.html
+1
-1
No files found.
src/app/pages/crud-aceites/aceite-edit/aceite-edit.component.html
View file @
77b81c59
...
...
@@ -144,11 +144,11 @@
{{ getErrorMessage('restricoes') }}
</mat-error>
</mat-form-field>
</div>
<div
class=
"row file-upload-container"
>
<ng-container
*ngIf=
"data?.path"
>
<mat-card-actions>
<button
mat-flat-button
color=
"primary"
(click)=
"downloadNavioFunction()"
>
<button
mat-flat-button
color=
"primary"
type=
"button"
(click)=
"downloadNavioFunction()"
>
<mat-icon>
download
</mat-icon>
Download Documento Q88
</button>
...
...
@@ -156,7 +156,6 @@
</ng-container>
</div>
</div>
</div>
<!-- Ações do Diálogo -->
<div
mat-dialog-actions
class=
"action"
>
...
...
src/app/pages/crud-aceites/aceites/aceites.component.html
View file @
77b81c59
...
...
@@ -46,15 +46,6 @@
<td
mat-cell
*matCellDef=
"let row"
>
{{ row.data_create || "Null" }}
</td>
</ng-container>
<ng-container
matColumnDef=
"data_update"
>
<th
mat-header-cell
*matHeaderCellDef
>
Data de Edição
</th>
<td
mat-cell
*matCellDef=
"let row"
>
{{ row.data_update || "Null" }}
</td>
</ng-container>
<ng-container
matColumnDef=
"dataAccept"
>
<th
mat-header-cell
*matHeaderCellDef
>
Data de Edição
</th>
<td
mat-cell
*matCellDef=
"let row"
>
{{ row.dataAccept || "Null" }}
</td>
</ng-container>
<ng-container
matColumnDef=
"status"
>
<th
mat-header-cell
*matHeaderCellDef
>
Status
</th>
...
...
src/app/pages/crud-aceites/aceites/aceites.component.ts
View file @
77b81c59
...
...
@@ -67,9 +67,7 @@ export class AceitesComponent implements OnInit {
'
user
'
,
'
imo
'
,
'
data_create
'
,
'
data_update
'
,
'
dataAccept
'
,
'
status
'
,
'
status
'
,
'
action
'
,
];
...
...
src/app/pages/crud-blackList/black-list/black-list.component.html
View file @
77b81c59
...
...
@@ -46,11 +46,11 @@
<ng-container
matColumnDef=
"flag"
>
<th
mat-header-cell
*matHeaderCellDef
>
Flag
</th>
<td
mat-cell
*matCellDef=
"let row"
>
<ng-container
*ngIf=
"countries[
+row.flag
]; else flagNotAvailable"
>
<img
[src]=
"countries[
+row.flag
].flagUrl"
width=
"20"
height=
"15"
alt=
"{{ countries[
+row.flag
].name }} flag"
<ng-container
*ngIf=
"countries[
row.flag - 1
]; else flagNotAvailable"
>
<img
[src]=
"countries[
row.flag - 1
].flagUrl"
width=
"20"
height=
"15"
alt=
"{{ countries[
row.flag - 1
].name }} flag"
style=
"margin-right: 8px"
/>
<span>
{{ countries[
+row.flag
]?.name }}
</span>
<span>
{{ countries[
row.flag - 1
]?.name }}
</span>
</ng-container>
<ng-template
#flagNotAvailable
>
Não informado
</ng-template>
</td>
...
...
src/app/pages/crud-blackList/visualizacao-black-list/visualizacao-black-list.component.html
View file @
77b81c59
...
...
@@ -50,9 +50,9 @@
</div>
<div
class=
"column"
style=
"flex: 1 1 30%; margin-bottom: 10px;"
>
<p><strong>
Flag:
</strong>
<ng-container
*ngIf=
"countries[
+navioInfo.flag
]; else flagNotAvailable"
>
<img
[src]=
"countries[
+navioInfo.flag].flagUrl"
width=
"20"
height=
"15"
alt=
"{{ countries[+navioInfo.flag
].name }} flag"
style=
"margin-right: 8px"
/>
<span>
{{ countries[
+navioInfo.flag
]?.name }}
</span>
<ng-container
*ngIf=
"countries[
navioInfo.flag - 1
]; else flagNotAvailable"
>
<img
[src]=
"countries[
navioInfo.flag - 1].flagUrl"
width=
"20"
height=
"15"
alt=
"{{ countries[navioInfo.flag - 1
].name }} flag"
style=
"margin-right: 8px"
/>
<span>
{{ countries[
navioInfo.flag - 1
]?.name }}
</span>
</ng-container>
<ng-template
#flagNotAvailable
>
Não informado
</ng-template>
</p>
...
...
src/app/pages/crud-navios/navio-edit/navio-edit.component.html
View file @
77b81c59
...
...
@@ -133,7 +133,7 @@
</div>
<ng-container
*ngIf=
"data?.path"
>
<mat-card-actions>
<button
mat-flat-button
color=
"primary
"
(click)=
"downloadNavioFunction()"
>
<button
mat-flat-button
color=
"primary"
type=
"button
"
(click)=
"downloadNavioFunction()"
>
<mat-icon>
download
</mat-icon>
Download Documento Q88
</button>
...
...
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