884 lines
42 KiB
Vue
884 lines
42 KiB
Vue
<template>
|
|
<v-layout v-if="xact !== 'new'" column>
|
|
<v-dialog v-model="dialogconfirmationdeletepat" persistent max-width="290">
|
|
<v-card>
|
|
<v-card-title dark class="headline error pt-2 pb-2" primary-title style="color:white">
|
|
<h4 dark>Konfirmasi</h4>
|
|
</v-card-title>
|
|
<v-card-text>
|
|
{{msgconfirmationdeletepat}}
|
|
</v-card-text>
|
|
<v-card-actions>
|
|
<v-spacer></v-spacer>
|
|
<v-btn small color="error darken-1 text-sm-left" flat @click="doDeletePat()">Hapus</v-btn>
|
|
<v-btn small color="primary darken-1 text-sm-right" flat @click="dialogconfirmationdeletepat = false">Batal</v-btn>
|
|
</v-card-actions>
|
|
</v-card>
|
|
</v-dialog>
|
|
<v-dialog v-model="dialogconfirmationsend" persistent max-width="290">
|
|
<v-card>
|
|
<v-card-title dark class="headline success pt-2 pb-2" primary-title style="color:white">
|
|
<h4 dark>Konfirmasi</h4>
|
|
</v-card-title>
|
|
<v-card-text>
|
|
{{msgconfirmationsend}}
|
|
</v-card-text>
|
|
<v-card-actions>
|
|
<v-spacer></v-spacer>
|
|
<v-btn small color="success darken-1 text-sm-left" flat @click="doOrderPatient()">Kirim</v-btn>
|
|
<v-btn small color="primary darken-1 text-sm-right" flat @click="dialogconfirmationsend = false">Batal</v-btn>
|
|
</v-card-actions>
|
|
</v-card>
|
|
</v-dialog>
|
|
<v-dialog v-model="dialogformpatient" persistent max-width="650">
|
|
<v-card>
|
|
<v-card-title>
|
|
<span class="headline">Form Pasien</span>
|
|
</v-card-title>
|
|
<v-card-text class="pt-0 pb-0">
|
|
<v-layout wrap>
|
|
<v-flex xs12>
|
|
<v-text-field v-model="xnoref" label="Nomor Referensi"></v-text-field>
|
|
</v-flex>
|
|
<v-flex xs12>
|
|
<v-text-field v-model="namapasien" label="Nama Pasien*"></v-text-field>
|
|
<p v-if="checkError('requirenamapasien')" class="error pl-2 pr-2" style="color:#fff">Nama pasien diisi dulu dong</p>
|
|
</v-flex>
|
|
<v-flex xs12>
|
|
<v-text-field v-model="xdob" label="Tanggal Lahir*" hint="format : DD-MM-YYYY , contoh : 22-06-1988"></v-text-field>
|
|
<p v-if="checkError('requirexdob')" class="error pl-2 pr-2" style="color:#fff">Tanggal lahir harus diisi dulu dong</p>
|
|
</v-flex>
|
|
<v-flex xs12>
|
|
<v-select item-text="m_sexname" return-object :items="xsexes" v-model="xsex" label="Jenis Kelamin*"></v-select>
|
|
<p v-if="checkError('requirexsex')" class="error pl-2 pr-2" style="color:#fff">Pilih jenis kelamin dulu dong</p>
|
|
</v-flex>
|
|
</v-layout>
|
|
<v-layout row>
|
|
<v-flex xs8 pa-1>
|
|
<v-autocomplete label="Pemeriksaan" v-model="xorderautotest" :items="xorderautotests" :search-input.sync="search_test" auto-select-first
|
|
no-filter item-text="T_TestName" return-object no-data-text="Cari Pemeriksaan" outline small>
|
|
<template slot="item" slot-scope="{ item }">
|
|
<v-list-tile-content>
|
|
<v-list-tile-title v-text="item.T_TestName"></v-list-tile-title>
|
|
</v-list-tile-content>
|
|
</template>
|
|
</v-autocomplete>
|
|
</v-flex>
|
|
<v-flex xs-4 class="text-md-right">
|
|
<v-btn @click="addTest()" color="blue en-3">Pilih Pemeriksaan</v-btn>
|
|
</v-flex>
|
|
</v-layout>
|
|
<v-divider></v-divider>
|
|
<v-layout row wrap>
|
|
<v-flex xs12 pt-2 pb-1>
|
|
<table style="
|
|
font-family: arial, sans-serif;
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
border: 0px;
|
|
" class="px">
|
|
<tr>
|
|
<td style="border: 1px solid #fff;
|
|
border-collapse: collapse;
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;" width="5%" class="text-md-center pt-2 pb-2">#
|
|
</td>
|
|
<td style="border: 1px solid #fff;
|
|
border-collapse: collapse;
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;" class="text-md-center pt-2 pb-2">PEMERIKSAAN
|
|
</td>
|
|
<td style="border: 1px solid #fff;
|
|
border-collapse: collapse;
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;" class="text-md-center pt-2 pb-2">BRUTO
|
|
</td>
|
|
<td style="border: 1px solid #fff;
|
|
border-collapse: collapse;
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;" class="text-md-center pt-2 pb-2">DISKON
|
|
</td>
|
|
<td style=" border: 1px solid #fff;
|
|
border-collapse: collapse;
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;" class="text-md-center pt-2 pb-2">DISKON RP
|
|
</td>
|
|
<td style="border: 1px solid #fff;
|
|
border-collapse: collapse;
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;" class="text-md-center pt-2 pb-2">TOTAL
|
|
</td>
|
|
</tr>
|
|
<tr v-if="xordertests.length > 0" class="mini-input" v-for="(vpx,idx) in xordertests">
|
|
<td style="border: 1px solid #fff;
|
|
border-collapse: collapse;
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;
|
|
padding: 8px;
|
|
text-align:center;
|
|
vertical-align:center;" align="center">
|
|
<span v-if="vpx.editable == 'N'">{{idx + 1}}</span>
|
|
<v-icon v-else-if="vpx.editable == 'Y'" color="#c75c3a" @click="deleteDataPx(idx)">delete</v-icon>
|
|
</td>
|
|
<td style="border: 1px solid #fff;
|
|
border-collapse: collapse;
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;
|
|
padding: 8px;" class="text-md-left pl-3">{{vpx.T_TestName}}</td>
|
|
<td style="border: 1px solid #fff;
|
|
border-collapse: collapse;
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;
|
|
padding: 8px;" class="text-md-right pr-2">{{convertMoney(vpx.T_PriceAmount)}}</td>
|
|
<td style="border: 1px solid #fff;
|
|
border-collapse: collapse;
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;
|
|
padding: 8px;" class="text-md-right pr-2">{{convertMoney(vpx.T_PriceDisc)}}</td>
|
|
<td style="border: 1px solid #fff;
|
|
border-collapse: collapse;
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;
|
|
padding: 8px;" class="text-md-right pr-2">{{convertMoney(vpx.T_PriceDiscRp)}}</td>
|
|
<td style="border: 1px solid #fff;
|
|
border-collapse: collapse;
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;
|
|
padding: 8px;" class="text-md-right pr-2">{{convertMoney(vpx.total)}}</td>
|
|
</tr>
|
|
<tr v-if="xordertests.length === 0" class="mini-input">
|
|
<td style="border: 1px solid #fff;
|
|
border-collapse: collapse;
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;
|
|
padding: 8px;" align="center" colspan="6">Belum ada data</td>
|
|
</tr>
|
|
<tfoot>
|
|
<tr>
|
|
<th colspan="4" class="text-md-right pr-2 pt-2 pb-2">TOTAL</th>
|
|
<th class="text-md-right pr-2 pt-2 pb-2" colspan="2">{{convertMoney(sub_total)}}</th>
|
|
</tr>
|
|
<tr>
|
|
<th v-if="isbill === 'Y'" colspan="4" class="text-md-right pr-2 pt-2 pb-2">UANG MUKA</th>
|
|
<th v-if="isbill === 'Y'" class="text-md-right pr-2 pt-2 pb-2" colspan="2">{{convertMoney(dp)}}</th>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</v-flex>
|
|
</v-layout>
|
|
</v-card-text>
|
|
<v-card-actions>
|
|
<v-spacer></v-spacer>
|
|
<v-btn color="blue darken-1" flat @click="dialogformpatient = false">Tutup</v-btn>
|
|
<v-btn v-if="xactpat === 'new'" color="blue darken-1" flat @click="saveNewPatient()">Simpan</v-btn>
|
|
<v-btn v-if="xactpat === 'edit'" color="blue darken-1" flat @click="saveEditPatient()">Simpan</v-btn>
|
|
</v-card-actions>
|
|
</v-card>
|
|
</v-dialog>
|
|
<v-card>
|
|
<v-layout row>
|
|
<v-flex xs12>
|
|
<v-subheader red--text text--lighten-1> DAFTAR PASIEN
|
|
|
|
</v-subheader>
|
|
<v-divider></v-divider>
|
|
|
|
<v-layout>
|
|
<v-flex xs12>
|
|
<v-card class="mb-2" color="white">
|
|
<v-layout row wrap>
|
|
<v-flex class="border-bottom-dashed" xs12 pt-2 pl-4 pr-4 pb-4>
|
|
<div class="rTable">
|
|
<div class="rTableHeading">
|
|
<div style="width:27%" class="rTableHead">NAMA</div>
|
|
<div style="width:15%" class="rTableHead">NO LAB</div>
|
|
<div style="width:12%" class="rTableHead">NO REF</div>
|
|
<div style="width:15%" class="rTableHead">TGL. LAHIR</div>
|
|
<div style="width:10%" class="rTableHead">TOTAL</div>
|
|
<div class="rTableHead">AKSI</div>
|
|
</div>
|
|
</div>
|
|
<div v-if="xpatients.length === 0" class="rTable pt-2">
|
|
<div class="rTableRow">
|
|
<div style="width:100%;text-align:center" class="rTableCell">Belum ada data</div>
|
|
</div>
|
|
</div>
|
|
<div v-if="xpatients.length > 0" v-for="(vo,idx) in xpatients" :key="vo.T_ReceiveReferencePatientID">
|
|
<div class="rTable">
|
|
<div class="rTableGroup">
|
|
<div class="rTableRow">
|
|
<div style="width:27%" class="rTableCell rfirstCell">{{vo.pasienname}}</div>
|
|
<div style="width:15%" class="rTableCell">{{vo.T_OrderHeaderLabNumber}}</div>
|
|
<div style="width:12%" class="rTableCell">{{vo.T_ReceiveReferencePatientNoRef}}</div>
|
|
<div style="width:15%" class="rTableCell">{{vo.T_ReceiveReferencePatientDOB}}</div>
|
|
<div style="width:10%" class="rTableCell">{{vo.T_ReceiveReferencePatientTotal}}</div>
|
|
<div class="rTableCell">
|
|
|
|
<v-btn small @click="printNote(vo,idx)" color="primary" dark>
|
|
Print
|
|
</v-btn>
|
|
<v-icon style="cursor:pointer;padding-top:12px;float:right" class="text-sm-right" @click="showDetail(idx)" color="blue darken-2">more_vert</v-icon>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<transition name="fade">
|
|
<div v-if="vo.show_detail === 'Y'" style="width:100%;border:1px solid black" class="caption">
|
|
<v-layout row>
|
|
<table>
|
|
<tr>
|
|
<th class="text-md-center pt-2 pb-2"> NO. </th>
|
|
<th class="text-md-center pt-2 pb-2">PEMERIKSAAN</th>
|
|
<th class="text-md-center pt-2 pb-2">HASIL</th>
|
|
<th class="text-md-center pt-2 pb-2">NILAI NORMAL</th>
|
|
<th class="text-md-center pt-2 pb-2">SATUAN</th>
|
|
<th class="text-md-center pt-2 pb-2">METODE</th>
|
|
|
|
</tr>
|
|
<tr v-for="(vt,tidx) in vo.tests" :key="vt.T_ReceiveReferenceTestID">
|
|
<td class="text-md-center"> {{tidx+1}} </td>
|
|
<td class="text-md-left pl-3">{{vt.T_ReceiveReferenceTestT_TestName}}</td>
|
|
<td class="text-md-right pr-2">{{vt.T_OrderDetailResult}}</td>
|
|
<td class="text-md-right pr-2"></td>
|
|
<td class="text-md-right pr-2"></td>
|
|
<td class="text-md-right pr-2"></td>
|
|
|
|
</tr>
|
|
|
|
<!--<tfoot>
|
|
<tr>
|
|
<th style="background:#03a9f43d" colspan="3" class="text-md-right pr-2 pt-1 pb-1">SUB TOTAL</th>
|
|
<th style="background:#03a9f43d" class="text-md-right pr-2 pt-2 pb-2" colspan="2">300.000</th>
|
|
|
|
</tr>
|
|
<tr>
|
|
<th colspan="3" class="text-md-right pr-2 pt-1 pb-1">DISKON PEMBULATAN</th>
|
|
<th class="text-md-right pr-2 pt-1 pb-1" colspan="2">0</th>
|
|
|
|
</tr>
|
|
<tr>
|
|
<th style="background:#03a9f43d" colspan="3" class="text-md-right pr-2 pt-2 pb-2">TOTAL</th>
|
|
<th style="background:#03a9f43d" class="text-md-right pr-2 pt-1 pb-1" colspan="2">300.000</th>
|
|
|
|
</tr>
|
|
</tfoot>-->
|
|
</table>
|
|
</v-layout>
|
|
</div>
|
|
</transition>
|
|
</div>
|
|
</div>
|
|
|
|
</v-flex>
|
|
</v-layout>
|
|
</v-card>
|
|
</v-flex>
|
|
</v-layout>
|
|
|
|
<v-layout row wrap>
|
|
<!-- <v-flex xs12 pa-2>
|
|
Keterangan :
|
|
<v-btn @click="" small color="grey"></v-btn> Baru
|
|
<v-btn @click="" small color="yellow"></v-btn> Proses
|
|
<v-btn @click="" small color="green"></v-btn> Selesai
|
|
</v-flex>
|
|
-->
|
|
</v-layout>
|
|
|
|
</v-flex>
|
|
</v-flex>
|
|
</v-card>
|
|
<one-dialog-print :title="printtitle" :width="printwidth" :height="500" :status="openprintnote" :urlprint="urlprintnote"
|
|
@close-dialog-print="openprintnote = false"></one-dialog-print>
|
|
</v-layout>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.fade-enter-active,
|
|
.fade-leave-active {
|
|
transition: opacity .5s;
|
|
}
|
|
|
|
.fade-enter,
|
|
.fade-leave-to {
|
|
opacity: 0;
|
|
}
|
|
|
|
.bounce-enter-active {
|
|
animation: bounce-in .5s;
|
|
}
|
|
|
|
.bounce-leave-active {
|
|
animation: bounce-in .5s reverse;
|
|
}
|
|
|
|
@keyframes bounce-in {
|
|
0% {
|
|
transform: scale(0);
|
|
}
|
|
25% {
|
|
transform: scale(.50);
|
|
}
|
|
50% {
|
|
transform: scale(.75);
|
|
}
|
|
75% {
|
|
transform: scale(1.1);
|
|
}
|
|
100% {
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
.rTable {
|
|
display: table;
|
|
width: 100%;
|
|
border-spacing: 0 .2em;
|
|
}
|
|
|
|
.rTableGroup {
|
|
display: table-row-group;
|
|
}
|
|
|
|
.rTableRow {
|
|
display: table-row;
|
|
font-size: 14px;
|
|
-webkit-flex-wrap: wrap; /* Safari 6.1+ */
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
.rTableHeading {
|
|
display: table-header-group;
|
|
background-color: #fffff;
|
|
}
|
|
|
|
.rTableCell {
|
|
display: table-cell;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
line-height: 2;
|
|
border: 1px solid #2196f3;
|
|
background-color: #fffff;
|
|
border-spacing: 5px;
|
|
}
|
|
|
|
.rTableHead {
|
|
display: table-cell;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
padding-top: 10px;
|
|
padding-bottom: 0px;
|
|
background-color: #fffff;
|
|
}
|
|
|
|
.rTableHeading {
|
|
display: table-header-group;
|
|
text-transform: uppercase;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.rTableFoot {
|
|
display: table-footer-group;
|
|
font-weight: bold;
|
|
background-color: #ddd;
|
|
}
|
|
|
|
.rTableBody {
|
|
display: table-row-group;
|
|
}
|
|
|
|
.rfirstCell {
|
|
border-left: 10px solid #2196f3;
|
|
border-top-left-radius: 3px;
|
|
border-bottom-left-radius: 3px;
|
|
}
|
|
|
|
.caption {
|
|
border: 1px solid grey;
|
|
caption-side: bottom;
|
|
display: table-caption;
|
|
text-align: center;
|
|
padding: 5px
|
|
}
|
|
|
|
.mini-input .v-input {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.mini-input .v-input,
|
|
.mini-input .v-input--selection-controls,
|
|
.mini-input .v-input__slot {
|
|
margin-top: 0px;
|
|
margin-bottom: 0px;
|
|
margin-left: 3px;
|
|
}
|
|
|
|
.mini-input .v-messages {
|
|
min-height: 0px;
|
|
}
|
|
|
|
.text-fajrihm {
|
|
padding: 3px 20px 3px 0;
|
|
text-align: left;
|
|
font-size: 13px;
|
|
font-family: open sans, tahoma, sans-serif;
|
|
}
|
|
|
|
.label-delivery {
|
|
font-size: 11px;
|
|
padding: 3px 10px 3px 0;
|
|
font-family: open sans, tahoma, sans-serif;
|
|
}
|
|
|
|
.text-delivery {
|
|
font-size: 12px;
|
|
padding: 3px 10px 3px 0;
|
|
font-family: open sans, tahoma, sans-serif;
|
|
}
|
|
|
|
.nota {
|
|
font-size: 2em;
|
|
font-weight: bold;
|
|
text-align: left;
|
|
}
|
|
|
|
.total {
|
|
min-height: 76px;
|
|
}
|
|
|
|
table {
|
|
font-family: arial, sans-serif;
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
background: white;
|
|
border: 0px;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
border: 1px solid black;
|
|
border-collapse: collapse;
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;
|
|
}
|
|
|
|
table>tr>td {
|
|
padding: 8px;
|
|
}
|
|
|
|
table>tr>td:first {
|
|
padding-left: 15px !important;
|
|
}
|
|
|
|
.mini-input .v-input {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.mini-input .v-input,
|
|
.mini-input .v-input--selection-controls,
|
|
.mini-input .v-input__slot {
|
|
margin-top: 0px;
|
|
margin-bottom: 0px;
|
|
margin-left: 3px;
|
|
}
|
|
|
|
.mini-input .v-messages {
|
|
min-height: 0px;
|
|
}
|
|
|
|
.border-bottom-dashed {
|
|
border-bottom: 1px dashed rgba(0, 0, 0, .12);
|
|
}
|
|
|
|
.v-breadcrumbs__item {
|
|
color: #fff !important;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
module.exports = {
|
|
components: {
|
|
'one-dialog-print': httpVueLoader('../../common/oneDialogPrintX.vue')
|
|
},
|
|
data: () => ({
|
|
oldlabel: '',
|
|
search_test: '',
|
|
dialog: false,
|
|
urlprintnote: '',
|
|
printtitle: '',
|
|
printwidth: 600,
|
|
headers: [
|
|
|
|
{
|
|
text: "NAMA",
|
|
align: "left",
|
|
sortable: false,
|
|
value: "mr",
|
|
width: "15%",
|
|
class: "pa-1 blue lighten-3 white--text"
|
|
},
|
|
{
|
|
text: "NO. REFERENSI",
|
|
align: "left",
|
|
sortable: false,
|
|
value: "lab",
|
|
width: "3%",
|
|
class: "pa-1 blue lighten-3 white--text"
|
|
},
|
|
{
|
|
text: "TGL. LAHIR",
|
|
align: "left",
|
|
sortable: false,
|
|
value: "lab",
|
|
width: "10%",
|
|
class: "pa-1 blue lighten-3 white--text"
|
|
},
|
|
{
|
|
text: "PEMERIKSAAN",
|
|
align: "left",
|
|
sortable: false,
|
|
value: "lab",
|
|
width: "10%",
|
|
class: "pa-1 blue lighten-3 white--text"
|
|
},
|
|
{
|
|
text: "TOTAL",
|
|
align: "left",
|
|
sortable: false,
|
|
value: "lab",
|
|
width: "15%",
|
|
class: "pa-1 blue lighten-3 white--text"
|
|
},
|
|
{
|
|
text: "AKSI",
|
|
align: "center",
|
|
sortable: false,
|
|
value: "action",
|
|
width: "10%",
|
|
class: "pa-1 blue lighten-3 white--text"
|
|
}
|
|
]
|
|
}),
|
|
computed: {
|
|
dialogconfirmationdeletepat: {
|
|
get() {
|
|
return this.$store.state.receivereferenceresult.dialog_confirmation_delete_pat
|
|
},
|
|
set(val) {
|
|
this.$store.commit("receivereferenceresult/update_dialog_confirmation_delete_pat", val)
|
|
}
|
|
},
|
|
msgconfirmationdeletepat() {
|
|
return this.$store.state.receivereferenceresult.msg_confirmation_delete_pat
|
|
},
|
|
dialogconfirmationsend: {
|
|
get() {
|
|
return this.$store.state.receivereferenceresult.dialog_confirmation_send
|
|
},
|
|
set(val) {
|
|
this.$store.commit("receivereferenceresult/update_dialog_confirmation_send", val)
|
|
}
|
|
},
|
|
msgconfirmationsend() {
|
|
return this.$store.state.receivereferenceresult.msg_confirmation_send
|
|
},
|
|
xact() {
|
|
return this.$store.state.receivereferenceresult.act
|
|
},
|
|
xactpat() {
|
|
return this.$store.state.receivereferenceresult.act_pat
|
|
},
|
|
xactsend() {
|
|
return this.$store.state.receivereferenceresult.act_send
|
|
},
|
|
|
|
dialogformpatient: {
|
|
get() {
|
|
return this.$store.state.receivereferenceresult.dialog_form_patient
|
|
},
|
|
set(val) {
|
|
this.$store.commit("receivereferenceresult/update_dialog_form_patient", val)
|
|
}
|
|
},
|
|
isLoading() {
|
|
return this.$store.state.receivereferenceresult.search_status == 1
|
|
},
|
|
xpatients(p) {
|
|
return this.$store.state.receivereferenceresult.patients
|
|
},
|
|
xnoref: {
|
|
get() {
|
|
return this.$store.state.receivereferenceresult.noref
|
|
},
|
|
set(val) {
|
|
this.$store.commit("receivereferenceresult/update_noref", val)
|
|
}
|
|
},
|
|
namapasien: {
|
|
get() {
|
|
return this.$store.state.receivereferenceresult.namapasien
|
|
},
|
|
set(val) {
|
|
this.$store.commit("receivereferenceresult/update_nama_pasien", val)
|
|
}
|
|
},
|
|
xdob: {
|
|
get() {
|
|
return this.$store.state.receivereferenceresult.dob
|
|
},
|
|
set(val) {
|
|
this.$store.commit("receivereferenceresult/update_dob", val)
|
|
}
|
|
},
|
|
xsexes() {
|
|
return this.$store.state.receivereferenceresult.sexes
|
|
},
|
|
xsex: {
|
|
get() {
|
|
return this.$store.state.receivereferenceresult.selected_sex
|
|
},
|
|
set(val) {
|
|
this.$store.commit("receivereferenceresult/update_selected_sex", val)
|
|
}
|
|
},
|
|
xorderautotests() {
|
|
return this.$store.state.receivereferenceresult.orderautotests
|
|
},
|
|
xorderautotest: {
|
|
get() {
|
|
return this.$store.state.receivereferenceresult.orderautotest
|
|
},
|
|
set(val) {
|
|
this.$store.commit("receivereferenceresult/update_orderautotest", val)
|
|
}
|
|
},
|
|
xordertests() {
|
|
return this.$store.state.receivereferenceresult.ordertests
|
|
},
|
|
sub_total() {
|
|
let tests = this.xordertests
|
|
sub_total = 0
|
|
tests.forEach(function (vpx, idx) {
|
|
let total = parseInt(vpx.total)
|
|
sub_total = sub_total + total
|
|
})
|
|
return sub_total
|
|
},
|
|
dp() {
|
|
let mindp = this.$store.state.receivereferenceresult.selected_receivereferenceresult.M_CompanyMinDP
|
|
let dp = mindp / 100 * this.sub_total
|
|
return dp
|
|
},
|
|
isbill() {
|
|
let isbill = this.$store.state.receivereferenceresult.selected_receivereferenceresult.M_CompanyIsBill
|
|
return isbill
|
|
},
|
|
openprintnote: {
|
|
get() {
|
|
return this.$store.state.receivereferenceresult.open_print_note
|
|
},
|
|
set(val) {
|
|
this.$store.commit("receivereferenceresult/update_open_print_note",false)
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
createNewPatient() {
|
|
this.$store.commit("receivereferenceresult/update_act_pat", 'new')
|
|
this.xnoref = ''
|
|
this.namapasien = ''
|
|
this.$store.commit("receivereferenceresult/update_selected_sex", [])
|
|
this.xdob = ''
|
|
this.$store.commit("receivereferenceresult/update_ordertests", [])
|
|
this.$store.commit("receivereferenceresult/update_dialog_form_patient", true)
|
|
},
|
|
checkError(value) {
|
|
var errors = this.$store.state.receivereferenceresult.errors
|
|
if (errors.includes(value)) {
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
},
|
|
printNote(val,idx){
|
|
this.printwidth = 600
|
|
this.printtitle = ""
|
|
let user = one_user()
|
|
var rpt = 'rpt_t_003'
|
|
if(val.note_amount < 0)
|
|
rpt = 'rpt_t_004'
|
|
this.urlprintnote = "/birt/run?__report=report/one/fo/"+rpt+".rptdesign&__format=pdf&username="+user.M_UserUsername+"&PID="+val.note_id
|
|
this.$store.commit("receivereferenceresult/update_open_print_note",true)
|
|
},
|
|
saveNewPatient() {
|
|
this.$store.commit("receivereferenceresult/update_errors", [])
|
|
var errors = this.$store.state.receivereferenceresult.errors
|
|
if (this.namapasien === '') {
|
|
errors.push("requirenamapasien")
|
|
}
|
|
if (this.xdob === '') {
|
|
errors.push("requirexdob")
|
|
}
|
|
if (_.isEmpty(this.xsex)) {
|
|
errors.push("requirexsex")
|
|
}
|
|
if (errors.length === 0) {
|
|
var prm = {}
|
|
prm.T_ReceiveReferencePatientT_ReceiveReferenceHeaderID = this.$store.state.receivereferenceresult
|
|
.selected_receivereferenceresult
|
|
.T_ReceiveReferenceHeaderID
|
|
prm.M_CompanyName = this.$store.state.receivereferenceresult.selected_receivereferenceresult.M_CompanyName
|
|
prm.T_ReceiveReferencePatientNoRef = this.xnoref
|
|
prm.T_ReceiveReferencePatientName = this.namapasien
|
|
prm.T_ReceiveReferencePatientDOB = this.xdob
|
|
prm.T_ReceiveReferencePatientM_SexID = this.$store.state.receivereferenceresult.selected_sex.M_SexID
|
|
prm.ordertests = this.xordertests
|
|
prm.T_ReceiveReferencePatientTotal = this.sub_total
|
|
prm.T_ReceiveReferencePatientDPPercent = this.$store.state.receivereferenceresult.selected_receivereferenceresult
|
|
.M_CompanyMinDP
|
|
prm.T_ReceiveReferencePatientDPAmount = this.dp
|
|
this.$store.dispatch("receivereferenceresult/savenewpatient", prm)
|
|
}
|
|
},
|
|
showDetailold(value) {
|
|
var arrOrders = this.$store.state.receivereferenceresult.ordertests
|
|
arrOrders[value].show_detail = arrOrders[value].show_detail === 'Y' ? 'N' : 'Y'
|
|
|
|
this.$store.commit("receivereferenceresult/update_act_pat", 'edit')
|
|
this.$store.commit("receivereferenceresult/update_x_pat_id", value.T_ReceiveReferencePatientID)
|
|
this.$store.commit("receivereferenceresult/update_ordertests", value.tests)
|
|
},
|
|
showDetail(idx) {
|
|
var arrOrders = this.$store.state.receivereferenceresult.patients
|
|
arrOrders[idx].show_detail = arrOrders[idx].show_detail === 'Y' ? 'N' : 'Y'
|
|
this.$store.commit("receivereferenceresult/update_ordertests", arrOrders)
|
|
},
|
|
editPatient(value) {
|
|
this.$store.commit("receivereferenceresult/update_act_pat", 'edit')
|
|
this.$store.commit("receivereferenceresult/update_x_pat_id", value.T_ReceiveReferencePatientID)
|
|
this.xnoref = value.T_ReceiveReferencePatientNoRef
|
|
this.namapasien = value.T_ReceiveReferencePatientName
|
|
this.$store.commit("receivereferenceresult/update_selected_sex", {
|
|
M_SexID: value.T_ReceiveReferencePatientM_SexID,
|
|
m_sexname: value.M_SexName
|
|
})
|
|
this.xdob = value.T_ReceiveReferencePatientDOB
|
|
this.$store.commit("receivereferenceresult/update_ordertests", value.tests)
|
|
this.$store.commit("receivereferenceresult/update_dialog_form_patient", true)
|
|
},
|
|
saveEditPatient() {
|
|
this.$store.commit("receivereferenceresult/update_errors", [])
|
|
var errors = this.$store.state.receivereferenceresult.errors
|
|
if (this.namapasien === '') {
|
|
errors.push("requirenamapasien")
|
|
}
|
|
if (this.xdob === '') {
|
|
errors.push("requirexdob")
|
|
}
|
|
if (_.isEmpty(this.xsex)) {
|
|
errors.push("requirexsex")
|
|
}
|
|
if (errors.length === 0) {
|
|
var prm = {}
|
|
prm.T_ReceiveReferencePatientID = this.$store.state.receivereferenceresult.x_pat_id
|
|
prm.T_ReceiveReferencePatientT_ReceiveReferenceHeaderID = this.$store.state.receivereferenceresult
|
|
.selected_receivereferenceresult
|
|
.T_ReceiveReferenceHeaderID
|
|
prm.M_CompanyName = this.$store.state.receivereferenceresult.selected_receivereferenceresult.M_CompanyName
|
|
prm.T_ReceiveReferencePatientNoRef = this.xnoref
|
|
prm.T_ReceiveReferencePatientName = this.namapasien
|
|
prm.T_ReceiveReferencePatientDOB = this.xdob
|
|
prm.T_ReceiveReferencePatientM_SexID = this.$store.state.receivereferenceresult.selected_sex.M_SexID
|
|
prm.ordertests = this.xordertests
|
|
prm.T_ReceiveReferencePatientTotal = this.sub_total
|
|
prm.T_ReceiveReferencePatientDPPercent = this.$store.state.receivereferenceresult.selected_receivereferenceresult
|
|
.M_CompanyMinDP
|
|
prm.T_ReceiveReferencePatientDPAmount = this.dp
|
|
prm.deleted_ordertests = this.$store.state.receivereferenceresult.deleted_ordertests
|
|
this.$store.dispatch("receivereferenceresult/saveeditpatient", prm)
|
|
}
|
|
},
|
|
thr_search_test: _.debounce(function () {
|
|
this.$store.dispatch("receivereferenceresult/searchtest", {
|
|
tes: this.search_test,
|
|
mouid: this.$store.state.receivereferenceresult.selected_receivereferenceresult
|
|
.T_ReceiveReferenceHeaderM_MouID
|
|
})
|
|
}, 2000),
|
|
deletePatient(value) {
|
|
this.$store.commit("receivereferenceresult/update_act_pat", 'delete')
|
|
this.$store.commit("receivereferenceresult/update_x_pat_id", value.T_ReceiveReferencePatientID)
|
|
this.$store.commit("receivereferenceresult/update_errors", [])
|
|
var errors = this.$store.state.receivereferenceresult.errors
|
|
var msg = ''
|
|
msg = "Yakin, akan menghapus data pasien " + value.T_ReceiveReferencePatientName + " ?"
|
|
this.$store.commit("receivereferenceresult/update_msg_confirmation_delete_pat", msg)
|
|
this.$store.commit("receivereferenceresult/update_dialog_confirmation_delete_pat", true)
|
|
},
|
|
doDeletePat() {
|
|
var prm = {}
|
|
prm.T_ReceiveReferencePatientT_ReceiveReferenceHeaderID = this.$store.state.receivereferenceresult.selected_receivereferenceresult
|
|
.T_ReceiveReferenceHeaderID
|
|
prm.T_ReceiveReferencePatientID = this.$store.state.receivereferenceresult.x_pat_id
|
|
prm.T_ReceiveReferencePatientName = this.namapasien
|
|
prm.M_CompanyName = this.$store.state.receivereferenceresult.selected_receivereferenceresult.M_CompanyName
|
|
this.$store.dispatch("receivereferenceresult/deletepatient", prm)
|
|
},
|
|
sendOrderPatient(value) {
|
|
let msg = "Yakin, akan mengirim permintaan nomor " + this.$store.state.receivereferenceresult.selected_receivereferenceresult
|
|
.T_ReceiveReferenceHeaderNumber + " ?"
|
|
this.$store.commit("receivereferenceresult/update_msg_confirmation_send", msg)
|
|
this.$store.commit("receivereferenceresult/update_dialog_confirmation_send", true)
|
|
},
|
|
doOrderPatient() {
|
|
var prm = {}
|
|
prm.T_ReceiveReferenceHeaderID = this.$store.state.receivereferenceresult.selected_receivereferenceresult
|
|
.T_ReceiveReferenceHeaderID
|
|
prm.T_ReceiveReferenceHeaderNumber = this.$store.state.receivereferenceresult.selected_receivereferenceresult
|
|
.T_ReceiveReferenceHeaderNumber
|
|
this.$store.dispatch("receivereferenceresult/sendorder", prm)
|
|
},
|
|
convertMoney(money) {
|
|
return one_money(money)
|
|
},
|
|
addTest() {
|
|
var oldArr = this.$store.state.receivereferenceresult.ordertests
|
|
oldArr.push(this.$store.state.receivereferenceresult.orderautotest)
|
|
this.searchtest = ''
|
|
this.$store.commit("receivereferenceresult/update_orderautotests", [])
|
|
this.$store.commit("receivereferenceresult/update_orderautotest", {})
|
|
},
|
|
deleteDataPx(idx) {
|
|
var inx = parseInt(idx);
|
|
var xrow = this.$store.state.receivereferenceresult.ordertests[inx]
|
|
if (parseInt(xrow.xid) !== 0) {
|
|
var xdeltest = this.$store.state.receivereferenceresult.deleted_ordertests
|
|
xdeltest.push(xrow)
|
|
this.$store.commit("receivereferenceresult/update_deleted_ordertests", xdeltest)
|
|
}
|
|
var oldArr = this.$store.state.receivereferenceresult.ordertests
|
|
oldArr.splice(inx, 1)
|
|
this.$store.commit("receivereferenceresult/update_ordertests", oldArr)
|
|
},
|
|
},
|
|
watch: {
|
|
search_city(val, old) {
|
|
if (val == old) return
|
|
if (!val) return
|
|
if (val.length < 1) return
|
|
if (this.$store.state.receivereferenceresult.update_autocomplete_status == 1) return
|
|
this.thr_search_city()
|
|
},
|
|
search_test(val, old) {
|
|
if (val == old) return
|
|
if (!val) return
|
|
if (val.length < 1) return
|
|
if (this.$store.state.receivereferenceresult.update_autocomplete_status == 1) return
|
|
this.thr_search_test()
|
|
}
|
|
}
|
|
}
|
|
</script> |