diff --git a/module/productplan/model.php b/module/productplan/model.php
index ea4fac5627..4b1a5c18c7 100644
--- a/module/productplan/model.php
+++ b/module/productplan/model.php
@@ -1120,6 +1120,8 @@ class productplanModel extends model
if($type == 'view')
{
+ $menu .= $this->buildFlowMenu('productplan', $plan, $type, 'direct');
+
if(common::hasPriv('productplan', 'edit', $plan)) $menu .= html::a(helper::createLink('productplan', 'edit', $params), " " . $this->lang->edit, '', "class='btn btn-link' title='{$this->lang->edit}'");
if($plan->parent >= 0 && common::hasPriv('productplan', 'delete', $plan)) $menu .= html::a(helper::createLink('productplan', 'delete', $params), " " . $this->lang->delete, '', "class='btn btn-link' title='{$this->lang->delete}' target='hiddenwin'");
}