当前位置: 首页>>代码示例>>PHP>>正文


PHP Tax::showTaxTable方法代码示例

本文整理汇总了PHP中Tax::showTaxTable方法的典型用法代码示例。如果您正苦于以下问题:PHP Tax::showTaxTable方法的具体用法?PHP Tax::showTaxTable怎么用?PHP Tax::showTaxTable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Tax的用法示例。


在下文中一共展示了Tax::showTaxTable方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

    $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");
        }
        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");
开发者ID:gauravsaxena21,项目名称:simantz,代码行数:31,代码来源:tax.php


注:本文中的Tax::showTaxTable方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。