article: more comprehensible dashboard

This commit is contained in:
Julien Calixte
2025-01-05 22:28:34 +01:00
parent 5a20f1fec6
commit a595fbb9cc

View File

@@ -20,7 +20,7 @@ const strategies: Strategy[] = ['push', 'pull']
<table> <table>
<thead> <thead>
<tr> <tr>
<th>mean values</th> <th></th>
<th class="numeric">push</th> <th class="numeric">push</th>
<th class="numeric">pull</th> <th class="numeric">pull</th>
<!-- [dps] <!-- [dps]
@@ -30,13 +30,13 @@ const strategies: Strategy[] = ['push', 'pull']
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td>Total days</td> <td>Total days to finish</td>
<td class="numeric" v-for="strategy in strategies" :key="strategy"> <td class="numeric" v-for="strategy in strategies" :key="strategy">
{{ simulationStore.meanTotalDays(strategy) }} {{ simulationStore.meanTotalDays(strategy) }}
</td> </td>
</tr> </tr>
<tr> <tr>
<td>Lead time</td> <td>Mean lead time</td>
<td class="numeric" v-for="strategy in strategies" :key="strategy"> <td class="numeric" v-for="strategy in strategies" :key="strategy">
{{ simulationStore.meanLeadTime(strategy) }} {{ simulationStore.meanLeadTime(strategy) }}
</td> </td>
@@ -48,7 +48,7 @@ const strategies: Strategy[] = ['push', 'pull']
</td> </td>
</tr> </tr>
<tr> <tr>
<td>Quality issue</td> <td>Quality issues</td>
<td class="numeric" v-for="strategy in strategies" :key="strategy"> <td class="numeric" v-for="strategy in strategies" :key="strategy">
{{ simulationStore.meanQuality(strategy) }} {{ simulationStore.meanQuality(strategy) }}
</td> </td>