0
是什麼$bean
代表在此代碼:
<?php
// prevents directly accessing this file from a web browser
if (!defined('sugarEntry') || !sugarEntry)
die('Not A Valid Entry Point');
class Process {
function process(&$bean, $event) {
// calculate item profit
$bean->t_profit_c = ($bean->t_sale_price_c - $bean->t_item_cost_c);
// calculate sale profit
if (!empty($bean->t_qty_sold_c)) {
$bean->t_sale_profit_c = ($bean->t_qty_sold_c * $bean->t_profit_c);
}
}
}
?>
,我還可以使用SQL查詢在這樣的代碼來獲得其他模塊的字段的內容到現場在其他?
@FreshPrinceOfSO:看起來像你在這個代碼**位錯過了**位。 –
'$ bean'是一個被引用傳入的對象...不能再告訴你了...... –