예제 #1
0
     }
     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
0
             $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');