Example #1
0
     $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;
 case "checkclosing":
     //echo $o->batchdate;
     include_once "class/FinancialYearLine.php";
     $fyl = new FinancialYearLine();
     $allowtrans = $fyl->allowAccountTransactionInDate($defaultorganization_id, $o->batchdate);
     $newperiod_id = $fyl->period_id;
     //	$retval = $o->checkClosing();
     if ($allowtrans == true) {
         echo "<script type='text/javascript'>\r\n\r\n\t\tself.parent.document.frmBatch.period_id.value={$newperiod_id};\r\n\t\tself.parent.document.frmBatch.submit();\r\n\t\t</script>";
     } else {
         echo "<script type='text/javascript'>\r\n\t\t\talert('Date already closed.');\r\n\t\t</script>";
     }
     break;
 case "refreshbpartner":