Update Aplikasi Remunerasi
Perbaikan format numbering indonesia di menu skoring tindakan medis dan monitoring target skor dokter
This commit is contained in:
parent
7003b6e81b
commit
c17c229e57
@ -203,7 +203,7 @@ public class SkoringTindakanMedisServiceImpl extends BaseVoServiceImpl implement
|
||||
@Override
|
||||
public List<Map<String, Object>> findAllEnabled(List<Integer> listIdKelompokKerja, String namaProduk,
|
||||
String detailProduk, Boolean statusVerifikasi) throws JpaSystemException {
|
||||
NumberFormat nf = NumberFormat.getInstance();
|
||||
NumberFormat nf = NumberFormat.getInstance(new Locale("in", "ID"));
|
||||
|
||||
List<Map<String, Object>> result = new ArrayList<>();
|
||||
List<Map<String, Object>> data = new ArrayList<>();
|
||||
|
||||
@ -7,6 +7,7 @@ import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import java.util.Locale;
|
||||
import java.util.Map;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
@ -212,7 +213,7 @@ public class TargetSkorDokterServiceImpl extends BaseVoServiceImpl implements Ta
|
||||
public List<Map<String, Object>> findAll(Long tahun) throws JpaSystemException {
|
||||
DateFormat tf = new SimpleDateFormat("yyyy");
|
||||
|
||||
NumberFormat nf = NumberFormat.getInstance();
|
||||
NumberFormat nf = NumberFormat.getInstance(new Locale("in", "ID"));
|
||||
nf.setMinimumFractionDigits(2);
|
||||
|
||||
List<Map<String, Object>> result = targetSkorDao.findAll(tf.format(new Date(tahun)));
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user