本文整理汇总了PHP中clsDBConnSIKP::next_record方法的典型用法代码示例。如果您正苦于以下问题:PHP clsDBConnSIKP::next_record方法的具体用法?PHP clsDBConnSIKP::next_record怎么用?PHP clsDBConnSIKP::next_record使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类clsDBConnSIKP
的用法示例。
在下文中一共展示了clsDBConnSIKP::next_record方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: t_vat_reg_dtl_restaurantForm_BeforeSelect
function t_vat_reg_dtl_restaurantForm_BeforeSelect(&$sender)
{
$t_vat_reg_dtl_restaurantForm_BeforeSelect = true;
$Component =& $sender;
$Container =& CCGetParentContainer($sender);
global $t_vat_reg_dtl_restaurantForm;
//Compatibility
//End t_vat_reg_dtl_restaurantForm_BeforeSelect
//Custom Code @819-2A29BDB7
// -------------------------
// Write your own code here.
$idVat = $t_vat_reg_dtl_restaurantForm->t_cust_account_id->GetValue();
$dbConn = new clsDBConnSIKP();
$sql = "select a.p_vat_type_dtl_id, b.vat_code as rest_service_type_code " . "from t_cust_account a, p_vat_type_dtl b " . "where a.p_vat_type_dtl_id=b.p_vat_type_dtl_id and a.t_cust_account_id = " . $idVat;
$dbConn->query($sql);
while ($dbConn->next_record()) {
$restId = $dbConn->f("p_vat_type_dtl_id");
$restCode = $dbConn->f("rest_service_type_code");
}
$t_vat_reg_dtl_restaurantForm->service_type_desc->SetValue($restCode);
$t_vat_reg_dtl_restaurantForm->p_rest_service_type_id->SetValue($restId);
// -------------------------
//End Custom Code
//Close t_vat_reg_dtl_restaurantForm_BeforeSelect @94-6EBC2391
return $t_vat_reg_dtl_restaurantForm_BeforeSelect;
}
示例2: GetSurvey
function GetSurvey($param_arr)
{
$output = '';
$dbConn = new clsDBConnSIKP();
$query = "select * from t_vat_registration where npwpd = '" . $param_arr['npwpd'] . "'";
//echo $query;exit;
$dbConn->query($query);
if ($dbConn->next_record()) {
$data = $dbConn->Record;
$query2 = "select * from p_survey_question WHERE p_survey_type_id=1 and sequence_no =1";
$dbConn2 = new clsDBConnSIKP();
$dbConn2->query($query2);
if ($dbConn2->next_record()) {
$data2 = $dbConn2->Record;
echo '<script language="javascript">';
echo 'location.href="t_survey_kepuasan_pelanggan_pendaftaran_pertanyaan.php?t_vat_registration_id=' . $data["t_vat_registration_id"] . '&p_survey_question_id=' . $data2["p_survey_question_id"] . '"';
echo '</script>';
} else {
echo '<script language="javascript">';
echo 'alert("Pertanyaan tidak ditemukan.")';
echo '</script>';
}
} else {
$output = '<table class="Record" cellspacing="0" cellpadding="5" style="font-size:15px;padding-left:15px;" border="0">
<tr>
<td colspan="3">NPWPD : <b>' . $param_arr['npwpd'] . '</b> <b style="color:#FF0000;">TIDAK DITEMUKAN</b></td>
</tr>
</table>';
}
$dbConn->close();
return $output;
}
示例3: LOV_Button1_OnClick
function LOV_Button1_OnClick(&$sender)
{
$LOV_Button1_OnClick = true;
$Component =& $sender;
$Container =& CCGetParentContainer($sender);
global $LOV;
//Compatibility
//End LOV_Button1_OnClick
//Custom Code @24-2A29BDB7
// -------------------------
// Write your own code here.
$t_bphtb_registration_id = CCGetFromGet("t_bphtb_registration_id");
$alasan = $LOV->alasan->GetValue();
$user = CCGetUserLogin();
$dbConn = new clsDBConnSIKP();
if ($t_bphtb_registration_id != "" && $alasan != "" && $user != "") {
$query = "select f_delete_bphtb from \r\n\t\t\tf_delete_bphtb(" . $t_bphtb_registration_id . ",'" . $alasan . "','" . $user . "')";
//echo $query;exit;
$dbConn->query($query);
$dbConn->next_record();
$result = $dbConn->f("f_delete_bphtb");
} else {
$result = "id bphtb, alasan atau user login tidak boleh kosong";
}
echo "<script> \r\n\t\talert('" . $result . "');\r\n\t\twindow.opener.location.reload();\r\n\t\twindow.close();\r\n\t</script>";
exit;
// -------------------------
//End Custom Code
//Close LOV_Button1_OnClick @16-408DE5C8
return $LOV_Button1_OnClick;
}
示例4: LOV_BeforeShow
function LOV_BeforeShow(&$sender)
{
$LOV_BeforeShow = true;
$Component =& $sender;
$Container =& CCGetParentContainer($sender);
global $LOV;
//Compatibility
//End LOV_BeforeShow
//Custom Code @8-2A29BDB7
// -------------------------
// Write your own code here.
$i_vat_setllement = CCGetFromGet('i_vat_setllement_id');
$ubah = CCGetFromGet('ubah');
$in_flag_numeric = CCGetFromGet('in_flag_numeric');
$is_desc = CCGetFromGet('is_desc');
if ($ubah == 'T') {
$user = CCGetUserLogin();
$data = array();
$dbConn = new clsDBConnSIKP();
$query = "select f_update_increasing_amt({$i_vat_setllement},{$in_flag_numeric},'{$is_desc}','{$user}') as msg";
$dbConn->query($query);
while ($dbConn->next_record()) {
echo "<script> \r\n\t\t\talert('" . $dbConn->f('msg') . "');\r\n\t\t\twindow.close();\r\n\t\t</script>";
exit;
}
}
// -------------------------
//End Custom Code
//Close LOV_BeforeShow @3-91C2A156
return $LOV_BeforeShow;
}
示例5: t_vat_registrationForm_Button4_OnClick
function t_vat_registrationForm_Button4_OnClick(&$sender)
{
$t_vat_registrationForm_Button4_OnClick = true;
$Component =& $sender;
$Container =& CCGetParentContainer($sender);
global $t_vat_registrationForm;
//Compatibility
//End t_vat_registrationForm_Button4_OnClick
//Custom Code @909-2A29BDB7
// -------------------------
// Write your own code here.
$CusId = CCGetFromGet("CURR_DOC_ID", "");
$dbConn = new clsDBConnSIKP();
$sql = "select f_gen_npwpd(" . $CusId . ")as npwpd from dual";
$dbConn->query($sql);
while ($dbConn->next_record()) {
$val = $dbConn->f("npwpd");
}
$t_vat_registrationForm->npwpd->SetValue($val);
return;
// -------------------------
//End Custom Code
//Close t_vat_registrationForm_Button4_OnClick @908-D8012444
return $t_vat_registrationForm_Button4_OnClick;
}
示例6: t_vat_reg_dtl_parkingForm_BeforeSelect
function t_vat_reg_dtl_parkingForm_BeforeSelect(&$sender)
{
$t_vat_reg_dtl_parkingForm_BeforeSelect = true;
$Component =& $sender;
$Container =& CCGetParentContainer($sender);
global $t_vat_reg_dtl_parkingForm;
//Compatibility
//End t_vat_reg_dtl_parkingForm_BeforeSelect
//Custom Code @822-2A29BDB7
// -------------------------
// Write your own code here.
$CustId = $t_vat_reg_dtl_parkingForm->t_cust_account_id->GetValue();
$dbConn = new clsDBConnSIKP();
$query = "select a.p_vat_type_dtl_id, b.vat_code as parking_classification_code " . "from t_cust_account a, p_vat_type_dtl b " . "where a.p_vat_type_dtl_id = b.p_vat_type_dtl_id " . "and t_cust_account_id = " . $CustId;
$dbConn->query($query);
while ($dbConn->next_record()) {
$idd = $dbConn->f("p_vat_type_dtl_id");
$code = $dbConn->f("parking_classification_code");
}
$dbConn->close();
$t_vat_reg_dtl_parkingForm->p_parking_classification_id->SetValue($idd);
$t_vat_reg_dtl_parkingForm->classification_desc->SetValue($code);
// -------------------------
//End Custom Code
//Close t_vat_reg_dtl_parkingForm_BeforeSelect @94-79EB8A58
return $t_vat_reg_dtl_parkingForm_BeforeSelect;
}
示例7: GetSurvey
function GetSurvey($param_arr)
{
$output = '';
$dbConn = new clsDBConnSIKP();
$query = "select * from p_survey_question WHERE p_survey_question_id=" . $param_arr['p_survey_question_id'];
//echo $query;exit;
$dbConn->query($query);
if ($dbConn->next_record()) {
$data = $dbConn->Record;
$query2 = "select * from p_survey_question WHERE p_survey_type_id=" . $data["p_survey_type_id"] . " and sequence_no =" . ($data["sequence_no"] + 1);
$dbConn2 = new clsDBConnSIKP();
$dbConn2->query($query2);
if ($dbConn2->next_record()) {
$data2 = $dbConn2->Record;
echo '<script language="javascript">';
echo 'location.href="t_survey_kepuasan_pelanggan_pendaftaran_pertanyaan.php?t_vat_registration_id=' . $data["t_vat_registration_id"] . '&p_survey_question_id=' . $data2["p_survey_question_id"] . '"';
echo '</script>';
} else {
echo '<script language="javascript">';
echo 'location.href="t_survey_kepuasan_pelanggan_pendaftaran_terima_kasih.php?t_vat_registration_id=' . $data["t_vat_registration_id"] . '&p_survey_question_id=' . $data2["p_survey_question_id"] . '"';
echo '</script>';
}
} else {
echo '<script language="javascript">';
echo 'alert("Pertanyaan tidak ditemukan.")';
echo '</script>';
}
$dbConn->close();
return $output;
}
开发者ID:rayminami,项目名称:mpd-online,代码行数:30,代码来源:t_survey_kepuasan_pelanggan_pendaftaran_terima_kasih_events.php
示例8: PageCetak
function PageCetak($data, $user, $tahun, $tgl_penerimaan, $tgl_penerimaan_last, $npwpd)
{
$this->AliasNbPages();
$this->AddPage("L");
$this->SetFont('Arial', 'B', 12);
$lheader = $this->lengthCell / 8;
$lheader1 = $lheader * 1;
$lheader2 = $lheader - 15;
$lheader3 = $lheader * 3;
$lheader4 = $lheader * 4;
$dbConn = new clsDBConnSIKP();
$query = "SELECT a.*,\r\n c.region_name AS nama_kota,\r\n d.region_name AS nama_kecamatan,\r\n e.region_name AS nama_kelurahan\r\n FROM t_cust_account a\r\n LEFT JOIN p_region c ON a.brand_p_region_id = c.p_region_id\r\n LEFT JOIN p_region d ON a.brand_p_region_id_kec = d.p_region_id\r\n LEFT JOIN p_region e ON a.brand_p_region_id_kel = e.p_region_id\r\n where a.npwd = '" . $npwpd . "'";
$dbConn->query($query);
$alamat = '';
while ($dbConn->next_record()) {
//$alamat = $dbConn->f("brand_address_name")." .No ". $dbConn->f("brand_address_no")." RT/RW: ".$dbConn->f("brand_address_rt")."/".$dbConn->f("brand_address_rw"). ". KEC.".$dbConn->f("nama_kecamatan")." KEL.".$dbConn->f("nama_kelurahan");
$alamat = $dbConn->f("brand_address_name") . " .No " . $dbConn->f("brand_address_no");
}
$dbConn->close();
$this->Cell($lheader2, $this->height, "NPWPD :");
$this->Cell($lheader1, $this->height, $npwpd);
$this->Ln();
$this->Cell($lheader2, $this->height, "Alamat :");
$this->Cell($lheader1, $this->height, $alamat);
$this->SetFont('Arial', '', 10);
$this->Ln();
$this->Ln();
$ltable = $this->lengthCell / 26;
$ltable1 = $ltable * 1;
$ltable2 = $ltable * 2;
$ltable3 = $ltable * 3;
$ltable4 = $ltable * 4;
$ltable5 = $ltable * 5;
$ltable6 = $ltable * 6;
$ltable7 = $ltable * 7;
$ltable8 = $ltable * 8;
$this->Cell($ltable4, $this->height + 2, "NAMA BADAN", "TBLR", 0, 'C');
$this->Cell($ltable3, $this->height + 2, "JENIS KETETAPAN", "TBLR", 0, 'C');
$this->Cell($ltable6, $this->height + 2, "PERIODE TRANSAKSI", "TBLR", 0, 'C');
$this->Cell($ltable3, $this->height + 2, "TGL PELAPORAN", "TBLR", 0, 'C');
$this->Cell($ltable3, $this->height + 2, "TOTAL PAJAK", "TBLR", 0, 'C');
$this->Cell($ltable5, $this->height + 2, "NO. KWITANSI", "TBLR", 0, 'C');
$this->Ln();
//isi kolom
$this->SetWidths(array($ltable4, $ltable3, $ltable6, $ltable3, $ltable3, $ltable5));
$this->SetAligns(array("L", "C", "C", "C", "R", "L"));
$no = 1;
$jumlahperayat = array();
$jumlahperwaktu = array();
$jumlahtemp = 0;
$i = 0;
$total = 0;
foreach ($data as $item) {
//print data
$this->RowMultiBorderWithHeight(array($item["company_name"], $item["type_code"], $item["periode_awal_laporan"] . " s.d " . $item["periode_akhir_laporan"], $item["tgl_pelaporan"], number_format($item["total_pajak"], 0, ',', '.'), $item["kuitansi_pembayaran"]), array('TBLR', 'TBLR', 'TBLR', 'TBLR', 'TBLR', 'TBLR'), $this->height);
$no++;
}
}
示例9: print_laporan
function print_laporan($param_arr)
{
include "../include/fpdf17/mc_table.php";
$_BORDER = 0;
$_FONT = 'Times';
$_FONTSIZE = 10;
$pdf = new PDF_MC_Table();
$size = $pdf->_getpagesize('Legal');
$pdf->DefPageSize = $size;
$pdf->CurPageSize = $size;
$pdf->AddPage('Landscape', 'Legal');
$pdf->SetFont('helvetica', '', $_FONTSIZE);
$pdf->SetRightMargin(5);
$pdf->SetLeftMargin(9);
$pdf->SetAutoPageBreak(false, 0);
$pdf->SetFont('helvetica', '', 12);
$pdf->SetWidths(array(200));
$pdf->ln(1);
$pdf->RowMultiBorderWithHeight(array("Laporan pencetakan bulanan penerimaan sptpd"), array('', ''), 6);
//$pdf->ln(8);
$pdf->SetWidths(array(40, 200));
$pdf->ln(4);
$pdf->RowMultiBorderWithHeight(array("DAFTAR SPTPD", ": "), array('', ''), 6);
$pdf->RowMultiBorderWithHeight(array("TAHUN", ": " . $param_arr['year_code']), array('', ''), 6);
$pdf->RowMultiBorderWithHeight(array("TANGGAL", ": " . dateToString($param_arr['date_start']) . " s/d " . dateToString($param_arr['date_end'])), array('', ''), 6);
$dbConn = new clsDBConnSIKP();
$query = "select * from sikp.f_laporan_pencetakan_bulanan(1," . $param_arr['year_code'] . ",'" . $param_arr['date_start'] . "', '" . $param_arr['date_end'] . "')";
//print_r($query);
//exit;
$dbConn->query($query);
$items = array();
$pdf->SetFont('helvetica', '', 9);
$pdf->ln(2);
$pdf->SetWidths(array(10, 24, 20, 15, 40, 18, 22, 25, 20, 61, 61, 27));
$pdf->SetAligns(array('C', 'C', 'C', 'C', 'C', 'C', 'C', 'C', 'C', 'C', 'C'));
$pdf->SetWidths(array(10, 40, 35, 15, 40, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18));
$pdf->SetFont('arial', '', 7);
$pdf->RowMultiBorderWithHeight(array("NO", "NAMA", "ALAMAT", "NPWPD", "DESEMBER THN SEBELUMNYA", "JANUARI", "FEBRUARI", "MARET", "APRIL", "MEI", "JUNI", "JULI", "AGUSTUS", "SEPTEMBER", "OKTOBER", "NOVEMBER"), array('LTB', 'LTB', 'LBT', 'LTB', 'LTB', 'LTB', 'LTB', 'LTB', 'LTB', 'TLB', 'TLB', 'TLB', 'TLB', 'TLB', 'TLBR'), 9);
$pdf->SetFont('arial', '', 8);
$no = 1;
$pdf->SetAligns(array('C', 'L', 'L', 'C', 'C', 'C', 'C', 'C', 'C', 'C', 'C', 'C', 'C', 'C', 'C', 'C', 'C', 'C'));
$jumlah = 0;
$jumlah = 0;
while ($dbConn->next_record()) {
$items[] = $item = array('nama' => $dbConn->f("nama"), 'alamat' => $dbConn->f("alamat"), 'npwpd' => $dbConn->f("npwpd"), 'last_desember' => $dbConn->f("last_desember"), 'januari' => $dbConn->f("januari"), 'februari' => $dbConn->f("februari"), 'maret' => $dbConn->f("maret"), 'april' => $dbConn->f("april"), 'mei' => $dbConn->f("mei"), 'juni' => $dbConn->f("juni"), 'juli' => $dbConn->f("juli"), 'agustus' => $dbConn->f("agustus"), 'september' => $dbConn->f("september"), 'oktober' => $dbConn->f("oktober"), 'november' => $dbConn->f("november"));
$pdf->RowMultiBorderWithHeight(array($no, $item['nama'], $item['alamat'], $item['npwpd'], $item['last_desember'], $item['januari'], $item['februari'], $item['maret'], $item['april'], $item['mei'], $item['juni'], $item['juli'], $item['agustus'], $item['september'], $item['oktober'], $item['november']), array('LB', 'LB', 'LB', 'LB', 'LB', 'LB', 'LB', 'LB', 'LB', 'LB', 'LB', 'LB', 'LB', 'LB', 'LB', 'LBR'), 6);
$jumlah += $dbConn->f("amount");
// $jumlah_wp+=$dbConn->f("jumlah_wp");
$no++;
}
//print_r($items);
//exit;
$pdf->SetWidths(array(250, 70));
$pdf->ln(8);
$pdf->RowMultiBorderWithHeight(array("", "KASIE VOP"), array('', '', '', '', '', '', ''), 6);
$pdf->Output("", "I");
exit;
}
示例10: t_vat_setllementGrid_cetak_sptpd_BeforeShow
function t_vat_setllementGrid_cetak_sptpd_BeforeShow(&$sender)
{
$t_vat_setllementGrid_cetak_sptpd_BeforeShow = true;
$Component =& $sender;
$Container =& CCGetParentContainer($sender);
global $t_vat_setllementGrid;
//Compatibility
//End t_vat_setllementGrid_cetak_sptpd_BeforeShow
//Custom Code @301-2A29BDB7
// -------------------------
// Write your own code here.
// -------------------------
//End Custom Code
//DEL // -------------------------
//DEL // Write your own code here.
$nilai = $t_vat_setllementGrid->t_vat_setllement_id->GetValue();
$dbConn = new clsDBConnSIKP();
$sql = "select count(*)as ada from t_vat_penalty where t_vat_setllement_id = " . $nilai;
$dbConn->query($sql);
$dbConn->next_record();
$ada = $dbConn->f("ada");
$dbConn->close();
if ($ada > 0) {
//$nilai2 = $t_vat_setllementGrid->p_vat_type_id->GetValue();
$t_vat_setllementGrid->cetak_sptpd->SetValue("<input type='button' value='CETAK' style='WIDTH: 57px; HEIGHT: 22px' class='Button' onclick=\"" . "cetakStpd(" . $nilai . ",'tgl_tap')\">");
$t_vat_setllementGrid->cetak_sptpd2->SetValue("<input type='button' value='CETAK' style='WIDTH: 57px; HEIGHT: 22px' class='Button' onclick=\"" . "cetakStpd(" . $nilai . ",'tgl_bayar')\">");
} else {
$t_vat_setllementGrid->cetak_sptpd->SetValue("");
$t_vat_setllementGrid->cetak_sptpd2->SetValue("");
}
/*
$action_button = CCGetFromGet("action_button","");
$action_button2 = CCGetFromGet("action_button2","");
if($action_button=='flag_payment' && $action_button2!='cetak_register'){
$dbConn = new clsDBConnSIKP();
$sql="select sikp.f_payment_manual(".CCGetFromGet('t_customer_order_id').",'".CCGetSession('UserLogin')."')";
$dbConn->query($sql);
$dbConn->next_record();
echo "
<script>
alert('".$dbConn->f('f_payment_manual')."');
</script>
";
$dbConn->close();
}else if($action_button2=='cetak_register'){
$dbConn = new clsDBConnSIKP();
$sql="select sikp.f_print_register(".CCGetFromGet('t_customer_order_id').",'".CCGetSession('UserLogin')."')";
$dbConn->query($sql);
$dbConn->next_record();
print_laporan($dbConn->f('f_print_register'));
$dbConn->close();
}
*/
// -------------------------
//Close t_vat_setllementGrid_cetak_sptpd_BeforeShow @300-BF0BB7F2
return $t_vat_setllementGrid_cetak_sptpd_BeforeShow;
}
示例11: GetCetakHTML
function GetCetakHTML($param_arr)
{
$output = '';
$dbConn = new clsDBConnSIKP();
$query = "select * from t_payment_receipt where npwd = '" . $param_arr['npwpd'] . "'\r\n\t\tORDER BY payment_date desc limit 1";
//echo $query;exit;
$dbConn->query($query);
if ($dbConn->next_record()) {
$data = $dbConn->Record;
$output = '';
$output .= '<table class="grid-table" cellspacing="0" cellpadding="0" border="0">
<tr>
<td class="HeaderLeft"><img border="0" alt="" src="../Styles/sikp/Images/Spacer.gif"></td>
<td class="th"><strong>INFORMASI PEMBAYARAN</strong></td>
<td class="HeaderRight"><img border="0" alt="" src="../Styles/sikp/Images/Spacer.gif"></td>
</tr>
</table>';
$output .= '<table class="Record" cellspacing="0" cellpadding="5" style="font-size:15px;padding-left:15px;" border="0">
<tr>
<td colspan="3">Pembayaran Terakhir untuk NPWPD : <b>' . $param_arr['npwpd'] . '</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><u><b>INFO DETAIL : </b></u></td>
</tr>';
$output .= '<tr>';
$output .= '<td width="150"> NPWPD';
$output .= '</td>';
$output .= '<td> : ' . $data['npwd'];
$output .= '</td>';
$output .= '</tr>';
$output .= '<tr>';
$output .= '<td> Periode Pajak';
$output .= '</td>';
$output .= '<td> : ' . $data['finance_period_code'];
$output .= '</td>';
$output .= '</tr>';
$output .= '<tr>';
$output .= '<td> Total Pajak';
$output .= '</td>';
$output .= '<td> : Rp. ' . number_format($data['payment_vat_amount'], 2, ',', '.');
$output .= '</td>';
$output .= '</tr>';
$output .= '</table>';
} else {
$output = '<table class="Record" cellspacing="0" cellpadding="5" style="font-size:15px;padding-left:15px;" border="0">
<tr>
<td colspan="3">NPWPD : <b>' . $param_arr['npwpd'] . '</b> <b style="color:#FF0000;">TIDAK DITEMUKAN</b></td>
</tr>
</table>';
}
$dbConn->close();
return $output;
}
示例12: t_vat_registrationForm_Button1_OnClick
function t_vat_registrationForm_Button1_OnClick(&$sender)
{
$t_vat_registrationForm_Button1_OnClick = true;
$Component =& $sender;
$Container =& CCGetParentContainer($sender);
global $t_vat_registrationForm;
//Compatibility
//End t_vat_registrationForm_Button1_OnClick
//Custom Code @862-2A29BDB7
// -------------------------
// Write your own code here.
// -------------------------
//End Custom Code
// -------------------------
// Write your own code here.
$dbConn1 = new clsDBConnSIKP();
$order = $t_vat_registrationForm->order_no->GetValue();
$mobile = $t_vat_registrationForm->mobile_no_owner->GetValue();
$cari = "select t_customer_order_id from t_customer_order where order_no = '" . $order . "'";
$dbConn1->query($cari);
while ($dbConn1->next_record()) {
$kode = $dbConn1->f("t_customer_order_id");
}
$sql_url = "select f_send_sms('" . $mobile . "','Kode Verifikasi Anda : " . $kode . "')from dual";
$dbConn1->query($sql_url);
/*
$sql_url = "select value from p_global_param where code = 'SMSG_URL'";
$dbConn1->query($sql_url);
while($dbConn1->next_record()){
$val = $dbConn1->f("value");
}
$ch = curl_init();
$url = $val."recipient=".$mobile."&messagetype=SMS:TEXT&messagedata=Kode+Verifikasi+Anda:+".$kode."";
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query(array('body' => json_encode($postdata))));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$server_output = curl_exec ($ch);
curl_close ($ch);
*/
$sql = "INSERT INTO verifikasi(id_verifikasi,order_no,code) VALUES " . "(generate_id('sikp','verifikasi','id_verifikasi'),'" . $order . "','" . $kode . "')";
$dbConn1->query($sql);
$dbConn1->close;
$t_vat_registrationForm->pesan->SetValue("Data Telah Terkirim");
return;
// -------------------------
//Close t_vat_registrationForm_Button1_OnClick @851-A9568806
return $t_vat_registrationForm_Button1_OnClick;
}
示例13: t_ppatForm_Button_Insert_OnClick
function t_ppatForm_Button_Insert_OnClick(&$sender)
{
$t_ppatForm_Button_Insert_OnClick = true;
$Component =& $sender;
$Container =& CCGetParentContainer($sender);
global $t_ppatForm;
//Compatibility
//End t_ppatForm_Button_Insert_OnClick
//Custom Code @374-2A29BDB7
// -------------------------
// Write your own code here.
$dbConn = new clsDBConnSIKP();
$company_brand = $t_ppatForm->company_brand->GetValue();
$p_rqst_type_id = $t_ppatForm->p_rqst_type_id->GetValue();
$p_vat_type_dtl_id = $t_ppatForm->p_vat_type_dtl_id->GetValue();
$brand_address_name = $t_ppatForm->brand_address_name->GetValue();
$brand_address_no = $t_ppatForm->brand_address_no->GetValue();
$brand_address_rt = $t_ppatForm->brand_address_rt->GetValue();
$brand_address_rw = $t_ppatForm->brand_address_rw->GetValue();
$company_additional_addr = $t_ppatForm->company_additional_addr->GetValue();
$brand_p_region_id = $t_ppatForm->brand_p_region_id->GetValue();
$brand_p_region_id_kec = $t_ppatForm->brand_p_region_id_kec->GetValue();
$brand_p_region_id_kel = $t_ppatForm->brand_p_region_id_kel->GetValue();
$brand_phone_no = $t_ppatForm->brand_phone_no->GetValue();
$brand_mobile_no = $t_ppatForm->brand_mobile_no->GetValue();
$brand_fax_no = $t_ppatForm->brand_fax_no->GetValue();
$brand_zip_code = $t_ppatForm->brand_zip_code->GetValue();
$user = $t_ppatForm->created_by->GetValue();
$sql = "select * from f_insert_vat_reg_npwpd_jabatan(\r\n\t\t\t'{$user}', \r\n\t\t\t'{$company_brand}',\r\n\t\t\t'{$company_additional_addr}',\r\n\t\t\t'{$brand_address_name}',\r\n\t\t\t'{$brand_address_no}',\r\n\t\t\t'{$brand_address_rt}',\r\n\t\t\t'{$brand_address_rw}',\r\n\t\t\t{$brand_p_region_id_kel},\r\n\t\t\t{$brand_p_region_id_kec},\r\n\t\t\t{$brand_p_region_id},\r\n\t\t\t'{$brand_phone_no}',\r\n\t\t\t'{$brand_mobile_no}',\r\n\t\t\t'{$brand_fax_no}',\r\n\t\t\t'{$brand_zip_code}',\r\n\t\t\t{$p_rqst_type_id},\r\n\t\t\t{$p_vat_type_dtl_id}\r\n\t\t\t)";
//die($sql);
$dbConn->query($sql);
$dbConn->next_record();
$cust_id = $dbConn->f("v_customer_order_id");
$mess = $dbConn->f("o_result_msg");
if ($cust_id != 0 && $cust_id != "") {
echo '<script language="javascript">';
echo "window.open('../report/cetak_surat_pengukuhan_npwpd_jabatan.php?CURR_DOC_ID={$cust_id}', \r\n\t\t\t\t'pengukuhan', 'height=,width=,left=0,top=0');";
echo "window.open('../report/cetak_form_pemutakhiran_data_npwpd_jabatan.php?t_customer_order_id={$cust_id}', \r\n\t\t\t\t'pemutakhiran', 'height=,width=,left=0,top=0');";
echo '</script>';
} else {
$mess = str_replace('"', '', $mess);
echo '<script language="javascript">';
echo 'alert("' . $mess . '");';
echo '</script>';
}
echo '<script language="javascript">';
echo "location.href='t_vat_registration_npwpd_jabatan.php';";
echo '</script>';
return;
// -------------------------
//End Custom Code
//Close t_ppatForm_Button_Insert_OnClick @24-EE087F7F
return $t_ppatForm_Button_Insert_OnClick;
}
示例14: Page_BeforeShow
function Page_BeforeShow(&$sender)
{
$Page_BeforeShow = true;
$Component =& $sender;
$Container =& CCGetParentContainer($sender);
global $t_wp_registration_list;
//Compatibility
//End Page_BeforeShow
//Custom Code @562-2A29BDB7
// -------------------------
// Write your own code here.
global $Label1;
$tampil = CCGetFromGet('tampil');
if ($tampil == 'T') {
$Label1->SetText("<table border=1><tr><td>tes</td></tr></table>");
$tgl_penerimaan = CCGetFromGet("tgl_penerimaan", "");
//'15-12-2013';
$tgl_penerimaan_last = CCGetFromGet("tgl_penerimaan_last", "");
//'15-12-2013';
$jenis_pajak = CCGetFromGet("jenis_pajak", 0);
// $tgl_penerimaan = '15-12-2013';
$user = CCGetUserLogin();
$data = array();
$dbConn = new clsDBConnSIKP();
if ($jenis_pajak == 0 || $jenis_pajak == "") {
$query = "select a.*, b.vat_code, c.code as account_status from t_vat_registration a\r\n\t\t\tleft join p_vat_type_dtl z on z.p_vat_type_dtl_id = a.p_vat_type_dtl_id\r\n\t\t\tleft join p_vat_type b on b.p_vat_type_id = z.p_vat_type_id\r\n\t\t\tleft join t_customer_order y on y.t_customer_order_id = a.t_customer_order_id\r\n\t\t\tLEFT JOIN p_order_status C ON C .p_order_status_id = y .p_order_status_id\r\n\t\t\twhere trunc(registration_date) >= to_date('{$tgl_penerimaan}')\r\n\t\t\tAND trunc(registration_date) <= to_date('{$tgl_penerimaan_last}')\r\n\t\t\tORDER BY registration_date ASC";
} else {
$query = "select a.*, b.vat_code, c.code as account_status from t_vat_registration a\r\n\t\t\tleft join p_vat_type_dtl z on z.p_vat_type_dtl_id = a.p_vat_type_dtl_id\r\n\t\t\tleft join p_vat_type b on b.p_vat_type_id = z.p_vat_type_id\r\n\t\t\tleft join t_customer_order y on y.t_customer_order_id = a.t_customer_order_id\r\n\t\t\tLEFT JOIN p_order_status C ON C .p_order_status_id = y .p_order_status_id\r\n\t\t\twhere trunc(registration_date) >= to_date('{$tgl_penerimaan}')\r\n\t\t\tAND trunc(registration_date) <= to_date('{$tgl_penerimaan_last}')\r\n\t\t\tAND a.p_vat_type_dtl_id in (select p_vat_type_dtl_id from p_vat_type_dtl\r\n\t\t\t\twhere p_vat_type_id = {$jenis_pajak})\r\n\t\t\tORDER BY registration_date ASC";
}
//echo $query;
//exit;
$tgl_penerimaan = str_replace("'", "", $tgl_penerimaan);
$dbConn->query($query);
while ($dbConn->next_record()) {
$data["t_cust_account_id"][] = $dbConn->f("t_cust_account_id");
$data["t_customer_id"][] = $dbConn->f("t_customer_id");
$data["npwd"][] = $dbConn->f("npwpd");
$data["vat_code"][] = $dbConn->f("vat_code");
$data["registration_date"][] = $dbConn->f("registration_date");
$data["wp_name"][] = $dbConn->f("wp_name");
$data["wp_address_name"][] = $dbConn->f("wp_address_name");
$data["company_name"][] = $dbConn->f("company_name");
$data["address_name"][] = $dbConn->f("address_name");
$data["account_status"][] = $dbConn->f("account_status");
}
$dbConn->close();
$Label1->SetText(PageCetak($data, $user, $tgl_penerimaan, $tgl_penerimaan_last));
}
// -------------------------
//End Custom Code
//Close Page_BeforeShow @1-4BC230CD
return $Page_BeforeShow;
}
示例15: PageCetak
function PageCetak($data)
{
$this->AddPage();
// $this->Cell(0, $this->height, $data["f_bphtb_receipt_duplicate"], 0, 0, "L");
$exp_data = explode("\n", $data["f_bphtb_receipt_duplicate"]);
//get no kuitansi
$exp_data1 = explode(":", $exp_data[0]);
$encImageData = '';
$dbConn = new clsDBConnSIKP();
$query = "select f_encrypt_str('" . trim($exp_data1[1]) . "') AS enc_data";
$dbConn->query($query);
while ($dbConn->next_record()) {
$encImageData = $dbConn->f("enc_data");
}
$dbConn->close();
if (empty($encImageData)) {
$encImageData = "EmptyData";
}
$this->Image('../images/logo_pemda.png', 37, 13, 25, 25);
$this->Image('http://' . $_SERVER['HTTP_HOST'] . '/mpd/include/qrcode/generate-qr.php?param=' . $encImageData, 179, 13, 25, 25, 'PNG');
//$this->Image('http://172.16.20.2:81/mpd/include/qrcode/generate-qr.php?param='.encImageData,179,13,25,25,'PNG');
$this->SetFont('Arial', '', 11);
$this->Cell(40, $this->height, "", "", 0, 'L');
$this->Cell(101, $this->height, "PEMERINTAH KOTA BANDUNG", "", 0, 'C');
$this->Cell(40, $this->height, "", "", 0, 'L');
$this->Ln();
$this->Cell(40, $this->height, "", "", 0, 'L');
$this->Cell(101, $this->height, "DINAS PELAYANAN PAJAK", "", 0, 'C');
$this->Cell(40, $this->height, "", "", 0, 'L');
$this->Ln();
$this->Cell(40, $this->height, "", "", 0, 'L');
$this->Cell(101, $this->height, "Jalan Wastukancana No 2", "", 0, 'C');
$this->Cell(40, $this->height, "", "", 0, 'L');
$this->Ln();
$this->Cell(40, $this->height, "", "", 0, 'L');
$this->Cell(101, $this->height, "Telp. 022 4235052 - Bandung", "", 0, 'C');
$this->Cell(40, $this->height, "", "", 0, 'L');
$this->Ln();
$this->SetFont('Arial', 'B', 14);
$this->Cell(40, $this->height + 7, "", "B", 0, 'L');
$this->Cell(101, $this->height + 7, "Bukti Pembayaran Pajak BPHTB", "B", 0, 'C');
$this->Cell(40, $this->height + 7, "", "B", 0, 'L');
$this->Ln(5);
$this->Ln();
$this->SetFont('Courier', '', 10);
$data = explode("\n", $data["f_bphtb_receipt_duplicate"]);
foreach ($data as $datum) {
$this->Cell(241.3, $this->height, $datum, 0, 0, "L");
$this->Ln();
}
$this->Cell(180, $this->height, "", "B", 0, "C");
}