diff options
author | rtk0c <[email protected]> | 2021-05-06 21:56:40 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-05-06 21:56:40 -0700 |
commit | 1fd1e4b5f2418e3ac2909658993bfedb615537ec (patch) | |
tree | 6de080d2273890f8a74d7fcd3572bb44f44ac545 /core/src/Model/Workflow/Nodes/DocumentNodes.cpp | |
parent | 538e804fc9beb83e711a210ffbb6badc15f285d5 (diff) |
Change brace style to on new line, add initial deliveries view when an order entry is selected
Diffstat (limited to 'core/src/Model/Workflow/Nodes/DocumentNodes.cpp')
-rw-r--r-- | core/src/Model/Workflow/Nodes/DocumentNodes.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/core/src/Model/Workflow/Nodes/DocumentNodes.cpp b/core/src/Model/Workflow/Nodes/DocumentNodes.cpp index 255d446..b858b49 100644 --- a/core/src/Model/Workflow/Nodes/DocumentNodes.cpp +++ b/core/src/Model/Workflow/Nodes/DocumentNodes.cpp @@ -3,13 +3,16 @@ #include "Model/Workflow/Evaluation.hpp" #include "Model/Workflow/Values/BasicValues.hpp" -bool DocumentTemplateExpansionNode::IsInstance(const WorkflowNode* node) { +bool DocumentTemplateExpansionNode::IsInstance(const WorkflowNode* node) +{ return node->GetKind() == KD_DocumentTemplateExpansion; } DocumentTemplateExpansionNode::DocumentTemplateExpansionNode() - : WorkflowNode(KD_DocumentTemplateExpansion) { + : WorkflowNode(KD_DocumentTemplateExpansion) +{ } -void DocumentTemplateExpansionNode::Evaluate(WorkflowEvaluationContext& ctx) { +void DocumentTemplateExpansionNode::Evaluate(WorkflowEvaluationContext& ctx) +{ } |