Example #1
0
             echo "</td></tr></table>";
         } else {
             //if can't find particular organization from database, return error message
             redirect_header("batch.php", 3, "Some error on viewing your batch data, probably database corrupted");
         }
     } else {
         //if can't find particular organization from database, return error message
         redirect_header("batch.php", 3, "Some error on viewing your batch data, probably database corrupted");
     }
     break;
 case "showsearchform":
     //$o->periodctrl=$ctrl->getSelectPeriod(0,'N');
     $o->accountsctrl = $simbiz->getSelectAccounts(0, 'Y', "", "accounts_id");
     $o->showcalendarfrom = $dp->show("batchdatefrom");
     $o->showcalendarto = $dp->show("batchdateto");
     $o->showSearchForm();
     break;
 case "showhistory":
     $o->showcalendarfrom = $dp->show("batchdatefrom");
     $o->showcalendarto = $dp->show("batchdateto");
     $o->batchdatefrom = $_POST['batchdatefrom'];
     $o->batchdateto = $_POST['batchdateto'];
     $o->batchno = $_POST['batchno'];
     $o->batch_name = $_POST['batch_name'];
     $o->reuse = $_POST['reusesearch'];
     $o->iscomplete = $_POST['iscompletesearch'];
     $o->showSearchForm();
     $wherestring = " WHERE b.batch_id>0 and b.organization_id={$defaultorganization_id} ";
     $wherestring .= $o->genWhereString($o->batchdatefrom, $o->batchdateto, $o->batchno, $o->batch_name, $o->reuse, $o->iscomplete);
     $o->showHistoryTable($wherestring, "ORDER BY b.batchdate DESC,b.batchno DESC");
     break;