"I'm component in" list in Product DetailView

This commit is contained in:
2025-05-09 17:38:55 +00:00
parent f1a0b7be5e
commit 21ab2d0962
4 changed files with 383 additions and 355 deletions

View File

@@ -313,6 +313,14 @@ $detail->ss->assign("DIV_DESC_CARD",$desc);
//Added for Components
global $current_user;
$ul= $focus->getProductUsingComponent();
$usage_list = '';
foreach($ul as $key => $value) {
$usage_list .= "<a target='_blank' href='index.php?module=EcmProducts&action=DetailView&record=".$value['id']."'>".$value['code']."</a><br>";
}
$detail->ss->assign("USAGE_LIST", $usage_list);
$detail->ss->assign("CREATED_BY_NAME", $focus->created_by_name);
echo $detail->display();