Update service slip gaji

Perbaikan komponen gaji dari unit kerja sdm
This commit is contained in:
Salman Manoe 2023-11-21 10:47:07 +07:00
parent a6b7c4eb8f
commit 4e3f30651a
6 changed files with 400 additions and 113 deletions

View File

@ -180,6 +180,8 @@ public final class Master {
}
public static final class KomponenGaji {
public static final Integer FEE_FOR_ON_SITE = 5;
public static final Integer FEE_FOR_SERVICE = 4;
public static final Integer GAJI_POKOK = 1;
public static final Integer SIMPANAN_WAJIB_KOPERASI_GAJI = 14;
public static final Integer SIMPANAN_WAJIB_KOPERASI_REMUNERASI = 38;
@ -190,15 +192,21 @@ public final class Master {
public static final Integer POTONGAN_BPJSTK = 21;
public static final Integer POTONGAN_LAIN = 33;
public static final Integer POTONGAN_OBAT = 16;
public static final Integer POTONGAN_PPH_21_REMUNERASI = 9;
public static final Integer POTONGAN_PPH_21_REMUNERASI_OPERASIONAL = 10;
public static final Integer POTONGAN_PPH_21_REMUNERASI = 36;
public static final Integer POTONGAN_PPH_21_REMUNERASI_OPERASIONAL = 37;
public static final Integer POTONGAN_PPH_21_UANG_MAKAN = 12;
public static final Integer POTONGAN_RAWAT_INAP = 17;
public static final Integer POTONGAN_RAWAT_JALAN = 18;
public static final Integer PFK = 31;
public static final Integer PPH = 8;
public static final Integer PPH_FEE_FOR_ON_SITE = 11;
public static final Integer PPH_FEE_FOR_SERVICE = 10;
public static final Integer PPH_REMUNERASI = 9;
public static final Integer PPH_UANG_LEMBUR = 13;
public static final Integer REMUNERASI = 2;
public static final Integer REMUNERASI_OPERASIONAL = 3;
public static final Integer REMUNERASI_TAMBAHAN_DIKLITJAR = 22;
public static final Integer REMUNERASI_TAMBAHAN_LAIN = 23;
public static final Integer SEWA_RUMAH = 32;
public static final Integer TABUNGAN_RUMAH = 34;
public static final Integer TOKO_KOPERASI = 19;
@ -209,6 +217,7 @@ public final class Master {
public static final Integer TUNJANGAN_PNS = 26;
public static final Integer TUNJANGAN_PPH = 30;
public static final Integer TUNJANGAN_STRUKTURAL = 27;
public static final Integer UANG_LEMBUR = 7;
public static final Integer UANG_MAKAN = 6;
public static final Integer WAKAF_DLL = 39;
}

View File

@ -3288,6 +3288,16 @@ public class ReportServiceImpl extends BaseVoServiceImpl implements ReportServic
result.put("remunerasi", nf.format(k.getNominal()));
} else if (Master.KomponenGaji.REMUNERASI_OPERASIONAL.equals(k.getIdKomponen())) {
result.put("remunerasiOperasional", nf.format(k.getNominal()));
} else if (Master.KomponenGaji.FEE_FOR_SERVICE.equals(k.getIdKomponen())) {
result.put("feeForService", nf.format(k.getNominal()));
} else if (Master.KomponenGaji.FEE_FOR_ON_SITE.equals(k.getIdKomponen())) {
result.put("feeForOnSite", nf.format(k.getNominal()));
} else if (Master.KomponenGaji.REMUNERASI_TAMBAHAN_DIKLITJAR.equals(k.getIdKomponen())) {
result.put("remunerasiTambahanDiklitjar", nf.format(k.getNominal()));
} else if (Master.KomponenGaji.REMUNERASI_TAMBAHAN_LAIN.equals(k.getIdKomponen())) {
result.put("remunerasiTambahanLain", nf.format(k.getNominal()));
} else if (Master.KomponenGaji.UANG_LEMBUR.equals(k.getIdKomponen())) {
result.put("uangLembur", nf.format(k.getNominal()));
} else if (Master.KomponenGaji.UANG_MAKAN.equals(k.getIdKomponen())) {
result.put("uangMakan", nf.format(k.getNominal()));
} else if (Master.KomponenGaji.PFK.equals(k.getIdKomponen())) {
@ -3328,6 +3338,14 @@ public class ReportServiceImpl extends BaseVoServiceImpl implements ReportServic
result.put("tokoKoperasi", nf.format(k.getNominal()));
} else if (Master.KomponenGaji.WAKAF_DLL.equals(k.getIdKomponen())) {
result.put("wakafDanLainLain", nf.format(k.getNominal()));
} else if (Master.KomponenGaji.PPH_REMUNERASI.equals(k.getIdKomponen())) {
result.put("pphRemunerasi", nf.format(k.getNominal()));
} else if (Master.KomponenGaji.PPH_FEE_FOR_SERVICE.equals(k.getIdKomponen())) {
result.put("pphFeeForService", nf.format(k.getNominal()));
} else if (Master.KomponenGaji.PPH_FEE_FOR_ON_SITE.equals(k.getIdKomponen())) {
result.put("pphFeeForOnSite", nf.format(k.getNominal()));
} else if (Master.KomponenGaji.PPH_UANG_LEMBUR.equals(k.getIdKomponen())) {
result.put("pphUangLembur", nf.format(k.getNominal()));
} else if (Master.KomponenGaji.POTONGAN_PPH_21_UANG_MAKAN.equals(k.getIdKomponen())) {
result.put("potonganPph21UangMakan", nf.format(k.getNominal()));
}
@ -3447,6 +3465,16 @@ public class ReportServiceImpl extends BaseVoServiceImpl implements ReportServic
penerimaanDtoBuilder.remunerasi(nf.format(k.getNominal()));
} else if (Master.KomponenGaji.REMUNERASI_OPERASIONAL.equals(k.getIdKomponen())) {
penerimaanDtoBuilder.remunerasiOperasional(nf.format(k.getNominal()));
} else if (Master.KomponenGaji.FEE_FOR_SERVICE.equals(k.getIdKomponen())) {
penerimaanDtoBuilder.feeForService(nf.format(k.getNominal()));
} else if (Master.KomponenGaji.FEE_FOR_ON_SITE.equals(k.getIdKomponen())) {
penerimaanDtoBuilder.feeForOnSite(nf.format(k.getNominal()));
} else if (Master.KomponenGaji.REMUNERASI_TAMBAHAN_DIKLITJAR.equals(k.getIdKomponen())) {
penerimaanDtoBuilder.remunerasiTambahanDiklitjar(nf.format(k.getNominal()));
} else if (Master.KomponenGaji.REMUNERASI_TAMBAHAN_LAIN.equals(k.getIdKomponen())) {
penerimaanDtoBuilder.remunerasiTambahanLain(nf.format(k.getNominal()));
} else if (Master.KomponenGaji.UANG_LEMBUR.equals(k.getIdKomponen())) {
penerimaanDtoBuilder.uangLembur(nf.format(k.getNominal()));
} else if (Master.KomponenGaji.UANG_MAKAN.equals(k.getIdKomponen())) {
penerimaanDtoBuilder.uangMakan(nf.format(k.getNominal()));
} else if (Master.KomponenGaji.PFK.equals(k.getIdKomponen())) {
@ -3487,6 +3515,14 @@ public class ReportServiceImpl extends BaseVoServiceImpl implements ReportServic
potonganDtoBuilder.tokoKoperasi(nf.format(k.getNominal()));
} else if (Master.KomponenGaji.WAKAF_DLL.equals(k.getIdKomponen())) {
potonganDtoBuilder.wakafDanLainLain(nf.format(k.getNominal()));
} else if (Master.KomponenGaji.PPH_REMUNERASI.equals(k.getIdKomponen())) {
potonganDtoBuilder.pphRemunerasi(nf.format(k.getNominal()));
} else if (Master.KomponenGaji.PPH_FEE_FOR_SERVICE.equals(k.getIdKomponen())) {
potonganDtoBuilder.pphFeeForService(nf.format(k.getNominal()));
} else if (Master.KomponenGaji.PPH_FEE_FOR_ON_SITE.equals(k.getIdKomponen())) {
potonganDtoBuilder.pphFeeForOnSite(nf.format(k.getNominal()));
} else if (Master.KomponenGaji.PPH_UANG_LEMBUR.equals(k.getIdKomponen())) {
potonganDtoBuilder.pphUangLembur(nf.format(k.getNominal()));
} else if (Master.KomponenGaji.POTONGAN_PPH_21_UANG_MAKAN.equals(k.getIdKomponen())) {
potonganDtoBuilder.potonganPph21UangMakan(nf.format(k.getNominal()));
}

