Commit 6a637be2 authored by deddy's avatar deddy

* revisi jmlbayar di form pembayaran

parent 2236b2ea
......@@ -61,7 +61,7 @@ class Pembayaran extends Core_Controller{
$arr_row['pokok'] = (int)$rs->pbb_yg_harus_dibayar_sppt;
$arr_row['denda'] = (int)$rs->last_denda;
$arr_row['admin'] = (int)$rs->last_admin;
$arr_row['total'] = (int)$rs->pbb_yg_harus_dibayar_sppt;
$arr_row['total'] = (int)$rs->pbb_yg_harus_dibayar_sppt + ((int)$rs->last_denda+(int)$rs->last_admin);
$arr_row['telahbayar'] = (int)$rs->pbb_yg_harus_dibayar_sppt + ((int)$rs->last_denda+(int)$rs->last_admin);
$arr_row['tgl_jatuh_tempo_sppt'] = $rs->tgl_jatuh_tempo_sppt;
$arr_row['month'] = $month;
......@@ -112,7 +112,7 @@ class Pembayaran extends Core_Controller{
'nm_kecamatan' => $data[$i]->nm_kecamatan,
'nm_kelurahan' => $data[$i]->nm_kelurahan,
'tahun' => $data[$i]->tahun,
'pbb' => number_format(($data[$i]->jmlbayar - ($data[$i]->denda + $data[$i]->admin)),2,',','.'),
'pbb' => number_format(($data[$i]->jmlbayar - ($data[$i]->denda)),2,',','.'),
'denda' => number_format($data[$i]->denda,2,',','.'),
'admin' => number_format($data[$i]->admin,2,',','.'),
'jmlbayar' => number_format($data[$i]->jmlbayar,2,',','.'),
......@@ -134,7 +134,7 @@ class Pembayaran extends Core_Controller{
$no_urut = $this->input->post('kdurut');
$kd_jns_op = $this->input->post('kdjns');
$tahun = $this->input->post('tahun');
$jmlbayar = $this->input->post('jmlbayar');
$jmlbayar = $this->input->post('jmlbayar')- $this->input->post('admin');
$denda = $this->input->post('denda');
$admin = $this->input->post('admin');
$tempatbayar = $this->input->post('tempatbayar');
......
......@@ -57,7 +57,7 @@
<td><?php echo $rs->nm_kecamatan?></td>
<td><?php echo $rs->nm_kelurahan?></td>
<td><?php echo $rs->tahun?></td>
<td align="right"><?php echo number_format($rs->jmlbayar - $rs->admin)?></td>
<td align="right"><?php echo number_format($rs->jmlbayar)?></td>
<td align="right"><?php echo number_format($rs->denda)?></td>
<td><?php echo date('d-m-Y', strtotime($rs->createdtime))?></td>
<td><?php echo $rs->nm_tp?></td>
......
......@@ -46,7 +46,7 @@
<td><?php echo $rs->nm_kecamatan?></td>
<td><?php echo $rs->nm_kelurahan?></td>
<td><?php echo $rs->tahun?></td>
<td align="right"><?php echo number_format($rs->jmlbayar - $rs->admin)?></td>
<td align="right"><?php echo number_format($rs->jmlbayar)?></td>
<td align="right"><?php echo number_format($rs->denda)?></td>
<td><?php echo date('d-m-Y', strtotime($rs->createdtime))?></td>
<td><?php echo $rs->nm_tp?></td>
......
<?xml version="1.0" encoding="utf-8"?>
<TfrxReport Version="5.2" DotMatrixReport="False" EngineOptions.UseFileCache="True" IniFile="\Software\Fast Reports" PreviewOptions.Buttons="4095" PreviewOptions.Zoom="1" PreviewOptions.PictureCacheInFile="True" PrintOptions.Printer="Default" PrintOptions.PrintOnSheet="0" ReportOptions.CreateDate="45142,338924375" ReportOptions.Description.Text="" ReportOptions.LastChange="45159,6400613657" ScriptLanguage="PascalScript" ScriptText.Text="procedure ReplaceStr(var Source: string; ToReplace, ReplaceWith: string);&#13;&#10;var&#13;&#10; x : integer;&#13;&#10;begin&#13;&#10; x := Pos(ToReplace, Source);&#13;&#10; while x &#62; 0 do&#13;&#10; begin&#13;&#10; DeleteStr(Source, x, length(ToReplace));&#13;&#10; Insert(ReplaceWith, Source, x);&#13;&#10; x := Pos(ToReplace, Source);&#13;&#10; end;&#13;&#10;end;&#13;&#10; &#13;&#10;begin&#13;&#10; if(&#60;tanggal&#62; &#60;&#62; '') then&#13;&#10; begin&#13;&#10; qryLaporan.Close; &#13;&#10; ReplaceStr(qryLaporan.SQL.Text, '1=1', ' date_trunc(''day'',a.createdtime) = :tanggal '); &#13;&#10; qryLaporan.ParamByName('tanggal').Value := FormatDateTime('yyyy-mm-dd',StrToDate(&#60;tanggal&#62;));&#13;&#10; qryLaporan.Open; &#13;&#10; end;&#13;&#10;&#13;&#10; if(&#60;status&#62; = '-') then&#13;&#10; begin&#13;&#10; qryLaporan.Close; &#13;&#10; ReplaceStr(qryLaporan.SQL.Text, '2=2', ' a.st is null '); &#13;&#10; qryLaporan.Open; &#13;&#10; end&#13;&#10; else if(&#60;status&#62; = '1') then&#13;&#10; begin&#13;&#10; qryLaporan.Close; &#13;&#10; ReplaceStr(qryLaporan.SQL.Text, '2=2', ' a.st=''1'' '); &#13;&#10; qryLaporan.Open; &#13;&#10; end; &#13;&#10;end.">
<TfrxReport Version="5.2" DotMatrixReport="False" EngineOptions.UseFileCache="True" IniFile="\Software\Fast Reports" PreviewOptions.Buttons="4095" PreviewOptions.Zoom="1" PreviewOptions.PictureCacheInFile="True" PrintOptions.Printer="Default" PrintOptions.PrintOnSheet="0" ReportOptions.CreateDate="45142,338924375" ReportOptions.Description.Text="" ReportOptions.LastChange="45166,388438669" ScriptLanguage="PascalScript" ScriptText.Text="procedure ReplaceStr(var Source: string; ToReplace, ReplaceWith: string);&#13;&#10;var&#13;&#10; x : integer;&#13;&#10;begin&#13;&#10; x := Pos(ToReplace, Source);&#13;&#10; while x &#62; 0 do&#13;&#10; begin&#13;&#10; DeleteStr(Source, x, length(ToReplace));&#13;&#10; Insert(ReplaceWith, Source, x);&#13;&#10; x := Pos(ToReplace, Source);&#13;&#10; end;&#13;&#10;end;&#13;&#10; &#13;&#10;begin&#13;&#10; if(&#60;tanggal&#62; &#60;&#62; '') then&#13;&#10; begin&#13;&#10; qryLaporan.Close; &#13;&#10; ReplaceStr(qryLaporan.SQL.Text, '1=1', ' date_trunc(''day'',a.createdtime) = :tanggal '); &#13;&#10; qryLaporan.ParamByName('tanggal').Value := FormatDateTime('yyyy-mm-dd',StrToDate(&#60;tanggal&#62;));&#13;&#10; qryLaporan.Open; &#13;&#10; end;&#13;&#10;&#13;&#10; if(&#60;status&#62; = '-') then&#13;&#10; begin&#13;&#10; qryLaporan.Close; &#13;&#10; ReplaceStr(qryLaporan.SQL.Text, '2=2', ' a.st is null '); &#13;&#10; qryLaporan.Open; &#13;&#10; end&#13;&#10; else if(&#60;status&#62; = '1') then&#13;&#10; begin&#13;&#10; qryLaporan.Close; &#13;&#10; ReplaceStr(qryLaporan.SQL.Text, '2=2', ' a.st=''1'' '); &#13;&#10; qryLaporan.Open; &#13;&#10; end; &#13;&#10;end.">
<Datasets>
<item DataSet="qryLaporan" DataSetName="qryLaporan"/>
</Datasets>
......@@ -12,10 +12,10 @@
<item Name="status" Value="'1'"/>
</Variables>
<TfrxDataPage Name="Data" Height="1000" Left="0" Top="0" Width="1000">
<TfrxZeosQuery Name="qryLaporan" UserName="qryLaporan" CloseDataSource="True" FieldAliases.Text="kd_propinsi=kd_propinsi&#13;&#10;kd_dati2=kd_dati2&#13;&#10;kd_kecamatan=kd_kecamatan&#13;&#10;kd_kelurahan=kd_kelurahan&#13;&#10;kd_blok=kd_blok&#13;&#10;no_urut=no_urut&#13;&#10;kd_jns_op=kd_jns_op&#13;&#10;tahun=tahun&#13;&#10;kodechannel=kodechannel&#13;&#10;nm_kecamatan=nm_kecamatan&#13;&#10;nm_kelurahan=nm_kelurahan&#13;&#10;nm_tp=nm_tp&#13;&#10;nm_wp=nm_wp&#13;&#10;jmlbayar=jmlbayar&#13;&#10;denda=denda&#13;&#10;admin=admin&#13;&#10;createdtime=createdtime&#13;&#10;status=status" BCDToCurrency="False" IgnoreDupParams="False" SQL.Text="select &#13;&#10; a.kd_propinsi,&#13;&#10; a.kd_dati2,&#13;&#10; a.kd_kecamatan,&#13;&#10; a.kd_kelurahan,&#13;&#10; a.kd_blok,&#13;&#10; a.no_urut,&#13;&#10; a.kd_jns_op,&#13;&#10; a.tahun, &#13;&#10; case &#13;&#10; when a.kodechannel = '6010' then 'Teller Bank Papua'&#13;&#10; when a.kodechannel = '6011' then 'ATM Bank Papua'&#13;&#10; when a.kodechannel = '7020' then 'Internet Banking Bank Papua'&#13;&#10; when a.kodechannel = '04' then 'Teller Bank BRI'&#13;&#10; when a.kodechannel = '05' then 'Transfer Bank BRI'&#13;&#10; when a.kodechannel = '06' then 'ATM Bank BRI'&#13;&#10; when a.kodechannel = '06' then 'Internet Bank BRI'&#13;&#10; end kodechannel,&#13;&#10; b.nm_kecamatan,&#13;&#10; c.nm_kelurahan,&#13;&#10; e.nm_tp,&#13;&#10; g.nm_wp,&#13;&#10; coalesce(a.jmlbayar,0) - coalesce(a.admin,0) jmlbayar,&#13;&#10; a.denda,&#13;&#10; a.admin,&#13;&#10; a.createdtime,&#13;&#10; case&#13;&#10; when a.st = '1' then 'Konfirmasi'&#13;&#10; else '-' &#13;&#10; end status &#13;&#10;from bumdes.bayar a &#13;&#10;join pbb.dat_objek_pajak f on &#13;&#10; f.kd_propinsi = a.kd_propinsi&#13;&#10; and f.kd_dati2 = a.kd_dati2&#13;&#10; and f.kd_kecamatan = a.kd_kecamatan&#13;&#10; and f.kd_kelurahan = a.kd_kelurahan&#13;&#10; and f.kd_blok = a.kd_blok&#13;&#10; and f.no_urut = a.no_urut&#13;&#10; and f.kd_jns_op = a.kd_jns_op&#13;&#10;join pbb.dat_subjek_pajak g on g.subjek_pajak_id = f.subjek_pajak_id&#13;&#10;join pbb.ref_kecamatan b on b.kd_propinsi = a.kd_propinsi and b.kd_dati2 = a.kd_dati2 and b.kd_kecamatan = a.kd_kecamatan&#13;&#10;join pbb.ref_kelurahan c on c.kd_propinsi = a.kd_propinsi and c.kd_dati2 = a.kd_dati2 and c.kd_kecamatan = a.kd_kecamatan and c.kd_kelurahan = a.kd_kelurahan&#13;&#10;left join pbb.tempat_pembayaran e on e.kd_kanwil = a.kd_kanwil&#13;&#10;and e.kd_kantor = a.kd_kantor&#13;&#10;and e.kd_tp = a.kd_tp&#13;&#10;where (a.kd_kecamatan = :kd_kecamatan or :kd_kecamatan = '') &#13;&#10;and (a.kd_kelurahan=:kd_kelurahan or :kd_kelurahan = '')&#13;&#10;and (a.tahun =:tahun or :tahun = '')&#13;&#10;and 1=1&#13;&#10;and 2=2 &#13;&#10;order by 1,2,3,4,5,6,7 " PropData="05704C65667402340470546F70022C0A506172616D657465727301010C4C000000204E616D653D226B645F6B6563616D6174616E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B6B645F6B6563616D6174616E262336323B2200010C4C000000204E616D653D226B645F6B6563616D6174616E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B6B645F6B6563616D6174616E262336323B2200010C4C000000204E616D653D226B645F6B656C75726168616E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B6B645F6B656C75726168616E262336323B2200010C4C000000204E616D653D226B645F6B656C75726168616E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B6B645F6B656C75726168616E262336323B2200010C3E000000204E616D653D22746168756E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B746168756E262336323B2200010C3E000000204E616D653D22746168756E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B746168756E262336323B220000"/>
<TfrxZeosQuery Name="qryLaporan" UserName="qryLaporan" CloseDataSource="True" FieldAliases.Text="kd_propinsi=kd_propinsi&#13;&#10;kd_dati2=kd_dati2&#13;&#10;kd_kecamatan=kd_kecamatan&#13;&#10;kd_kelurahan=kd_kelurahan&#13;&#10;kd_blok=kd_blok&#13;&#10;no_urut=no_urut&#13;&#10;kd_jns_op=kd_jns_op&#13;&#10;tahun=tahun&#13;&#10;kodechannel=kodechannel&#13;&#10;nm_kecamatan=nm_kecamatan&#13;&#10;nm_kelurahan=nm_kelurahan&#13;&#10;nm_tp=nm_tp&#13;&#10;nm_wp=nm_wp&#13;&#10;jmlbayar=jmlbayar&#13;&#10;denda=denda&#13;&#10;admin=admin&#13;&#10;createdtime=createdtime&#13;&#10;status=status" BCDToCurrency="False" IgnoreDupParams="False" SQL.Text="select &#13;&#10; a.kd_propinsi,&#13;&#10; a.kd_dati2,&#13;&#10; a.kd_kecamatan,&#13;&#10; a.kd_kelurahan,&#13;&#10; a.kd_blok,&#13;&#10; a.no_urut,&#13;&#10; a.kd_jns_op,&#13;&#10; a.tahun, &#13;&#10; case &#13;&#10; when a.kodechannel = '6010' then 'Teller Bank Papua'&#13;&#10; when a.kodechannel = '6011' then 'ATM Bank Papua'&#13;&#10; when a.kodechannel = '7020' then 'Internet Banking Bank Papua'&#13;&#10; when a.kodechannel = '04' then 'Teller Bank BRI'&#13;&#10; when a.kodechannel = '05' then 'Transfer Bank BRI'&#13;&#10; when a.kodechannel = '06' then 'ATM Bank BRI'&#13;&#10; when a.kodechannel = '06' then 'Internet Bank BRI'&#13;&#10; end kodechannel,&#13;&#10; b.nm_kecamatan,&#13;&#10; c.nm_kelurahan,&#13;&#10; e.nm_tp,&#13;&#10; g.nm_wp,&#13;&#10; coalesce(a.jmlbayar,0) jmlbayar,&#13;&#10; a.denda,&#13;&#10; a.admin,&#13;&#10; a.createdtime,&#13;&#10; case&#13;&#10; when a.st = '1' then 'Konfirmasi'&#13;&#10; else '-' &#13;&#10; end status &#13;&#10;from bumdes.bayar a &#13;&#10;join pbb.dat_objek_pajak f on &#13;&#10; f.kd_propinsi = a.kd_propinsi&#13;&#10; and f.kd_dati2 = a.kd_dati2&#13;&#10; and f.kd_kecamatan = a.kd_kecamatan&#13;&#10; and f.kd_kelurahan = a.kd_kelurahan&#13;&#10; and f.kd_blok = a.kd_blok&#13;&#10; and f.no_urut = a.no_urut&#13;&#10; and f.kd_jns_op = a.kd_jns_op&#13;&#10;join pbb.dat_subjek_pajak g on g.subjek_pajak_id = f.subjek_pajak_id&#13;&#10;join pbb.ref_kecamatan b on b.kd_propinsi = a.kd_propinsi and b.kd_dati2 = a.kd_dati2 and b.kd_kecamatan = a.kd_kecamatan&#13;&#10;join pbb.ref_kelurahan c on c.kd_propinsi = a.kd_propinsi and c.kd_dati2 = a.kd_dati2 and c.kd_kecamatan = a.kd_kecamatan and c.kd_kelurahan = a.kd_kelurahan&#13;&#10;left join pbb.tempat_pembayaran e on e.kd_kanwil = a.kd_kanwil&#13;&#10;and e.kd_kantor = a.kd_kantor&#13;&#10;and e.kd_tp = a.kd_tp&#13;&#10;where (a.kd_kecamatan = :kd_kecamatan or :kd_kecamatan = '') &#13;&#10;and (a.kd_kelurahan=:kd_kelurahan or :kd_kelurahan = '')&#13;&#10;and (a.tahun =:tahun or :tahun = '')&#13;&#10;and 1=1&#13;&#10;and 2=2 &#13;&#10;order by 1,2,3,4,5,6,7 " PropData="05704C65667402340470546F70022C0A506172616D657465727301010C4C000000204E616D653D226B645F6B6563616D6174616E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B6B645F6B6563616D6174616E262336323B2200010C4C000000204E616D653D226B645F6B6563616D6174616E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B6B645F6B6563616D6174616E262336323B2200010C4C000000204E616D653D226B645F6B656C75726168616E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B6B645F6B656C75726168616E262336323B2200010C4C000000204E616D653D226B645F6B656C75726168616E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B6B645F6B656C75726168616E262336323B2200010C3E000000204E616D653D22746168756E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B746168756E262336323B2200010C3E000000204E616D653D22746168756E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B746168756E262336323B220000"/>
</TfrxDataPage>
<TfrxReportPage Name="Page1" Orientation="poLandscape" PaperWidth="355,6" PaperHeight="215,9" PaperSize="5" LeftMargin="10" RightMargin="10" TopMargin="10" BottomMargin="10" ColumnWidth="0" ColumnPositions.Text="" HGuides.Text="" VGuides.Text="">
<TfrxReportTitle Name="ReportTitle1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="120,94496" Left="0" Top="16" Width="1268,410268">
<TfrxReportTitle Name="ReportTitle1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="120,94496" Left="0" Top="18,89765" Width="1268,410268">
<TfrxMemoView Name="Memo2" Align="baWidth" Left="0" Top="0" Width="1268,410268" Height="18,89765" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Arial" Font.Style="1" HAlign="haCenter" ParentFont="False" Text="LAPORAN KONSOLIDASI PENERIMAAN PEMBAYARAN PBB"/>
<TfrxMemoView Name="Memo3" Left="0" Top="94,48825" Width="26,45668559" Height="26,45669291" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="NO"/>
<TfrxMemoView Name="Memo4" Left="26,45671" Top="94,48825" Width="124,72444118" Height="26,45669291" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="NOP"/>
......@@ -30,7 +30,7 @@
<TfrxMemoView Name="Memo13" Left="1028,03216" Top="94,48825" Width="98,26771654" Height="26,45671" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="KODE CHANNEL"/>
<TfrxMemoView Name="Memo25" Left="1126,29994" Top="94,48825" Width="98,26771654" Height="26,45671" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="STATUS"/>
</TfrxReportTitle>
<TfrxMasterData Name="MasterData1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="22,67716535" Left="0" Top="156" Width="1268,410268" ColumnWidth="0" ColumnGap="0" DataSet="qryLaporan" DataSetName="qryLaporan" RowCount="0">
<TfrxMasterData Name="MasterData1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="22,67716535" Left="0" Top="200,31509" Width="1268,410268" ColumnWidth="0" ColumnGap="0" DataSet="qryLaporan" DataSetName="qryLaporan" RowCount="0">
<TfrxMemoView Name="Memo14" Left="0" Top="0" Width="26,45668559" Height="22,67716535" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="0" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="[Line#]"/>
<TfrxMemoView Name="Memo15" Left="26,45671" Top="0" Width="124,72444118" Height="22,67716535" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" VAlign="vaCenter" Text="[qryLaporan.&#34;kd_propinsi&#34;].[qryLaporan.&#34;kd_dati2&#34;].[qryLaporan.&#34;kd_kecamatan&#34;].[qryLaporan.&#34;kd_kelurahan&#34;].[qryLaporan.&#34;kd_blok&#34;].[qryLaporan.&#34;no_urut&#34;].[qryLaporan.&#34;kd_jns_op&#34;]">
<Formats>
......@@ -50,10 +50,10 @@
<TfrxMemoView Name="Memo24" Left="1028,03216" Top="0" Width="98,26767016" Height="22,67716535" DataField="kodechannel" DataSet="qryLaporan" DataSetName="qryLaporan" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" VAlign="vaCenter" Text="[qryLaporan.&#34;kodechannel&#34;]"/>
<TfrxMemoView Name="Memo26" Left="1126,29994" Top="0" Width="98,26767016" Height="22,67716535" DataField="status" DataSet="qryLaporan" DataSetName="qryLaporan" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" VAlign="vaCenter" Text="[qryLaporan.&#34;status&#34;]"/>
</TfrxMasterData>
<TfrxFooter Name="Footer1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="22,67718" Left="0" Top="200" Width="1268,410268">
<TfrxFooter Name="Footer1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="22,67718" Left="0" Top="245,66945" Width="1268,410268">
<TfrxMemoView Name="Memo1" Left="0" Top="0" Width="631,18148559" Height="22,67716535" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="TOTAL"/>
<TfrxMemoView Name="Memo30" Left="631,18151" Top="0" Width="105,82679118" Height="22,67716535" DataSet="qryLaporan" DataSetName="qryLaporan" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="[SUM(&#60;qryLaporan.&#34;jmlbayar&#34;&#62;,MasterData1,2)]"/>
<TfrxMemoView Name="Memo31" Left="737,00835" Top="0" Width="83,14961118" Height="22,67716535" DataSet="qryLaporan" DataSetName="qryLaporan" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="0" Frame.Typ="15" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text=""/>
<TfrxMemoView Name="Memo31" Left="737,00835" Top="0" Width="83,14961118" Height="22,67716535" DataSet="qryLaporan" DataSetName="qryLaporan" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="[SUM(&#60;qryLaporan.&#34;denda&#34;&#62;,MasterData1,2)]"/>
<TfrxMemoView Name="Memo32" Left="820,15801" Top="0" Width="56,69288898" Height="22,67716535" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="0" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text=""/>
<TfrxMemoView Name="Memo33" Left="876,85096" Top="0" Width="151,18109016" Height="22,67716535" DataSet="qryLaporan" DataSetName="qryLaporan" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" VAlign="vaCenter" Text=""/>
<TfrxMemoView Name="Memo34" Left="1028,03216" Top="0" Width="98,26767016" Height="22,67716535" DataSet="qryLaporan" DataSetName="qryLaporan" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" VAlign="vaCenter" Text=""/>
......
<?xml version="1.0" encoding="utf-8"?>
<TfrxReport Version="5.2" DotMatrixReport="False" EngineOptions.UseFileCache="True" IniFile="\Software\Fast Reports" PreviewOptions.Buttons="4095" PreviewOptions.Zoom="1" PreviewOptions.PictureCacheInFile="True" PrintOptions.Printer="Default" PrintOptions.PrintOnSheet="0" ReportOptions.CreateDate="45142,338924375" ReportOptions.Description.Text="" ReportOptions.LastChange="45159,6404326736" ScriptLanguage="PascalScript" ScriptText.Text="procedure ReplaceStr(var Source: string; ToReplace, ReplaceWith: string);&#13;&#10;var&#13;&#10; x : integer;&#13;&#10;begin&#13;&#10; x := Pos(ToReplace, Source);&#13;&#10; while x &#62; 0 do&#13;&#10; begin&#13;&#10; DeleteStr(Source, x, length(ToReplace));&#13;&#10; Insert(ReplaceWith, Source, x);&#13;&#10; x := Pos(ToReplace, Source);&#13;&#10; end;&#13;&#10;end;&#13;&#10; &#13;&#10;begin&#13;&#10; if(&#60;tanggal&#62; &#60;&#62; '') then&#13;&#10; begin&#13;&#10; qryLaporan.Close; &#13;&#10; ReplaceStr(qryLaporan.SQL.Text, '1 = 1', ' date_trunc(''day'',a.createdtime) = :tanggal '); &#13;&#10; qryLaporan.ParamByName('tanggal').Value := FormatDateTime('yyyy-mm-dd',StrToDate(&#60;tanggal&#62;));&#13;&#10; qryLaporan.Open; &#13;&#10; end; &#13;&#10;end.">
<TfrxReport Version="5.2" DotMatrixReport="False" EngineOptions.UseFileCache="True" IniFile="\Software\Fast Reports" PreviewOptions.Buttons="4095" PreviewOptions.Zoom="1" PreviewOptions.PictureCacheInFile="True" PrintOptions.Printer="Default" PrintOptions.PrintOnSheet="0" ReportOptions.CreateDate="45142,338924375" ReportOptions.Description.Text="" ReportOptions.LastChange="45166,3892485417" ScriptLanguage="PascalScript" ScriptText.Text="procedure ReplaceStr(var Source: string; ToReplace, ReplaceWith: string);&#13;&#10;var&#13;&#10; x : integer;&#13;&#10;begin&#13;&#10; x := Pos(ToReplace, Source);&#13;&#10; while x &#62; 0 do&#13;&#10; begin&#13;&#10; DeleteStr(Source, x, length(ToReplace));&#13;&#10; Insert(ReplaceWith, Source, x);&#13;&#10; x := Pos(ToReplace, Source);&#13;&#10; end;&#13;&#10;end;&#13;&#10; &#13;&#10;begin&#13;&#10; if(&#60;tanggal&#62; &#60;&#62; '') then&#13;&#10; begin&#13;&#10; qryLaporan.Close; &#13;&#10; ReplaceStr(qryLaporan.SQL.Text, '1 = 1', ' date_trunc(''day'',a.createdtime) = :tanggal '); &#13;&#10; qryLaporan.ParamByName('tanggal').Value := FormatDateTime('yyyy-mm-dd',StrToDate(&#60;tanggal&#62;));&#13;&#10; qryLaporan.Open; &#13;&#10; end; &#13;&#10;end.">
<Datasets>
<item DataSet="qryLaporan" DataSetName="qryLaporan"/>
</Datasets>
......@@ -11,10 +11,10 @@
<item Name="tanggal" Value="''"/>
</Variables>
<TfrxDataPage Name="Data" Height="1000" Left="0" Top="0" Width="1000">
<TfrxZeosQuery Name="qryLaporan" UserName="qryLaporan" CloseDataSource="True" FieldAliases.Text="kd_propinsi=kd_propinsi&#13;&#10;kd_dati2=kd_dati2&#13;&#10;kd_kecamatan=kd_kecamatan&#13;&#10;kd_kelurahan=kd_kelurahan&#13;&#10;kd_blok=kd_blok&#13;&#10;no_urut=no_urut&#13;&#10;kd_jns_op=kd_jns_op&#13;&#10;tahun=tahun&#13;&#10;kodechannel=kodechannel&#13;&#10;nm_kecamatan=nm_kecamatan&#13;&#10;nm_kelurahan=nm_kelurahan&#13;&#10;nm_tp=nm_tp&#13;&#10;nm_wp=nm_wp&#13;&#10;jmlbayar=jmlbayar&#13;&#10;denda=denda&#13;&#10;admin=admin&#13;&#10;createdtime=createdtime" BCDToCurrency="False" IgnoreDupParams="False" SQL.Text="select &#13;&#10; a.kd_propinsi,&#13;&#10; a.kd_dati2,&#13;&#10; a.kd_kecamatan,&#13;&#10; a.kd_kelurahan,&#13;&#10; a.kd_blok,&#13;&#10; a.no_urut,&#13;&#10; a.kd_jns_op,&#13;&#10; a.tahun, &#13;&#10; case &#13;&#10; when a.kodechannel = '6010' then 'Teller Bank Papua'&#13;&#10; when a.kodechannel = '6011' then 'ATM Bank Papua'&#13;&#10; when a.kodechannel = '7020' then 'Internet Banking Bank Papua'&#13;&#10; when a.kodechannel = '04' then 'Teller Bank BRI'&#13;&#10; when a.kodechannel = '05' then 'Transfer Bank BRI'&#13;&#10; when a.kodechannel = '06' then 'ATM Bank BRI'&#13;&#10; when a.kodechannel = '06' then 'Internet Bank BRI'&#13;&#10; end kodechannel,&#13;&#10; b.nm_kecamatan,&#13;&#10; c.nm_kelurahan,&#13;&#10; e.nm_tp,&#13;&#10; g.nm_wp,&#13;&#10; coalesce(a.jmlbayar,0) - coalesce(a.admin,0) jmlbayar,&#13;&#10; a.denda,&#13;&#10; a.admin,&#13;&#10; a.createdtime &#13;&#10;from bumdes.bayar a &#13;&#10;join pbb.dat_objek_pajak f on &#13;&#10; f.kd_propinsi = a.kd_propinsi&#13;&#10; and f.kd_dati2 = a.kd_dati2&#13;&#10; and f.kd_kecamatan = a.kd_kecamatan&#13;&#10; and f.kd_kelurahan = a.kd_kelurahan&#13;&#10; and f.kd_blok = a.kd_blok&#13;&#10; and f.no_urut = a.no_urut&#13;&#10; and f.kd_jns_op = a.kd_jns_op&#13;&#10;join pbb.dat_subjek_pajak g on g.subjek_pajak_id = f.subjek_pajak_id&#13;&#10;join pbb.ref_kecamatan b on b.kd_propinsi = a.kd_propinsi and b.kd_dati2 = a.kd_dati2 and b.kd_kecamatan = a.kd_kecamatan&#13;&#10;join pbb.ref_kelurahan c on c.kd_propinsi = a.kd_propinsi and c.kd_dati2 = a.kd_dati2 and c.kd_kecamatan = a.kd_kecamatan and c.kd_kelurahan = a.kd_kelurahan&#13;&#10;left join pbb.tempat_pembayaran e on e.kd_kanwil = a.kd_kanwil&#13;&#10;and e.kd_kantor = a.kd_kantor&#13;&#10;and e.kd_tp = a.kd_tp&#13;&#10;where (a.kd_kecamatan = :kd_kecamatan or :kd_kecamatan = '') &#13;&#10;and (a.kd_kelurahan=:kd_kelurahan or :kd_kelurahan = '')&#13;&#10;and (a.tahun =:tahun or :tahun = '')&#13;&#10;and 1 = 1 &#13;&#10;order by 1,2,3,4,5,6,7 " PropData="05704C65667402340470546F70022C0A506172616D657465727301010C4C000000204E616D653D226B645F6B6563616D6174616E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B6B645F6B6563616D6174616E262336323B2200010C4C000000204E616D653D226B645F6B6563616D6174616E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B6B645F6B6563616D6174616E262336323B2200010C4C000000204E616D653D226B645F6B656C75726168616E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B6B645F6B656C75726168616E262336323B2200010C4C000000204E616D653D226B645F6B656C75726168616E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B6B645F6B656C75726168616E262336323B2200010C3E000000204E616D653D22746168756E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B746168756E262336323B2200010C3E000000204E616D653D22746168756E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B746168756E262336323B220000"/>
<TfrxZeosQuery Name="qryLaporan" UserName="qryLaporan" CloseDataSource="True" FieldAliases.Text="kd_propinsi=kd_propinsi&#13;&#10;kd_dati2=kd_dati2&#13;&#10;kd_kecamatan=kd_kecamatan&#13;&#10;kd_kelurahan=kd_kelurahan&#13;&#10;kd_blok=kd_blok&#13;&#10;no_urut=no_urut&#13;&#10;kd_jns_op=kd_jns_op&#13;&#10;tahun=tahun&#13;&#10;kodechannel=kodechannel&#13;&#10;nm_kecamatan=nm_kecamatan&#13;&#10;nm_kelurahan=nm_kelurahan&#13;&#10;nm_tp=nm_tp&#13;&#10;nm_wp=nm_wp&#13;&#10;jmlbayar=jmlbayar&#13;&#10;denda=denda&#13;&#10;admin=admin&#13;&#10;createdtime=createdtime" BCDToCurrency="False" IgnoreDupParams="False" SQL.Text="select &#13;&#10; a.kd_propinsi,&#13;&#10; a.kd_dati2,&#13;&#10; a.kd_kecamatan,&#13;&#10; a.kd_kelurahan,&#13;&#10; a.kd_blok,&#13;&#10; a.no_urut,&#13;&#10; a.kd_jns_op,&#13;&#10; a.tahun, &#13;&#10; case &#13;&#10; when a.kodechannel = '6010' then 'Teller Bank Papua'&#13;&#10; when a.kodechannel = '6011' then 'ATM Bank Papua'&#13;&#10; when a.kodechannel = '7020' then 'Internet Banking Bank Papua'&#13;&#10; when a.kodechannel = '04' then 'Teller Bank BRI'&#13;&#10; when a.kodechannel = '05' then 'Transfer Bank BRI'&#13;&#10; when a.kodechannel = '06' then 'ATM Bank BRI'&#13;&#10; when a.kodechannel = '06' then 'Internet Bank BRI'&#13;&#10; end kodechannel,&#13;&#10; b.nm_kecamatan,&#13;&#10; c.nm_kelurahan,&#13;&#10; e.nm_tp,&#13;&#10; g.nm_wp,&#13;&#10; coalesce(a.jmlbayar,0) jmlbayar,&#13;&#10; a.denda,&#13;&#10; a.admin,&#13;&#10; a.createdtime &#13;&#10;from bumdes.bayar a &#13;&#10;join pbb.dat_objek_pajak f on &#13;&#10; f.kd_propinsi = a.kd_propinsi&#13;&#10; and f.kd_dati2 = a.kd_dati2&#13;&#10; and f.kd_kecamatan = a.kd_kecamatan&#13;&#10; and f.kd_kelurahan = a.kd_kelurahan&#13;&#10; and f.kd_blok = a.kd_blok&#13;&#10; and f.no_urut = a.no_urut&#13;&#10; and f.kd_jns_op = a.kd_jns_op&#13;&#10;join pbb.dat_subjek_pajak g on g.subjek_pajak_id = f.subjek_pajak_id&#13;&#10;join pbb.ref_kecamatan b on b.kd_propinsi = a.kd_propinsi and b.kd_dati2 = a.kd_dati2 and b.kd_kecamatan = a.kd_kecamatan&#13;&#10;join pbb.ref_kelurahan c on c.kd_propinsi = a.kd_propinsi and c.kd_dati2 = a.kd_dati2 and c.kd_kecamatan = a.kd_kecamatan and c.kd_kelurahan = a.kd_kelurahan&#13;&#10;left join pbb.tempat_pembayaran e on e.kd_kanwil = a.kd_kanwil&#13;&#10;and e.kd_kantor = a.kd_kantor&#13;&#10;and e.kd_tp = a.kd_tp&#13;&#10;where (a.kd_kecamatan = :kd_kecamatan or :kd_kecamatan = '') &#13;&#10;and (a.kd_kelurahan=:kd_kelurahan or :kd_kelurahan = '')&#13;&#10;and (a.tahun =:tahun or :tahun = '')&#13;&#10;and 1 = 1 &#13;&#10;order by 1,2,3,4,5,6,7 " PropData="05704C65667402340470546F70022C0A506172616D657465727301010C4C000000204E616D653D226B645F6B6563616D6174616E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B6B645F6B6563616D6174616E262336323B2200010C4C000000204E616D653D226B645F6B6563616D6174616E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B6B645F6B6563616D6174616E262336323B2200010C4C000000204E616D653D226B645F6B656C75726168616E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B6B645F6B656C75726168616E262336323B2200010C4C000000204E616D653D226B645F6B656C75726168616E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B6B645F6B656C75726168616E262336323B2200010C3E000000204E616D653D22746168756E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B746168756E262336323B2200010C3E000000204E616D653D22746168756E222044617461547970653D226674537472696E67222045787072657373696F6E3D22262336303B746168756E262336323B220000"/>
</TfrxDataPage>
<TfrxReportPage Name="Page1" Orientation="poLandscape" PaperWidth="355,6" PaperHeight="215,9" PaperSize="5" LeftMargin="10" RightMargin="10" TopMargin="10" BottomMargin="10" ColumnWidth="0" ColumnPositions.Text="" HGuides.Text="" VGuides.Text="">
<TfrxReportTitle Name="ReportTitle1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="120,94496" Left="0" Top="16" Width="1268,410268">
<TfrxReportTitle Name="ReportTitle1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="120,94496" Left="0" Top="18,89765" Width="1268,410268">
<TfrxMemoView Name="Memo2" Align="baWidth" Left="0" Top="18,89765" Width="1268,410268" Height="18,89765" Font.Charset="1" Font.Color="-16777208" Font.Height="-16" Font.Name="Arial" Font.Style="1" HAlign="haCenter" ParentFont="False" Text="LAPORAN PENERIMAAN PEMBAYARAN PBB"/>
<TfrxMemoView Name="Memo3" Left="0" Top="94,48825" Width="37,7952755905512" Height="26,45669291" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="NO"/>
<TfrxMemoView Name="Memo4" Left="37,7953" Top="94,48825" Width="151,18110236" Height="26,45669291" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="NOP"/>
......@@ -26,9 +26,9 @@
<TfrxMemoView Name="Memo10" Left="793,7013" Top="94,48825" Width="83,1496063" Height="26,45669291" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="DENDA"/>
<TfrxMemoView Name="Memo11" Left="876,85096" Top="94,48825" Width="75,5905511811024" Height="26,45671" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="TANGGAL BAYAR"/>
<TfrxMemoView Name="Memo12" Left="952,44156" Top="94,48825" Width="170,07874015748" Height="26,45671" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="TEMPAT PEMBAYARAN"/>
<TfrxMemoView Name="Memo13" Left="1122,52041" Top="94,48825" Width="98,26771654" Height="26,45671" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="KODE CHANNEL"/>
<TfrxMemoView Name="Memo13" Left="1122,52041" Top="94,48825" Width="147,40157480315" Height="26,45671" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="KODE CHANNEL"/>
</TfrxReportTitle>
<TfrxMasterData Name="MasterData1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="22,67716535" Left="0" Top="156" Width="1268,410268" ColumnWidth="0" ColumnGap="0" DataSet="qryLaporan" DataSetName="qryLaporan" RowCount="0">
<TfrxMasterData Name="MasterData1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="22,67716535" Left="0" Top="200,31509" Width="1268,410268" ColumnWidth="0" ColumnGap="0" DataSet="qryLaporan" DataSetName="qryLaporan" RowCount="0">
<TfrxMemoView Name="Memo14" Left="0" Top="0" Width="37,7952755905512" Height="22,67716535" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="[Line#]"/>
<TfrxMemoView Name="Memo15" Left="37,7953" Top="0" Width="151,18110236" Height="22,67716535" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" VAlign="vaCenter" Text="[qryLaporan.&#34;kd_propinsi&#34;].[qryLaporan.&#34;kd_dati2&#34;].[qryLaporan.&#34;kd_kecamatan&#34;].[qryLaporan.&#34;kd_kelurahan&#34;].[qryLaporan.&#34;kd_blok&#34;].[qryLaporan.&#34;no_urut&#34;].[qryLaporan.&#34;kd_jns_op&#34;]">
<Formats>
......@@ -45,15 +45,15 @@
<TfrxMemoView Name="Memo21" Left="793,7013" Top="0" Width="83,14962094" Height="22,67716535" DataField="denda" DataSet="qryLaporan" DataSetName="qryLaporan" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="[qryLaporan.&#34;denda&#34;]"/>
<TfrxMemoView Name="Memo22" Left="876,85096" Top="0" Width="75,5905511811024" Height="22,67716535" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="[FormatDateTime('dd-mm-yyyy',&#60;qryLaporan.&#34;createdtime&#34;&#62;)]"/>
<TfrxMemoView Name="Memo23" Left="952,44156" Top="0" Width="170,07874015748" Height="22,67716535" DataField="nm_tp" DataSet="qryLaporan" DataSetName="qryLaporan" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" VAlign="vaCenter" Text="[qryLaporan.&#34;nm_tp&#34;]"/>
<TfrxMemoView Name="Memo24" Left="1122,52041" Top="0" Width="98,26767016" Height="22,67716535" DataField="kodechannel" DataSet="qryLaporan" DataSetName="qryLaporan" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" VAlign="vaCenter" Text="[qryLaporan.&#34;kodechannel&#34;]"/>
<TfrxMemoView Name="Memo24" Left="1122,52041" Top="0" Width="147,40156016" Height="22,67716535" DataField="kodechannel" DataSet="qryLaporan" DataSetName="qryLaporan" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" VAlign="vaCenter" Text="[qryLaporan.&#34;kodechannel&#34;]"/>
</TfrxMasterData>
<TfrxFooter Name="Footer1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="22,67718" Left="0" Top="200" Width="1268,410268">
<TfrxFooter Name="Footer1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="22,67718" Left="0" Top="245,66945" Width="1268,410268">
<TfrxMemoView Name="Memo1" Left="0" Top="0" Width="687,87443559" Height="22,67716535" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="TOTAL"/>
<TfrxMemoView Name="Memo30" Left="687,87446" Top="0" Width="105,82679118" Height="22,67716535" DataSet="qryLaporan" DataSetName="qryLaporan" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="[SUM(&#60;qryLaporan.&#34;jmlbayar&#34;&#62;,MasterData1,2)]"/>
<TfrxMemoView Name="Memo31" Left="793,7013" Top="0" Width="83,14961118" Height="22,67716535" DataSet="qryLaporan" DataSetName="qryLaporan" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="0" Frame.Typ="15" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text=""/>
<TfrxMemoView Name="Memo31" Left="793,7013" Top="0" Width="83,14961118" Height="22,67716535" DataSet="qryLaporan" DataSetName="qryLaporan" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="[SUM(&#60;qryLaporan.&#34;denda&#34;&#62;,MasterData1,2)]"/>
<TfrxMemoView Name="Memo32" Left="876,85096" Top="0" Width="75,59053898" Height="22,67716535" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="0" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text=""/>
<TfrxMemoView Name="Memo33" Left="952,44156" Top="0" Width="170,07874016" Height="22,67716535" DataSet="qryLaporan" DataSetName="qryLaporan" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" VAlign="vaCenter" Text=""/>
<TfrxMemoView Name="Memo34" Left="1122,52041" Top="0" Width="98,26767016" Height="22,67716535" DataSet="qryLaporan" DataSetName="qryLaporan" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" VAlign="vaCenter" Text=""/>
<TfrxMemoView Name="Memo34" Left="1122,52041" Top="0" Width="147,40156016" Height="22,67716535" DataSet="qryLaporan" DataSetName="qryLaporan" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" VAlign="vaCenter" Text=""/>
</TfrxFooter>
</TfrxReportPage>
</TfrxReport>
<?xml version="1.0" encoding="utf-8"?>
<TfrxReport Version="5.2" DotMatrixReport="False" EngineOptions.UseFileCache="True" IniFile="\Software\Fast Reports" PreviewOptions.Buttons="4095" PreviewOptions.Zoom="1" PreviewOptions.PictureCacheInFile="True" PrintOptions.Printer="Default" PrintOptions.PrintOnSheet="0" ReportOptions.CreateDate="45139,3623691319" ReportOptions.Description.Text="" ReportOptions.LastChange="45159,5916539931" ScriptLanguage="PascalScript" ScriptText.Text="&#13;&#10;begin&#13;&#10;&#13;&#10;end.">
<TfrxReport Version="5.2" DotMatrixReport="False" EngineOptions.UseFileCache="True" IniFile="\Software\Fast Reports" PreviewOptions.Buttons="4095" PreviewOptions.Zoom="1" PreviewOptions.PictureCacheInFile="True" PrintOptions.Printer="Default" PrintOptions.PrintOnSheet="0" ReportOptions.CreateDate="45139,3623691319" ReportOptions.Description.Text="" ReportOptions.LastChange="45166,3823548611" ScriptLanguage="PascalScript" ScriptText.Text="&#13;&#10;begin&#13;&#10;&#13;&#10;end.">
<Datasets>
<item DataSet="qryWP" DataSetName="qryWP"/>
</Datasets>
<Variables>
<item Name=" data"/>
<item Name="id" Value="7"/>
<item Name="id" Value="9"/>
</Variables>
<TfrxDataPage Name="Data" Height="1000" Left="0" Top="0" Width="1000">
<TfrxZeosQuery Name="qryWP" UserName="qryWP" CloseDataSource="True" FieldAliases.Text="subjek_pajak_id=subjek_pajak_id&#13;&#10;kd_propinsi=kd_propinsi&#13;&#10;kd_dati2=kd_dati2&#13;&#10;kd_kecamatan=kd_kecamatan&#13;&#10;nm_kecamatan=nm_kecamatan&#13;&#10;kd_kelurahan=kd_kelurahan&#13;&#10;nm_kelurahan=nm_kelurahan&#13;&#10;kd_blok=kd_blok&#13;&#10;no_urut=no_urut&#13;&#10;kd_jns_op=kd_jns_op&#13;&#10;total_luas_bumi=total_luas_bumi&#13;&#10;total_luas_bng=total_luas_bng&#13;&#10;njop_bumi=njop_bumi&#13;&#10;njop_bng=njop_bng&#13;&#10;nm_wp=nm_wp&#13;&#10;jalan_wp=jalan_wp&#13;&#10;blok_kav_no_wp=blok_kav_no_wp&#13;&#10;rw_wp=rw_wp&#13;&#10;rt_wp=rt_wp&#13;&#10;kelurahan_wp=kelurahan_wp&#13;&#10;kota_wp=kota_wp&#13;&#10;telp_wp=telp_wp&#13;&#10;handphone=handphone&#13;&#10;jmlbayar=jmlbayar&#13;&#10;denda=denda&#13;&#10;admin=admin&#13;&#10;createdtime=createdtime&#13;&#10;petugas=petugas" BCDToCurrency="False" IgnoreDupParams="False" SQL.Text="SELECT &#13;&#10; a.subjek_pajak_id,&#13;&#10; a.kd_propinsi,&#13;&#10; a.kd_dati2,&#13;&#10; a.kd_kecamatan,&#13;&#10; d.nm_kecamatan,&#13;&#10; a.kd_kelurahan,&#13;&#10; e.nm_kelurahan,&#13;&#10; a.kd_blok,&#13;&#10; a.no_urut,&#13;&#10; a.kd_jns_op,&#13;&#10; a.total_luas_bumi,&#13;&#10; a.total_luas_bng,&#13;&#10; a.njop_bumi,&#13;&#10; a.njop_bng,&#13;&#10; &#13;&#10; b.nm_wp,&#13;&#10; b.jalan_wp,&#13;&#10; b.blok_kav_no_wp,&#13;&#10; b.rw_wp,&#13;&#10; b.rt_wp,&#13;&#10; b.kelurahan_wp,&#13;&#10; b.kota_wp,&#13;&#10; b.telp_wp,&#13;&#10; b.handphone,&#13;&#10; &#13;&#10; f.jmlbayar,&#13;&#10; f.denda,&#13;&#10; f.admin,&#13;&#10; f.createdtime,&#13;&#10; f.petugas &#13;&#10;FROM pbb.dat_objek_pajak a&#13;&#10;join pbb.dat_subjek_pajak b on b.subjek_pajak_id = a.subjek_pajak_id&#13;&#10;join pbb.ref_kecamatan d on d.kd_propinsi = a.kd_propinsi and d.kd_dati2 = a.kd_dati2 and d.kd_kecamatan = a.kd_kecamatan&#13;&#10;join pbb.ref_kelurahan e on e.kd_propinsi = a.kd_propinsi and e.kd_dati2 = a.kd_dati2 and e.kd_kecamatan = a.kd_kecamatan and e.kd_kelurahan = a.kd_kelurahan&#13;&#10;&#13;&#10;join bumdes.bayar f on f.kd_propinsi=a.kd_propinsi and a.kd_dati2 = f.kd_dati2 and&#13;&#10;a.kd_kecamatan = f.kd_kecamatan and a.kd_kelurahan = f.kd_kelurahan &#13;&#10;and a.kd_blok = f.kd_blok and a.no_urut = f.no_urut and a.kd_jns_op = f.kd_jns_op&#13;&#10;where f.id = :id " PropData="05704C65667402140470546F7002140A506172616D657465727301010C39000000204E616D653D226964222044617461547970653D226674496E7465676572222045787072657373696F6E3D22262336303B6964262336323B220000"/>
</TfrxDataPage>
<TfrxReportPage Name="Page1" PaperWidth="210" PaperHeight="297" PaperSize="9" LeftMargin="10" RightMargin="10" TopMargin="10" BottomMargin="10" ColumnWidth="0" ColumnPositions.Text="" HGuides.Text="" VGuides.Text="">
<TfrxReportTitle Name="ReportTitle1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="808,81942" Left="0" Top="16" Width="718,1107">
<TfrxReportPage Name="Page1" PaperWidth="210" PaperHeight="297" PaperSize="9" LeftMargin="10" RightMargin="10" TopMargin="10" BottomMargin="10" ColumnWidth="0" ColumnPositions.Text="" HGuides.Text="275,90569" VGuides.Text="">
<TfrxReportTitle Name="ReportTitle1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="808,81942" Left="0" Top="18,89765" Width="718,1107">
<TfrxMemoView Name="Memo2" Align="baWidth" Left="0" Top="0" Width="718,1107" Height="18,89765" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Arial" Font.Style="1" HAlign="haCenter" ParentFont="False" Text="BUKTI PEMBAYARAN"/>
<TfrxMemoView Name="Memo3" Align="baWidth" Left="0" Top="41,57483" Width="718,1107" Height="18,89765" Font.Charset="1" Font.Color="-16777208" Font.Height="-16" Font.Name="Arial" Font.Style="1" HAlign="haCenter" ParentFont="False" Text="BADAN PENGELOLA PENDAPATAN DAERAH"/>
<TfrxLineView Name="Line1" Align="baWidth" Left="0" Top="105,82684" Width="718,1107" Height="0" Color="0" Diagonal="True"/>
......@@ -64,11 +64,11 @@
<TfrxMemoView Name="Memo24" Left="151,1812" Top="279,68522" Width="18,8976378" Height="22,67716535" Font.Charset="1" Font.Color="-16777208" Font.Height="-12" Font.Name="Arial" Font.Style="0" HAlign="haCenter" ParagraphGap="10" ParentFont="False" Text=":"/>
<TfrxMemoView Name="Memo25" Left="151,1812" Top="302,3624" Width="18,8976378" Height="22,67716535" Font.Charset="1" Font.Color="-16777208" Font.Height="-12" Font.Name="Arial" Font.Style="0" HAlign="haCenter" ParagraphGap="10" ParentFont="False" Text=":"/>
<TfrxMemoView Name="Memo28" Left="151,1812" Top="325,03958" Width="18,8976378" Height="22,67716535" Font.Charset="1" Font.Color="-16777208" Font.Height="-12" Font.Name="Arial" Font.Style="0" HAlign="haCenter" ParagraphGap="10" ParentFont="False" Text=":"/>
<TfrxMemoView Name="Memo29" Left="207,87415" Top="257,00804" Width="113,385826771654" Height="22,67716535" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-12" Font.Name="Arial" Font.Style="0" HAlign="haRight" ParagraphGap="5" ParentFont="False" Text="[&#60;qryWP.&#34;jmlbayar&#34;&#62; - (&#60;qryWP.&#34;denda&#34;&#62;+&#60;qryWP.&#34;admin&#34;&#62;)]"/>
<TfrxMemoView Name="Memo29" Left="207,87415" Top="257,00804" Width="113,38582677" Height="22,67716535" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-12" Font.Name="Arial" Font.Style="0" HAlign="haRight" ParagraphGap="5" ParentFont="False" Text="[&#60;qryWP.&#34;jmlbayar&#34;&#62; - &#60;qryWP.&#34;denda&#34;&#62;]"/>
<TfrxMemoView Name="Memo30" Left="207,87415" Top="279,68522" Width="113,385826771654" Height="22,67716535" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-12" Font.Name="Arial" Font.Style="0" HAlign="haRight" ParagraphGap="5" ParentFont="False" Text="[qryWP.&#34;denda&#34;]"/>
<TfrxMemoView Name="Memo33" Left="207,87415" Top="302,3624" Width="113,385826771654" Height="22,67716535" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-12" Font.Name="Arial" Font.Style="0" HAlign="haRight" ParagraphGap="5" ParentFont="False" Text="[qryWP.&#34;admin&#34;]"/>
<TfrxMemoView Name="Memo34" Left="207,87415" Top="325,03958" Width="113,385826771654" Height="22,67716535" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-12" Font.Name="Arial" Font.Style="0" HAlign="haRight" ParagraphGap="5" ParentFont="False" Text="[qryWP.&#34;jmlbayar&#34;]"/>
<TfrxMemoView Name="Memo35" Left="170,07885" Top="347,71676" Width="536,69316236" Height="22,67716535" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-12" Font.Name="Arial" Font.Style="2" ParagraphGap="5" ParentFont="False" Text="([TerbilangId(&#60;qryWP.&#34;jmlbayar&#34;&#62;)]) rupiah"/>
<TfrxMemoView Name="Memo34" Left="207,87415" Top="325,03958" Width="113,38582677" Height="22,67716535" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-12" Font.Name="Arial" Font.Style="0" HAlign="haRight" ParagraphGap="5" ParentFont="False" Text="[&#60;qryWP.&#34;jmlbayar&#34;&#62; + &#60;qryWP.&#34;admin&#34;&#62;]"/>
<TfrxMemoView Name="Memo35" Left="170,07885" Top="347,71676" Width="536,69316236" Height="22,67716535" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-12" Font.Name="Arial" Font.Style="2" ParagraphGap="5" ParentFont="False" Text="([TerbilangId(&#60;qryWP.&#34;jmlbayar&#34;&#62;+&#60;qryWP.&#34;admin&#34;&#62;)]) rupiah"/>
<TfrxMemoView Name="Memo48" Left="0" Top="389,29159" Width="151,1812" Height="22,67716535" Font.Charset="1" Font.Color="-16777208" Font.Height="-12" Font.Name="Arial" Font.Style="0" ParagraphGap="10" ParentFont="False" Text="Nama Penyetor"/>
<TfrxMemoView Name="Memo49" Left="0" Top="411,96877" Width="151,18110236" Height="22,67716535" Font.Charset="1" Font.Color="-16777208" Font.Height="-12" Font.Name="Arial" Font.Style="0" ParagraphGap="10" ParentFont="False" Text="No HP/Telepon"/>
<TfrxMemoView Name="Memo50" Left="151,1812" Top="389,29159" Width="18,8976378" Height="22,67716535" Font.Charset="1" Font.Color="-16777208" Font.Height="-12" Font.Name="Arial" Font.Style="0" HAlign="haCenter" ParagraphGap="10" ParentFont="False" Text=":"/>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment