本文整理汇总了PHP中Tax::fetchTax方法的典型用法代码示例。如果您正苦于以下问题:PHP Tax::fetchTax方法的具体用法?PHP Tax::fetchTax怎么用?PHP Tax::fetchTax使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tax
的用法示例。
在下文中一共展示了Tax::fetchTax方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Tax
}
echo json_encode($arr);
die;
break;
case "savePaymentline":
$log->showLog(4, "save paymentline");
$o->payment_id = $_REQUEST["payment_id"];
$o->savePaymentLine();
die;
break;
case "ajaxgetTaxInfo":
include "../simbiz/class/Tax.php";
$tax_id = $_REQUEST["tax_id"];
$rowno = $_REQUEST["rowno"];
$tax = new Tax();
$tax->fetchTax($tax_id);
$arr = array("rowno" => $rowno, "total_tax" => $tax->total_tax, "status" => 1);
echo json_encode($arr);
break;
case "getAccountInfo":
include "../simbiz/class/Accounts.php";
$accounts_id = $_REQUEST["accounts_id"];
$rowno = $_REQUEST["rowno"];
$acc = new Accounts();
$acc->fetchAccounts($accounts_id);
$arr = array("rowno" => $rowno, "tax_id" => $acc->tax_id, "status" => 1);
echo json_encode($arr);
break;
break;
case "ajaxdelete":
$o->payment_id = $_POST['payment_id'];
示例2:
$o->orgctrl = $ctrl->selectionOrg($o->createdby, $o->organization_id, 'N', "", 'Y');
$o->getInputForm("new", -1, $token);
$o->showTaxTable("WHERE tax_id>0 and organization_id={$defaultorganization_id}", "ORDER BY defaultlevel,tax_name");
}
} else {
// if the token is not valid or the token is expired, it back to previous form with previous inputed data
$token = $s->createToken($tokenlife, "CREATE_ACG");
$o->orgctrl = $ctrl->selectionOrg($o->createdby, $o->organization_id, 'N', "", 'Y');
$o->getInputForm("new", -1, $token);
$o->showTaxTable("WHERE tax_id>0 and organization_id={$defaultorganization_id}", "ORDER BY defaultlevel,tax_name");
}
break;
//when user request to edit particular organization
//when user request to edit particular organization
case "edit":
if ($o->fetchTax($o->tax_id)) {
//create a new token for editing a form
$token = $s->createToken($tokenlife, "CREATE_ACG");
$o->orgctrl = $ctrl->selectionOrg($o->createdby, $o->organization_id, 'N', "", 'Y');
$o->getInputForm("edit", $o->tax, $token);
$o->showTaxTable("WHERE tax_id>0 and organization_id={$defaultorganization_id}", "ORDER BY defaultlevel,tax_name");
} else {
//if can't find particular organization from database, return error message
redirect_header("tax.php", 3, "Some error on viewing your tax data, probably database corrupted");
}
break;
//when user press save for change existing organization data
//when user press save for change existing organization data
case "update":
if ($s->check(false, $token, "CREATE_ACG")) {
$o->updatedby = $xoopsUser->getVar('uid');