View File

@ -486,10 +486,11 @@ public class SlipGajiServiceImpl implements SlipGajiService {
data.put(i++,
new Object[] { d.get("id"), d.get("idPegawai"), d.get("namaPegawai"), d.get("nip"), d.get("1"),
d.get("24"), d.get("25"), d.get("26"), d.get("27"), d.get("28"), d.get("29"), d.get("30"),
d.get("2"), d.get("3"), d.get("6"), d.get("31"), d.get("8"), d.get("32"), d.get("40"),
d.get("33"), d.get("34"), d.get("21"), d.get("20"), d.get("14"), d.get("15"), d.get("9"),
d.get("10"), d.get("16"), d.get("17"), d.get("18"), d.get("38"), d.get("35"), d.get("19"),
d.get("39"), d.get("12") });
d.get("2"), d.get("3"), d.get("4"), d.get("5"), d.get("22"), d.get("23"), d.get("7"),
d.get("6"), d.get("31"), d.get("8"), d.get("32"), d.get("40"), d.get("33"), d.get("34"),
d.get("21"), d.get("20"), d.get("14"), d.get("15"), d.get("36"), d.get("37"), d.get("16"),
d.get("17"), d.get("18"), d.get("38"), d.get("35"), d.get("19"), d.get("39"), d.get("9"),
d.get("10"), d.get("11"), d.get("13"), d.get("12") });
}
TreeMap<Integer, Object[]> sorted = new TreeMap<>(data);
Set<Integer> keyset = sorted.keySet();

View File

