Beispiel #1
0
			</div>
			
			
			<div style="margin-top:20px;">
				Partner Payouts<?php 
echo MM_Utils::getInfoIcon("A partner payout is a commission paid to the affiliate specified on every sale of this product. Partner payouts will be paid in addition to a standard affiliate referral if it exists. For example, if a customer was referred by an affiliate and there is one or more partner payout, commissions will be paid to the referring affiliate and each partner.");
?>
				
				<div style="margin-top:5px;">
					<span style="margin-left:2px;">Affiliate ID</span>
					<span style="margin-left:54px;">Commission Profile</span>
				</div>
				
				<div id="mm-partners" style="margin-top:5px;">
					<?php 
$partners = $product->getPartners();
if (count($partners) > 0) {
    $crntPartner = 1;
    foreach ($partners as $partner) {
        renderFieldOption($crntPartner, $partner->affiliateId, $partner->commissionProfileId);
        $crntPartner++;
    }
} else {
    renderFieldOption(1, "", MM_CommissionProfile::$DFLT_COMMISSION_PROFILE_ID);
}
?>
				</div>
			</div>
		</td>
	</tr>