本文整理汇总了PHP中report_engine::ceckGol方法的典型用法代码示例。如果您正苦于以下问题:PHP report_engine::ceckGol方法的具体用法?PHP report_engine::ceckGol怎么用?PHP report_engine::ceckGol使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类report_engine
的用法示例。
在下文中一共展示了report_engine::ceckGol方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: asettetap_tanah
function asettetap_tanah()
{
$modul = $_REQUEST['menuID'];
$mode = $_REQUEST['mode'];
$tab = $_REQUEST['tab'];
$skpd_id = $_REQUEST['kodeSatker1'];
$tahun = $_REQUEST['tahun_tanah'];
$tipe=$_REQUEST['tipe_file'];
$data=array(
"modul"=>$modul,
"mode"=>$mode,
"tahun"=>$tahun,
"skpd_id"=>$skpd_id,
"tab"=>$tab
);
//mendeklarasikan report_engine. FILE utama untuk reporting
$REPORT=new report_engine();
//menggunakan api untuk query berdasarkan variable yg telah dimasukan
$REPORT->set_data($data);
$satker = $skpd_id;
if ($tahun !='')
{
$get_satker = $REPORT->validasi_data_satker_id($satker);
}
$paramGol = '01';
$result_query = $REPORT->ceckGol($get_satker,$tahun,$paramGol);
if ($result_query){
print(json_encode(array('status'=>true, 'data'=>$result_query)));
}else{
print(json_encode(array('status'=>false)));
}
exit;
}
示例2:
$satker = $skpd_id;
if ($tglawalperolehan !='' && $tglakhirperolehan)
{
$get_satker = $REPORT->validasi_data_satker_id($satker);
}
$hit = 1;
$flag = 'Lain';
$TypeRprtr = 'Lain';
$Info = '';
$exeTempTable = $REPORT->TempTable($hit,$flag,$TypeRprtr,$Info,$tglawalperolehan,$tglakhirperolehan,
$skpd_id);
$paramGol = 'Lain';
$resultParamGol = $REPORT->ceckGol($get_satker,$tglawalperolehan,$tglakhirperolehan,$paramGol);
$serviceJson=json_encode($resultParamGol);
//set gambar untuk laporan
$gambar = $FILE_GAMBAR_KABUPATEN;
//retrieve html
$html=$REPORT->retrieve_html_asetLainnya($resultParamGol,$gambar,$skpd_id,$tglawalperolehan,$tglakhirperolehan);
/*$count = count($html);
for ($i = 0; $i < $count; $i++) {
echo $html[$i];
}
exit;*/
if($tipe=="3"){
echo $serviceJson;
开发者ID:TrinataBhayanaka,项目名称:simbada-tangsel,代码行数:31,代码来源:report_perolehanaset_cetak_aset_lainnya.php