Files
FE_CPONE/test/vuex/one-sample-call-so/components/oneSampleCallSOList.vue
2026-04-27 10:13:31 +07:00

293 lines
10 KiB
Vue

<template>
<v-layout class="fill-height" column>
<v-dialog v-model="dialogsuccess" persistent max-width="290">
<v-card>
<v-card-title color="success" class="headline">Berhasil !</v-card-title>
<v-card-text>
{{msgsuccess}}
</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn color="green darken-1" flat @click="closeDialogSuccess">OK</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
<v-card class="mb-2 pa-2 searchbox">
<v-layout >
<v-text-field class="xs6 ma-1"
style="font-size:14px"
label="No Lab"
outline
v-model="nolab"
hide-details
></v-text-field>
<v-text-field class="xs6 ma-1"
style="font-size:14px"
label="Nama"
outline
v-model="name"
hide-details
></v-text-field>
<v-select class="xs6 mini-select ma-1" :items="xstations"
item-text="name"
return-object
style="font-size:14px"
v-model="xselectedstation"
label="Station" outline hide-details></v-select>
<v-select class="xs6 mini-select ma-1" :items="xstatuses"
item-text="name"
style="font-size:14px"
return-object
v-model="xselectedstatus"
label="Status" outline hide-details></v-select>
<!--<v-btn class="xs3 ma-1" color="success" @click="searchPatient" >Cari</v-btn>-->
<span @click="searchPatient" class="icon-medium-fill-base xs1 white--text success iconsearch-search"></span>
</v-layout>
</v-card>
<v-card >
<v-layout row>
<v-flex xs12 pl-2 pr-2 pt-2 pb-2>
<v-data-table
:headers="headers"
:items="patients"
:loading="isLoading"
hide-actions
class="elevation-1">
<template slot="items" slot-scope="props">
<td class="text-xs-left pa-2" v-bind:class="{'amber lighten-4':isSelected(props.item),'teal accent-2':props.item.coming === 'Y'}" @click="selectMe(props.item)">{{ props.item.T_OrderHeaderLabNumber }}</td>
<td class="text-xs-left pa-2" v-bind:class="{'amber lighten-4':isSelected(props.item),'teal accent-2':props.item.coming === 'Y'}" @click="selectMe(props.item)">{{ props.item.M_PatientNoReg}}</td>
<td class="text-xs-left pa-2" v-bind:class="{'amber lighten-4':isSelected(props.item),'teal accent-2':props.item.coming === 'Y'}" @click="selectMe(props.item)">{{ props.item.patient_fullname}}</td>
<td class="text-xs-center pa-2" v-bind:class="{'amber lighten-4':isSelected(props.item),'teal accent-2':props.item.coming === 'Y'}" @click="selectMe(props.item)">{{ props.item.status}}</td>
</template>
</v-data-table>
</v-flex>
</v-layout>
</v-card>
<one-dialog-alert :status="openalertconfirmation" :msg="msgalertconfirmation" @forget-dialog-alert="forgetAlertConfirmation()" @close-dialog-alert="closeAlertConfirmation()"></one-dialog-alert>
</v-layout>
</template>
<style scoped>
.searchbox .v-input.v-text-field .v-input__slot{
min-height:60px;
}
.searchbox .v-btn {
min-height:60px;
}
table.v-table tbody td,table.v-table tbody th {
height: 40px;
}
table.v-table thead tr {
height: 40px;
}
</style>
<script>
module.exports = {
components : {
'one-dialog-info':httpVueLoader('../../common/oneDialogInfo.vue'),
'one-dialog-alert':httpVueLoader('../../common/oneDialogAlert.vue')
},
mounted() {
this.$store.dispatch("samplecall/getstationstatus",{
name:this.name,
nolab:this.nolab,
stationid: this.xselectedstation.id,
statusid: this.xselectedstatus.id,
// current_page:1,
lastid: -1
})
},
methods : {
isSelected(p) {
return p.T_OrderHeaderID == this.$store.state.samplecall.selected_patient.T_OrderHeaderID
},
searchPatient() {
this.$store.dispatch("samplecall/search",{
name:this.name,
nolab:this.nolab,
stationid: this.xselectedstation.id,
statusid: this.xselectedstatus.id,
//current_page:1,
lastid: -1
})
},
selectMe(pat) {
if(this.$store.state.samplecall.no_save == 0 ){
this.$store.commit("samplecall/update_selected_patient",pat)
//this.$store.commit("samplecall/update_sampletypes",pat.sampletypes)
this.$store.dispatch("samplecall/getsampletypes",{
orderid:pat.T_OrderHeaderID,
stationid: pat.T_SampleStationID,
statusid: pat.statusid
})
}else{
this.$store.commit("samplecall/update_open_alert_confirmation",true)
}
},
closeAlertConfirmation(){
this.$store.commit("samplecall/update_open_alert_confirmation",false)
},
forgetAlertConfirmation(){
this.$store.commit("samplecall/update_no_save",0)
this.$store.commit("samplecall/update_open_alert_confirmation",false)
},
updateAlert_success(val){
this.$store.commit("samplecall/update_alert_success",val)
},
setNewPatient(){
//this.$store.commit("samplecall/update_selected_Patient",{})
},
closeDialogSuccess(){
let arrPatient = this.$store.state.samplecall.patients
var idx = _.findIndex(arrPatient, item => item.M_PatientID === this.$store.state.samplecall.last_id)
console.log(idx)
var xcur_page = 1
// if(idx !== -1)
// xcur_page = this.$store.state.samplecall.current_page
this.$store.dispatch("samplecall/search",{
name:this.name,
nolab:this.nolab,
stationid: this.xselectedstation.id,
statusid: this.xselectedstatus.id,
// current_page:xcur_page,
lastid: idx
})
this.$store.commit("samplecall/update_dialog_success",false)
}
},
computed: {
dialogsuccess: {
get() {
return this.$store.state.samplecall.dialog_success
},
set(val) {
this.$store.commit("samplecall/update_dialog_success",val)
}
},
msgsuccess(){
return this.$store.state.samplecall.msg_success
},
snackbar: {
get() {
return this.$store.state.samplecall.alert_success
},
set(val) {
this.$store.commit("samplecall/update_alert_success",val)
}
},
isLoading() {
return this.$store.state.samplecall.search_status == 1
},
xstations() {
return this.$store.state.samplecall.stations
},
xselectedstation: {
get() {
return this.$store.state.samplecall.selected_station
},
set(val) {
this.$store.commit("samplecall/update_selected_station",val)
}
},
xstatuses() {
return this.$store.state.samplecall.statuses
},
xselectedstatus: {
get() {
return this.$store.state.samplecall.selected_status
},
set(val) {
this.$store.commit("samplecall/update_selected_status",val)
}
},
patients() {
return this.$store.state.samplecall.patients
},
openalertconfirmation: {
get() {
return this.$store.state.samplecall.open_alert_confirmation
},
set(val) {
this.$store.commit("samplecall/update_open_alert_confirmation",val)
}
},
curr_page: {
get() {
return this.$store.state.samplecall.current_page
},
set(val) {
this.$store.commit("samplecall/update_current_page",val)
this.$store.dispatch("samplecall/search",{
name:this.name,
nolab:this.nolab,
stationid: this.xselectedstation.id,
statusid: this.xselectedstatus.id,
current_page:val,
lastid: idx
})
}
},
xtotal_page: {
get() {
return this.$store.state.samplecall.total_page
},
set(val) {
this.$store.commit("samplecall/update_total_page",val)
}
},
},
data() {
return {
msgalertconfirmation:"Perubahan yang telah dilakukan belum disimpan dong !",
items: [],
name: '',
nolab:'',
page:1,
headers: [
{
text: "NO LAB",
align: "left",
sortable: false,
value: "mr",
width: "10%",
class: "pa-2 blue lighten-3 white--text"
},
{
text: "NO RM",
align: "left",
sortable: false,
value: "lab",
width: "10%",
class: "pa-2 blue lighten-3 white--text"
},
{
text: "NAMA",
align: "left",
sortable: false,
value: "name",
width: "30%",
class: "pa-2 blue lighten-3 white--text"
},
{
text: "STATUS",
align: "center",
sortable: false,
value: "status",
width: "10%",
class: "pa-2 blue lighten-3 white--text"
}
]
};
}
}
</script>