本文整理汇总了PHP中org::find_financial_details_from_orgId方法的典型用法代码示例。如果您正苦于以下问题:PHP org::find_financial_details_from_orgId方法的具体用法?PHP org::find_financial_details_from_orgId怎么用?PHP org::find_financial_details_from_orgId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org
的用法示例。
在下文中一共展示了org::find_financial_details_from_orgId方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: coa
?>
</th>
<th>As of <?php
echo $last_period;
?>
</th>
</tr>
</thead>
<tbody>
<tr class="label_one">
<td>SALES :</td><td></td><td></td>
</tr>
<?php
if (!empty($_GET['org_id'][0])) {
$org_id = $_GET['org_id'][0];
$org_fin_details = org::find_financial_details_from_orgId($org_id);
if (!empty($org_fin_details)) {
$coa_id = $org_fin_details->coa_id;
}
}
if (empty($coa_id)) {
$coa_id = 1;
}
$coa = new coa();
$coa->coa_id = $coa_id;
$coa->only_parent = true;
$coa->account_qualifier = 'R';
$total_income = 0;
$gbv = new gl_balance_v();
$gbv->period_id_for_fs = $period_id;
$gbv->account_code_low_limit = $coa->field4_low = '400000';