@ -53,6 +53,26 @@ public class SlipPenerimaanDto {
@Builder.Default
private String remunerasiOperasional = "-";
@Caption(value = "Fee for Service")
@Builder.Default
private String feeForService = "-";
@Caption(value = "Fee for On Site")
@Builder.Default
private String feeForOnSite = "-";
@Caption(value = "Remunerasi Tambahan Pendidikan/Pelatihan/Pengajaran")
@Builder.Default
private String remunerasiTambahanDiklitjar = "-";
@Caption(value = "Remunerasi Tambahan Lain")
@Builder.Default
private String remunerasiTambahanLain = "-";
@Caption(value = "Uang Lembur")
@Builder.Default
private String uangLembur = "-";
@Caption(value = "Uang Makan")
@Builder.Default
private String uangMakan = "-";

View File

@ -85,10 +85,26 @@ public class SlipPotonganDto {
@Builder.Default
private String tokoKoperasi = "-";
@Caption(value = "Wakap Dan Lain-lain")
@Caption(value = "Wakaf Dan Lain-lain")
@Builder.Default
private String wakafDanLainLain = "-";
@Caption(value = "PPH Remunerasi")
@Builder.Default
private String pphRemunerasi = "-";
@Caption(value = "PPH Fee for Service")
@Builder.Default
private String pphFeeForService = "-";
@Caption(value = "PPH Fee for On Site")
@Builder.Default
private String pphFeeForOnSite = "-";
@Caption(value = "PPH Uang Lembur")
@Builder.Default
private String pphUangLembur = "-";
@Caption(value = "Potongan PPH 21 Uang Makan")
@Builder.Default
private String potonganPph21UangMakan = "-";

View File

@ -53,11 +53,20 @@
<field name="jumlahPotonganRemunerasi" class="java.lang.String"/>
<field name="jumlahRemunerasiBersih" class="java.lang.String"/>
<field name="jumlahUangMakanBersih" class="java.lang.String"/>
<field name="feeForService" class="java.lang.String"/>
<field name="feeForOnSite" class="java.lang.String"/>
<field name="remunerasiTambahanDiklitjar" class="java.lang.String"/>
<field name="remunerasiTambahanLain" class="java.lang.String"/>
<field name="uangLembur" class="java.lang.String"/>
<field name="pphRemunerasi" class="java.lang.String"/>
<field name="pphFeeForService" class="java.lang.String"/>
<field name="pphFeeForOnSite" class="java.lang.String"/>
<field name="pphUangLembur" class="java.lang.String"/>
<background>
<band splitType="Stretch"/>
</background>
<summary>
<band height="548">
<band height="596">
<elementGroup>
<image>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="0" y="0" width="505" height="38" isPrintWhenDetailOverflows="true" uuid="c4fbc1c2-32a1-42ec-a770-88149a0d9be1">
@ -87,7 +96,7 @@
</elementGroup>
<elementGroup>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="0" y="56" width="70" height="12" isPrintWhenDetailOverflows="true" uuid="057ed757-3d6b-4918-adbc-376c8110efde">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="0" y="56" width="40" height="12" isPrintWhenDetailOverflows="true" uuid="057ed757-3d6b-4918-adbc-376c8110efde">
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<textElement verticalAlignment="Top">
@ -97,7 +106,7 @@
<text><![CDATA[NAMA]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="70" y="56" width="5" height="12" isPrintWhenDetailOverflows="true" uuid="29707a58-07bf-42e3-92d4-c575a1edb514">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="40" y="56" width="5" height="12" isPrintWhenDetailOverflows="true" uuid="29707a58-07bf-42e3-92d4-c575a1edb514">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement verticalAlignment="Top">
@ -107,7 +116,7 @@
<text><![CDATA[:]]></text>
</staticText>
<textField textAdjust="StretchHeight">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="75" y="56" width="175" height="12" isPrintWhenDetailOverflows="true" uuid="e69c43bd-2cab-467c-84b4-c71f4aeb11b1">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="45" y="56" width="205" height="12" isPrintWhenDetailOverflows="true" uuid="e69c43bd-2cab-467c-84b4-c71f4aeb11b1">
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box rightPadding="5"/>
@ -118,7 +127,7 @@
<textFieldExpression><![CDATA[$F{namaPegawai}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="56" width="70" height="12" isPrintWhenDetailOverflows="true" uuid="533fe63e-c5d7-471c-bb42-e2027b0ab649">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="56" width="65" height="12" isPrintWhenDetailOverflows="true" uuid="533fe63e-c5d7-471c-bb42-e2027b0ab649">
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<textElement verticalAlignment="Top">
@ -128,7 +137,7 @@
<text><![CDATA[UNIT KERJA]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="320" y="56" width="5" height="12" isPrintWhenDetailOverflows="true" uuid="850b30c3-681c-4858-9856-6ab00a690839">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="315" y="56" width="5" height="12" isPrintWhenDetailOverflows="true" uuid="850b30c3-681c-4858-9856-6ab00a690839">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
@ -139,7 +148,7 @@
<text><![CDATA[:]]></text>
</staticText>
<textField textAdjust="StretchHeight">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="325" y="56" width="180" height="12" isPrintWhenDetailOverflows="true" uuid="3a616526-86f6-4d77-8fa2-3bf580c12d46"/>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="320" y="56" width="185" height="12" isPrintWhenDetailOverflows="true" uuid="3a616526-86f6-4d77-8fa2-3bf580c12d46"/>
<box rightPadding="5"/>
<textElement verticalAlignment="Top">
<font size="7"/>
@ -150,7 +159,7 @@
</elementGroup>
<elementGroup>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="0" y="68" width="70" height="12" isPrintWhenDetailOverflows="true" uuid="c3d063bc-de1b-43ac-bfea-84a4844bceed"/>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="0" y="68" width="40" height="12" isPrintWhenDetailOverflows="true" uuid="c3d063bc-de1b-43ac-bfea-84a4844bceed"/>
<textElement verticalAlignment="Top">
<font size="7"/>
<paragraph lineSpacingSize="1.0"/>
@ -158,7 +167,7 @@
<text><![CDATA[NIP]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="70" y="68" width="5" height="12" isPrintWhenDetailOverflows="true" uuid="14b6fc3e-2549-4939-b346-e6c97f7e3cce"/>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="40" y="68" width="5" height="12" isPrintWhenDetailOverflows="true" uuid="14b6fc3e-2549-4939-b346-e6c97f7e3cce"/>
<textElement verticalAlignment="Top">
<font size="7"/>
<paragraph lineSpacingSize="1.0"/>
@ -166,7 +175,7 @@
<text><![CDATA[:]]></text>
</staticText>
<textField textAdjust="StretchHeight">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="75" y="68" width="175" height="12" isPrintWhenDetailOverflows="true" uuid="50c237de-2e38-4625-9108-1a0da686d12e"/>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="45" y="68" width="205" height="12" isPrintWhenDetailOverflows="true" uuid="50c237de-2e38-4625-9108-1a0da686d12e"/>
<box rightPadding="5"/>
<textElement verticalAlignment="Top">
<font size="7"/>
@ -175,8 +184,9 @@
<textFieldExpression><![CDATA[$F{nip}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="68" width="70" height="12" isPrintWhenDetailOverflows="true" uuid="6f486c29-1a20-42de-aadf-24b080500ebf">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="68" width="65" height="12" isPrintWhenDetailOverflows="true" uuid="6f486c29-1a20-42de-aadf-24b080500ebf">
<property name="com.jaspersoft.studio.unit.height" value="px"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement verticalAlignment="Top">
<font size="7"/>
@ -185,7 +195,7 @@
<text><![CDATA[SUBUNIT KERJA]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="320" y="68" width="5" height="12" isPrintWhenDetailOverflows="true" uuid="50dd3319-39de-43cd-ae4f-974415a42b7d">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="315" y="68" width="5" height="12" isPrintWhenDetailOverflows="true" uuid="50dd3319-39de-43cd-ae4f-974415a42b7d">
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<textElement verticalAlignment="Top">
@ -195,7 +205,7 @@
<text><![CDATA[:]]></text>
</staticText>
<textField textAdjust="StretchHeight">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="325" y="68" width="180" height="12" isPrintWhenDetailOverflows="true" uuid="5d0952ed-7a0e-4551-8a1e-37ec77941a0f"/>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="320" y="68" width="185" height="12" isPrintWhenDetailOverflows="true" uuid="5d0952ed-7a0e-4551-8a1e-37ec77941a0f"/>
<box rightPadding="5"/>
<textElement verticalAlignment="Top">
<font size="7"/>
@ -206,7 +216,7 @@
</elementGroup>
<elementGroup>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="0" y="80" width="70" height="12" isPrintWhenDetailOverflows="true" uuid="2f4f51ab-1bb4-483e-b923-2031b7c252d8"/>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="0" y="80" width="40" height="12" isPrintWhenDetailOverflows="true" uuid="2f4f51ab-1bb4-483e-b923-2031b7c252d8"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
@ -220,7 +230,7 @@
<text><![CDATA[JABATAN]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="70" y="80" width="5" height="12" isPrintWhenDetailOverflows="true" uuid="094e5969-9365-4d22-ae11-dbcfa8b6a22f"/>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="40" y="80" width="5" height="12" isPrintWhenDetailOverflows="true" uuid="094e5969-9365-4d22-ae11-dbcfa8b6a22f"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
@ -234,7 +244,7 @@
<text><![CDATA[:]]></text>
</staticText>
<textField textAdjust="StretchHeight">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="75" y="80" width="175" height="12" isPrintWhenDetailOverflows="true" uuid="6ee80807-33e0-4c1b-a4ce-0d3532725ca2"/>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="45" y="80" width="205" height="12" isPrintWhenDetailOverflows="true" uuid="6ee80807-33e0-4c1b-a4ce-0d3532725ca2"/>
<box rightPadding="5">
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
@ -248,7 +258,7 @@
<textFieldExpression><![CDATA[$F{jabatan}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="80" width="70" height="12" isPrintWhenDetailOverflows="true" uuid="5137cbca-8972-499f-8876-cfe9489b879d"/>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="80" width="65" height="12" isPrintWhenDetailOverflows="true" uuid="5137cbca-8972-499f-8876-cfe9489b879d"/>
<textElement verticalAlignment="Top">
<font size="7"/>
<paragraph lineSpacingSize="1.0"/>
@ -256,7 +266,7 @@
<text><![CDATA[PERIODE]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="320" y="80" width="5" height="12" isPrintWhenDetailOverflows="true" uuid="f9645236-a650-4a57-bb3b-8ddce213dc1e"/>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="315" y="80" width="5" height="12" isPrintWhenDetailOverflows="true" uuid="f9645236-a650-4a57-bb3b-8ddce213dc1e"/>
<textElement verticalAlignment="Top">
<font size="7"/>
<paragraph lineSpacingSize="1.0"/>
@ -264,7 +274,7 @@
<text><![CDATA[:]]></text>
</staticText>
<textField textAdjust="StretchHeight">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="325" y="80" width="180" height="12" isPrintWhenDetailOverflows="true" uuid="bcd9a255-8b8f-493f-9f1f-2d2263313f8a"/>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="320" y="80" width="185" height="12" isPrintWhenDetailOverflows="true" uuid="bcd9a255-8b8f-493f-9f1f-2d2263313f8a"/>
<box rightPadding="5"/>
<textElement verticalAlignment="Top">
<font size="7"/>
@ -1060,18 +1070,7 @@
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="160" y="324" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="c1c47269-a592-4d31-bd33-ce605e90b171">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box topPadding="0" leftPadding="2" bottomPadding="0" rightPadding="0"/>
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[]]></text>
<text><![CDATA[FEE FOR SERVICE]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="324" width="165" height="12" isPrintWhenDetailOverflows="true" uuid="2e6c88ec-86a9-4068-9720-655ee0e72c17">
@ -1094,6 +1093,16 @@
</textElement>
<textFieldExpression><![CDATA[$F{potonganObat}]]></textFieldExpression>
</textField>
<textField>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="160" y="324" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="ba9ff2f8-b754-489f-a9d5-7fc4d0efecef"/>
<box rightPadding="5">
<rightPen lineWidth="0.0"/>
</box>
<textElement textAlignment="Right" verticalAlignment="Middle">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{feeForService}]]></textFieldExpression>
</textField>
</elementGroup>
<elementGroup>
<staticText>
@ -1109,18 +1118,7 @@
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="160" y="336" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="9a4cb473-bde0-4999-8a7a-780cf9464328">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box topPadding="0" leftPadding="2" bottomPadding="0" rightPadding="0"/>
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[]]></text>
<text><![CDATA[FEE FOR ON SITE]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="336" width="165" height="12" isPrintWhenDetailOverflows="true" uuid="f5fcd811-bd8f-479a-afd8-1c253738734d">
@ -1143,6 +1141,16 @@
</textElement>
<textFieldExpression><![CDATA[$F{potonganRawatInap}]]></textFieldExpression>
</textField>
<textField>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="160" y="336" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="d2a105e2-2222-41e9-b145-1ccd7e0579b8"/>
<box rightPadding="5">
<rightPen lineWidth="0.0"/>
</box>
<textElement textAlignment="Right" verticalAlignment="Middle">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{feeForOnSite}]]></textFieldExpression>
</textField>
</elementGroup>
<elementGroup>
<staticText>
@ -1158,18 +1166,7 @@
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="160" y="348" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="82f5bc34-995d-41ee-897c-0cc1b1718bb2">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box topPadding="0" leftPadding="2" bottomPadding="0" rightPadding="0"/>
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[]]></text>
<text><![CDATA[REMUNERASI TAMBAHAN DIKLITJAR]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="348" width="165" height="12" isPrintWhenDetailOverflows="true" uuid="c8df630e-92b1-4fcc-9ab9-8c3b927ba9af">
@ -1192,6 +1189,16 @@
</textElement>
<textFieldExpression><![CDATA[$F{potonganRawatJalan}]]></textFieldExpression>
</textField>
<textField>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="160" y="348" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="35c06e83-53b9-4d65-ba59-aade3897f766"/>
<box rightPadding="5">
<rightPen lineWidth="0.0"/>
</box>
<textElement textAlignment="Right" verticalAlignment="Middle">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{remunerasiTambahanDiklitjar}]]></textFieldExpression>
</textField>
</elementGroup>
<elementGroup>
<staticText>
@ -1207,18 +1214,7 @@
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="160" y="360" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="26cabd9a-e831-4c6d-a531-3ec05adfc882">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box topPadding="0" leftPadding="2" bottomPadding="0" rightPadding="0"/>
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[]]></text>
<text><![CDATA[REMUNERASI TAMBAHAN LAIN]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="360" width="165" height="12" isPrintWhenDetailOverflows="true" uuid="f40bbdd5-ab0b-463d-987d-9255331d3c04">
@ -1242,6 +1238,18 @@
</textElement>
<textFieldExpression><![CDATA[$F{simpananWajibKoperasiRemunerasi}]]></textFieldExpression>
</textField>
<textField>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="160" y="360" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="1db159c9-bc64-42db-bbef-381671e06151">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<box rightPadding="5">
<rightPen lineWidth="0.0"/>
</box>
<textElement textAlignment="Right" verticalAlignment="Middle">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{remunerasiTambahanLain}]]></textFieldExpression>
</textField>
</elementGroup>
<elementGroup>
<staticText>
@ -1257,18 +1265,7 @@
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="160" y="372" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="aa0542b2-f481-447a-850e-7a853c4f0a48">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box topPadding="0" leftPadding="2" bottomPadding="0" rightPadding="0"/>
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[]]></text>
<text><![CDATA[UANG LEMBUR]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="372" width="165" height="12" isPrintWhenDetailOverflows="true" uuid="2a1d1f76-7a3b-48eb-96d4-bfabd6c46800">
@ -1292,6 +1289,18 @@
</textElement>
<textFieldExpression><![CDATA[$F{pinjamanKoperasiRemunerasi}]]></textFieldExpression>
</textField>
<textField>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="160" y="372" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="2cf8ac75-75d4-495a-a09d-62c3f42e395a">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<box rightPadding="5">
<rightPen lineWidth="0.0"/>
</box>
<textElement textAlignment="Right" verticalAlignment="Middle">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{uangLembur}]]></textFieldExpression>
</textField>
</elementGroup>
<elementGroup>
<staticText>
@ -1390,7 +1399,203 @@
</elementGroup>
<elementGroup>
<staticText>
<reportElement stretchType="ElementGroupHeight" x="0" y="408" width="160" height="12" isPrintWhenDetailOverflows="true" uuid="94481325-560d-46bb-8fdb-e1abdda79c3e">
<reportElement stretchType="ElementGroupHeight" x="0" y="408" width="160" height="12" isPrintWhenDetailOverflows="true" uuid="d4755586-499a-40a3-adbb-8f3209ae8aaf">
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box leftPadding="2">
<pen lineWidth="1.0"/>
<topPen lineWidth="0.0"/>
<bottomPen lineWidth="0.0"/>
<rightPen lineWidth="0.0"/>
</box>
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="160" y="408" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="2faa9d0b-0576-4c4f-b62f-0c8c1ae2fceb">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box topPadding="0" leftPadding="2" bottomPadding="0" rightPadding="0"/>
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="408" width="165" height="12" isPrintWhenDetailOverflows="true" uuid="0c418808-bdaa-4c6a-946e-477c5521df4b">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box leftPadding="2"/>
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[PPH REMUNERASI]]></text>
</staticText>
<textField>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="415" y="408" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="62fe686c-bff9-4e72-8316-8bee33f752e4"/>
<box rightPadding="5">
<rightPen lineWidth="1.0"/>
</box>
<textElement textAlignment="Right" verticalAlignment="Middle">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{pphRemunerasi}]]></textFieldExpression>
</textField>
</elementGroup>
<elementGroup>
<staticText>
<reportElement stretchType="ElementGroupHeight" x="0" y="420" width="160" height="12" isPrintWhenDetailOverflows="true" uuid="2407f077-bbcf-4348-938e-453e57ad12de">
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box leftPadding="2">
<pen lineWidth="1.0"/>
<topPen lineWidth="0.0"/>
<bottomPen lineWidth="0.0"/>
<rightPen lineWidth="0.0"/>
</box>
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="160" y="420" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="575af7ab-a461-43e8-ba7e-49ef05d7f46e">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box topPadding="0" leftPadding="2" bottomPadding="0" rightPadding="0"/>
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="420" width="165" height="12" isPrintWhenDetailOverflows="true" uuid="1b32cf4a-3136-4bb9-92b3-1a945ead63eb">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box leftPadding="2"/>
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[PPH FEE FOR SERVICE]]></text>
</staticText>
<textField>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="415" y="420" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="1e4e14a8-fa6f-419d-823f-734ca97d8017"/>
<box rightPadding="5">
<rightPen lineWidth="1.0"/>
</box>
<textElement textAlignment="Right" verticalAlignment="Middle">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{pphFeeForService}]]></textFieldExpression>
</textField>
</elementGroup>
<elementGroup>
<staticText>
<reportElement stretchType="ElementGroupHeight" x="0" y="432" width="160" height="12" isPrintWhenDetailOverflows="true" uuid="77db760d-9c09-49fb-9a15-783e698ca46a">
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box leftPadding="2">
<pen lineWidth="1.0"/>
<topPen lineWidth="0.0"/>
<bottomPen lineWidth="0.0"/>
<rightPen lineWidth="0.0"/>
</box>
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="160" y="432" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="aa39e08e-f881-42b5-8d74-f922dc7d16be">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box topPadding="0" leftPadding="2" bottomPadding="0" rightPadding="0"/>
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="432" width="165" height="12" isPrintWhenDetailOverflows="true" uuid="4e48f9ed-d436-4d5a-80ba-78602de52b6b">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box leftPadding="2"/>
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[PPH FEE FOR ON SITE]]></text>
</staticText>
<textField>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="415" y="432" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="2d4b8fa7-59b6-4cc6-a78c-e6ae76348c81"/>
<box rightPadding="5">
<rightPen lineWidth="1.0"/>
</box>
<textElement textAlignment="Right" verticalAlignment="Middle">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{pphFeeForOnSite}]]></textFieldExpression>
</textField>
</elementGroup>
<elementGroup>
<staticText>
<reportElement stretchType="ElementGroupHeight" x="0" y="444" width="160" height="12" isPrintWhenDetailOverflows="true" uuid="e7fbd3c5-e94c-46e8-8c4d-a155c7da7573">
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box leftPadding="2">
<pen lineWidth="1.0"/>
<topPen lineWidth="0.0"/>
<bottomPen lineWidth="0.0"/>
<rightPen lineWidth="0.0"/>
</box>
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="160" y="444" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="792282eb-734a-4353-9fc0-98ef6c124bbc">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box topPadding="0" leftPadding="2" bottomPadding="0" rightPadding="0"/>
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="444" width="165" height="12" isPrintWhenDetailOverflows="true" uuid="0a8b0839-9544-4dcb-9fe3-beadb80086c5">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box leftPadding="2"/>
<textElement verticalAlignment="Middle">
<font size="8"/>
</textElement>
<text><![CDATA[PPH UANG LEMBUR]]></text>
</staticText>
<textField>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="415" y="444" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="60a0d3d3-65b1-4059-8713-d381f5d4a18a"/>
<box rightPadding="5">
<rightPen lineWidth="1.0"/>
</box>
<textElement textAlignment="Right" verticalAlignment="Middle">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{pphUangLembur}]]></textFieldExpression>
</textField>
</elementGroup>
<elementGroup>
<staticText>
<reportElement stretchType="ElementGroupHeight" x="0" y="456" width="160" height="12" isPrintWhenDetailOverflows="true" uuid="94481325-560d-46bb-8fdb-e1abdda79c3e">
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box leftPadding="2">
@ -1405,7 +1610,7 @@
<text><![CDATA[JUMLAH REMUNERASI]]></text>
</staticText>
<textField>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="160" y="408" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="e9e195d1-ed12-4578-b646-ad0b1163324d">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="160" y="456" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="e9e195d1-ed12-4578-b646-ad0b1163324d">
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<box rightPadding="5">
@ -1417,7 +1622,7 @@
<textFieldExpression><![CDATA[$F{jumlahRemunerasi}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="408" width="165" height="12" isPrintWhenDetailOverflows="true" uuid="70876ae2-7220-4cf9-ac91-6c9f5b075050">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="456" width="165" height="12" isPrintWhenDetailOverflows="true" uuid="70876ae2-7220-4cf9-ac91-6c9f5b075050">
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box topPadding="0" leftPadding="2" bottomPadding="0" rightPadding="0">
@ -1429,7 +1634,7 @@
<text><![CDATA[JUMLAH POTONGAN REMUNERASI]]></text>
</staticText>
<textField>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="415" y="408" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="056333fc-ef34-495d-bba4-4a0f6a2a7d7d">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="415" y="456" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="056333fc-ef34-495d-bba4-4a0f6a2a7d7d">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<box rightPadding="5">
@ -1444,7 +1649,7 @@
</elementGroup>
<elementGroup>
<staticText>
<reportElement stretchType="ElementGroupHeight" x="0" y="420" width="415" height="12" isPrintWhenDetailOverflows="true" uuid="5fdc0254-2846-4c35-8453-beb6bd804764">
<reportElement stretchType="ElementGroupHeight" x="0" y="468" width="415" height="12" isPrintWhenDetailOverflows="true" uuid="5fdc0254-2846-4c35-8453-beb6bd804764">
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box leftPadding="2">
@ -1459,7 +1664,7 @@
<text><![CDATA[JUMLAH REMUNERASI BERSIH YANG DITERIMA]]></text>
</staticText>
<textField>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="415" y="420" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="11b23983-6603-471e-ba02-11eda946fa47">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="415" y="468" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="11b23983-6603-471e-ba02-11eda946fa47">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<box rightPadding="5">
@ -1472,7 +1677,7 @@
<textFieldExpression><![CDATA[$F{jumlahRemunerasiBersih}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="505" y="420" width="25" height="12" isPrintWhenDetailOverflows="true" uuid="50ba0c32-aa2f-4beb-8ad5-b3d9d6c8520b">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="505" y="468" width="25" height="12" isPrintWhenDetailOverflows="true" uuid="50ba0c32-aa2f-4beb-8ad5-b3d9d6c8520b">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
@ -1485,7 +1690,7 @@
</elementGroup>
<elementGroup>
<staticText>
<reportElement stretchType="ElementGroupHeight" x="0" y="432" width="505" height="12" isPrintWhenDetailOverflows="true" uuid="2714a3fa-f436-4bc6-bdfa-176d6f15bfc9">
<reportElement stretchType="ElementGroupHeight" x="0" y="480" width="505" height="12" isPrintWhenDetailOverflows="true" uuid="2714a3fa-f436-4bc6-bdfa-176d6f15bfc9">
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box leftPadding="2">
@ -1503,7 +1708,7 @@
</elementGroup>
<elementGroup>
<staticText>
<reportElement stretchType="ElementGroupHeight" x="0" y="444" width="160" height="12" isPrintWhenDetailOverflows="true" uuid="b73e63d9-c75a-4c4b-8eb2-20fd7d5d7f86">
<reportElement stretchType="ElementGroupHeight" x="0" y="492" width="160" height="12" isPrintWhenDetailOverflows="true" uuid="b73e63d9-c75a-4c4b-8eb2-20fd7d5d7f86">
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box leftPadding="2">
@ -1519,7 +1724,7 @@
<text><![CDATA[UANG MAKAN]]></text>
</staticText>
<textField>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="160" y="444" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="2b243495-71ec-4bb7-900a-d77345fb331f"/>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="160" y="492" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="2b243495-71ec-4bb7-900a-d77345fb331f"/>
<box rightPadding="5">
<topPen lineWidth="1.0"/>
</box>
@ -1529,7 +1734,7 @@
<textFieldExpression><![CDATA[$F{uangMakan}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="444" width="165" height="12" isPrintWhenDetailOverflows="true" uuid="2f7dc4d5-31a3-4078-84c1-e29868c46d1e">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="250" y="492" width="165" height="12" isPrintWhenDetailOverflows="true" uuid="2f7dc4d5-31a3-4078-84c1-e29868c46d1e">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
@ -1542,7 +1747,7 @@
<text><![CDATA[POTONGAN PPH 21]]></text>
</staticText>
<textField>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="415" y="444" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="8039ce3d-4f41-45ca-88e8-65d4853f72ac"/>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="415" y="492" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="8039ce3d-4f41-45ca-88e8-65d4853f72ac"/>
<box rightPadding="5">
<topPen lineWidth="1.0"/>
<rightPen lineWidth="1.0"/>
@ -1555,7 +1760,7 @@
</elementGroup>
<elementGroup>
<staticText>
<reportElement stretchType="ElementGroupHeight" x="0" y="456" width="415" height="12" isPrintWhenDetailOverflows="true" uuid="6e1e5438-0d8e-4e4a-a0b2-2cb9a4fde04c">
<reportElement stretchType="ElementGroupHeight" x="0" y="504" width="415" height="12" isPrintWhenDetailOverflows="true" uuid="6e1e5438-0d8e-4e4a-a0b2-2cb9a4fde04c">
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box leftPadding="2">
@ -1570,7 +1775,7 @@
<text><![CDATA[JUMLAH UANG MAKAN BERSIH YANG DITERIMA]]></text>
</staticText>
<textField>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="415" y="456" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="d2959bf2-7cad-4da4-8bcf-6455965bd275">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="415" y="504" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="d2959bf2-7cad-4da4-8bcf-6455965bd275">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<box rightPadding="5">
@ -1583,7 +1788,7 @@
<textFieldExpression><![CDATA[$F{jumlahUangMakanBersih}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="505" y="456" width="25" height="12" isPrintWhenDetailOverflows="true" uuid="ac565196-1937-4f83-a200-51a353d03312">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="505" y="504" width="25" height="12" isPrintWhenDetailOverflows="true" uuid="ac565196-1937-4f83-a200-51a353d03312">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
@ -1596,7 +1801,7 @@
</elementGroup>
<elementGroup>
<staticText>
<reportElement stretchType="ElementGroupHeight" x="0" y="468" width="415" height="12" isPrintWhenDetailOverflows="true" uuid="1eca11e5-21d1-4fec-827e-727b229a243a">
<reportElement stretchType="ElementGroupHeight" x="0" y="516" width="415" height="12" isPrintWhenDetailOverflows="true" uuid="1eca11e5-21d1-4fec-827e-727b229a243a">
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box leftPadding="2">
@ -1611,7 +1816,7 @@
<text><![CDATA[TOTAL BERSIH YANG DITERIMA (A + B + C)]]></text>
</staticText>
<textField>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="415" y="468" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="f18d0b78-97b7-4f61-bd05-027770b1dd0e">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="415" y="516" width="90" height="12" isPrintWhenDetailOverflows="true" uuid="f18d0b78-97b7-4f61-bd05-027770b1dd0e">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<box rightPadding="5">
@ -1625,7 +1830,7 @@
<textFieldExpression><![CDATA[$F{jumlahPenerimaanBersih}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="505" y="468" width="25" height="12" isPrintWhenDetailOverflows="true" uuid="eea87c44-436d-4e1c-8287-189c042c7cfe">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="505" y="516" width="25" height="12" isPrintWhenDetailOverflows="true" uuid="eea87c44-436d-4e1c-8287-189c042c7cfe">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
@ -1638,7 +1843,7 @@
</elementGroup>
<elementGroup>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="0" y="480" width="505" height="20" isPrintWhenDetailOverflows="true" uuid="471a5378-4af0-4aa7-ae66-c10420c23ccc">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="0" y="528" width="505" height="20" isPrintWhenDetailOverflows="true" uuid="471a5378-4af0-4aa7-ae66-c10420c23ccc">
<property name="com.jaspersoft.studio.unit.height" value="px"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
@ -1651,7 +1856,7 @@
</elementGroup>
<elementGroup>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="0" y="500" width="50" height="12" isPrintWhenDetailOverflows="true" uuid="d4a16575-90de-4b75-a006-e58ea59426d8">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="0" y="548" width="50" height="12" isPrintWhenDetailOverflows="true" uuid="d4a16575-90de-4b75-a006-e58ea59426d8">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
@ -1661,7 +1866,7 @@
<text><![CDATA[(1)]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="50" y="500" width="455" height="12" isPrintWhenDetailOverflows="true" uuid="4ea43ee2-0609-45b2-ad25-ab9b3fbdab99">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="50" y="548" width="455" height="12" isPrintWhenDetailOverflows="true" uuid="4ea43ee2-0609-45b2-ad25-ab9b3fbdab99">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
@ -1674,7 +1879,7 @@
</elementGroup>
<elementGroup>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="0" y="512" width="50" height="12" isPrintWhenDetailOverflows="true" uuid="ed2244d8-eec5-4731-af81-6ab60f64a178">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="0" y="560" width="50" height="12" isPrintWhenDetailOverflows="true" uuid="ed2244d8-eec5-4731-af81-6ab60f64a178">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
@ -1685,7 +1890,7 @@
<text><![CDATA[(2)]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="50" y="512" width="455" height="12" isPrintWhenDetailOverflows="true" uuid="9c9a06b5-9ac2-4c48-baf9-32d3252fe867">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="50" y="560" width="455" height="12" isPrintWhenDetailOverflows="true" uuid="9c9a06b5-9ac2-4c48-baf9-32d3252fe867">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
@ -1698,7 +1903,7 @@
</elementGroup>
<elementGroup>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="0" y="524" width="50" height="12" isPrintWhenDetailOverflows="true" uuid="6793e7d0-c8ff-4e8f-8089-a17f379abd45">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="0" y="572" width="50" height="12" isPrintWhenDetailOverflows="true" uuid="6793e7d0-c8ff-4e8f-8089-a17f379abd45">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
@ -1709,7 +1914,7 @@
<text><![CDATA[(3)]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="50" y="524" width="455" height="12" isPrintWhenDetailOverflows="true" uuid="fb0d56d1-721e-4324-b10b-0cc3f011b898">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="50" y="572" width="455" height="12" isPrintWhenDetailOverflows="true" uuid="fb0d56d1-721e-4324-b10b-0cc3f011b898">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
@ -1722,7 +1927,7 @@
</elementGroup>
<elementGroup>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="0" y="536" width="50" height="12" isPrintWhenDetailOverflows="true" uuid="7e59d156-7b57-4f78-9360-60f80aeb0552">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="0" y="584" width="50" height="12" isPrintWhenDetailOverflows="true" uuid="7e59d156-7b57-4f78-9360-60f80aeb0552">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
@ -1733,7 +1938,7 @@
<text><![CDATA[(4)]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="50" y="536" width="455" height="12" isPrintWhenDetailOverflows="true" uuid="a79a0b9b-c3cd-43e3-b8a7-3a3508f76170">
<reportElement positionType="Float" stretchType="ElementGroupHeight" x="50" y="584" width="455" height="12" isPrintWhenDetailOverflows="true" uuid="a79a0b9b-c3cd-43e3-b8a7-3a3508f76170">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>