example of workflow + finalize normalization

This commit is contained in:
2022-01-29 00:19:11 +01:00
parent dc184762d6
commit 5ac485e06e
4 changed files with 60 additions and 9 deletions

View File

@@ -5,6 +5,19 @@
</div>
<div class="list-group-item" v-for="w in workflows">
{{ w.id }}
Etape actuelle: {{ w.currentStep.currentStep.text }}
<ul>
<li v-for="w in w.steps">
Etape: {{ w.currentStep.text }},
<span v-if="w.transitionPrevious != null">
transition pour arriver à cette étape : {{ w.transitionPrevious.text }},
par: {{ w.transitionPreviousBy.text }}, le {{ w.transitionPreviousAt.datetime }}
</span>
</li>
</ul>
<ul class="record_actions">
<li>
<a class="btn btn-sm btn-outline-primary"
@@ -33,4 +46,4 @@ export default {
}
}
}
</script>
</script>