-
HU dimensions [{{ premise.dimension_unit }}]
+
Dimensions [{{ premise.dimension_unit }}]
{{ toFixedDimension(premise.length, premise.dimension_unit) }} x
{{ toFixedDimension(premise.width, premise.dimension_unit) }} x
{{ toFixedDimension(premise.height, premise.dimension_unit) }}
@@ -204,20 +210,26 @@
-
HU weight [{{ premise.weight_unit }}]
+
Weight [{{ premise.weight_unit }}]
{{ toFixedWeight(premise.weight, premise.weight_unit) }}
-
HU unit count
+
Unit count
{{ premise.hu_unit_count }}
-
Mixed container
+
Mixed transport
{{ premise.mixed ? 'Yes' : 'No' }}
+
+
Stacked layers
{{ hasMainRun(premise.sections) ? premise.layer : '-' }}
@@ -225,17 +237,25 @@
Container unit count
-
{{hasMainRun(premise.sections) ? (premise.unit_count * premise.hu_unit_count) : '-' }}
+
+ {{ hasMainRun(premise.sections) ? (premise.unit_count * premise.hu_unit_count) : '-' }}
+
+
+
Container type
-
{{hasMainRun(premise.sections) ? getContainerTypeName(premise.container_type) : '-' }}
+
+ {{ hasMainRun(premise.sections) ? getContainerTypeName(premise.container_type) : '-' }}
+
Limiting factor
-
{{hasMainRun(premise.sections) ? premise.weight_exceeded ? 'Weight' : 'Volume' : '-'}}
+
+ {{ hasMainRun(premise.sections) ? premise.weight_exceeded ? 'Weight' : 'Volume' : '-' }}
+
@@ -333,6 +353,21 @@ export default {
text-align: right;
}
+
+.report-content-data-cell-highlight {
+ background-color: #5AF0B4;
+ color: #002F54;
+ border-radius: 0.4rem;
+ padding: 0.2rem 0.4rem;
+ font-weight: 600;
+
+}
+
+.report-content-row-highlight {
+ font-weight: 500;
+ color: #001D33;
+}
+
.report-content-data-header-cell {
text-align: right;
color: #001D33;
diff --git a/src/frontend/src/main.js b/src/frontend/src/main.js
index dfa3f04..fb15c60 100644
--- a/src/frontend/src/main.js
+++ b/src/frontend/src/main.js
@@ -29,7 +29,7 @@ import {
PhFloppyDisk,
PhArrowCounterClockwise,
PhCheck, PhBug, PhShuffle, PhStack, PhFile, PhFilePlus, PhDownloadSimple, PhMonitor, PhCpu, PhFileJs, PhFileCloud,
- PhCloudX, PhDesktop, PhHardDrives
+ PhCloudX, PhDesktop, PhHardDrives, PhClipboard
} from "@phosphor-icons/vue";
@@ -69,6 +69,7 @@ app.component('PhStack', PhStack );
app.component('PhFile', PhFile);
app.component("PhDesktop", PhDesktop );
app.component("PhHardDrives", PhHardDrives );
+app.component("PhClipboard", PhClipboard );
app.use(router);