Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HUB Terra
SMS
Frontend
Commits
544807dc
Commit
544807dc
authored
1 year ago
by
Nils Brinckmann
Browse files
Options
Downloads
Patches
Plain Diff
Add offsets to submit overview & linking table
parent
61579474
No related branches found
No related tags found
2 merge requests
!507
Develop
,
!503
Add offsets to submit overview & linking table
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
components/configurations/tsmLinking/TsmLinkingOverviewTable.vue
+4
-0
4 additions, 0 deletions
...nts/configurations/tsmLinking/TsmLinkingOverviewTable.vue
components/configurations/tsmLinking/TsmLinkingReview.vue
+4
-0
4 additions, 0 deletions
components/configurations/tsmLinking/TsmLinkingReview.vue
with
8 additions
and
0 deletions
components/configurations/tsmLinking/TsmLinkingOverviewTable.vue
+
4
−
0
View file @
544807dc
...
...
@@ -127,6 +127,9 @@ export default class TsmLinkingOverviewTable extends Vue {
},
{
text
:
'
Measured Quantity
'
,
value
:
'
measuredQuantity
'
},
{
text
:
'
Offsets (X | Y | Z)
'
,
value
:
'
offsets
'
},
{
text
:
'
Start date
'
,
value
:
'
startDate
'
...
...
@@ -162,6 +165,7 @@ export default class TsmLinkingOverviewTable extends Vue {
return
{
id
:
linking
.
id
,
tsmdlEntityNames
:
this
.
generateTsmdlEntityNames
(
linking
),
offsets
:
`(
${
linking
?.
deviceMountAction
?.
offsetX
}
|
${
linking
?.
deviceMountAction
?.
offsetY
}
|
${
linking
?.
deviceMountAction
?.
offsetZ
}
)`
,
startDate
:
this
.
$root
.
$options
.
filters
!
.
toUtcDateTimeStringHHMM
(
linking
.
startDate
),
endDate
:
this
.
$root
.
$options
.
filters
!
.
toUtcDateTimeStringHHMM
(
linking
.
endDate
),
measuredQuantity
:
this
.
generatePropertyTitle
(
linking
.
deviceProperty
),
...
...
This diff is collapsed.
Click to expand it.
components/configurations/tsmLinking/TsmLinkingReview.vue
+
4
−
0
View file @
544807dc
...
...
@@ -40,6 +40,7 @@
<tr>
<th>
Device
</th>
<th>
Mount range
</th>
<th>
Offsets (X | Y | Z)
</th>
<th>
Measured Quantity
</th>
<th>
Datasource
</th>
<th>
Thing
</th>
...
...
@@ -63,6 +64,9 @@
:to=
"formLinking.deviceMountAction.endDate"
/>
</td>
<td>
(
{{
formLinking
.
deviceMountAction
.
offsetX
}}
|
{{
formLinking
.
deviceMountAction
.
offsetY
}}
|
{{
formLinking
.
deviceMountAction
.
offsetZ
}}
)
</td>
<td>
{{
formLinking
.
deviceProperty
|
generatePropertyTitle
}}
</td>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment