<div dir="ltr">Alexander, I think it would be best to create an issue and, if you fix it, a MR too.</div><br><div class="gmail_quote gmail_quote_container"><div dir="ltr" class="gmail_attr">On Tue, Mar 18, 2025 at 4:58 PM Alexander Allen <<a href="mailto:alexander.allenz@gmail.com">alexander.allenz@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>If you try to create a product bundle and you set quantity/unit like this image you will notice that quantity doesnt save and always sets 1.</div><div><br></div><div><img src="cid:ii_m8f32nsy0" alt="imagen.png" width="558" height="268"></div><div>I see that file modules\Products\actions\RelationAjax.php send this relation here:</div><div><br></div><div>                       $relationModel->addRelation($sourceRecordId, $relatedRecordId, array('quantities' => $qtysList));</div><div><br></div><div>but addRelation function on modules\Vtiger\models\Relation.php only receive two parameters: 
$sourcerecordId and $destinationRecordId

<br></div><div><br></div><div>Here are my modifications</div><div><br></div><div>public function addRelation($sourcerecordId, $destinationRecordId, $otros = null) {  //paaz agrega para verificar relacion<br>         global $adb;            <br>              $quantity = isset($otros['quantities'][$destinationRecordId]) ? $otros['quantities'][$destinationRecordId] : null;<br>            $sourceModule = $this->getParentModuleModel();<br>             $sourceModuleName = $sourceModule->get('name');<br>            $sourceModuleFocus = CRMEntity::getInstance($sourceModuleName);<br>               $destinationModuleName = $this->getRelationModuleModel()->get('name');<br>          relateEntities($sourceModuleFocus, $sourceModuleName, $sourcerecordId, $destinationModuleName, $destinationRecordId);<br>         if($quantity) {<br>                       $adb->pquery("UPDATE vtiger_seproductsrel SET quantity=? where productid=? and crmid=?", array($quantity,$sourcerecordId, $destinationRecordId)); <br>               }<br>     } <br></div><div><br></div><div>I modify the code to work. Have you ever found this?</div></div>
_______________________________________________<br>
<a href="http://www.vtiger.com/" rel="noreferrer" target="_blank">http://www.vtiger.com/</a></blockquote></div>