Skip to content
Snippets Groups Projects
Commit 544807dc authored by Nils Brinckmann's avatar Nils Brinckmann
Browse files

Add offsets to submit overview & linking table

parent 61579474
No related branches found
No related tags found
2 merge requests!507Develop,!503Add offsets to submit overview & linking table
......@@ -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),
......
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment