本文整理汇总了PHP中Tax::insertTax方法的典型用法代码示例。如果您正苦于以下问题:PHP Tax::insertTax方法的具体用法?PHP Tax::insertTax怎么用?PHP Tax::insertTax使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tax
的用法示例。
在下文中一共展示了Tax::insertTax方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
$o->isactive = 1;
} else {
$o->isactive = 0;
}
if ($o->istax == 1 or $o->istax == "on") {
$o->istax = 1;
} else {
$o->istax = 0;
}
switch ($action) {
//When user submit new organization
case "create":
// if the token is exist and not yet expired
$log->showLog(4, "Accessing create record event, with tax name={$o->tax_name}");
if ($s->check(false, $token, "CREATE_ACG")) {
if ($o->insertTax()) {
$latest_id = $o->getLatestTaxID();
redirect_header("tax.php?action=edit&tax_id={$latest_id}", $pausetime, "Your data is saved, the new id={$latest_id}");
} else {
$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");
}
} 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");
}