Flatten nested repos

This commit is contained in:
sas.fajri
2026-04-27 10:13:31 +07:00
parent 01c2963a43
commit 8347aef8f4
17935 changed files with 5015229 additions and 3 deletions

View File

@@ -0,0 +1,119 @@
<template>
<v-layout class="mb-2 mt-2" column >
<v-card v-if="xsampletypes.length > 0">
<v-layout row>
<v-flex xs12>
<v-subheader>
<span class="font-weight-black">LEGENDA : </span>
<v-btn depressed color="warning"><v-icon left>alarm</v-icon> Waktu Proses </v-btn>
<v-btn depressed color="success"><v-icon left>alarm</v-icon> Waktu Selesai </v-btn>
<v-flex text-md-right>
<span @click="printBarcodeGroup()" style="font-size:24px" class="icon-medium-fill-base-small xs1 white--text brown icon-barcode"></span>
</v-flex>
</v-subheader>
<v-divider></v-divider>
<v-layout pa-2 row wrap>
<v-flex xs5 v-for="sampletype in xsampletypes" mb-2 mr-3>
<v-layout>
<v-flex xs12>
<v-card style="border:1px solid black" flat class="text">
<v-layout pa-1>
<v-flex md4>
<v-img
src= "/one-ui/libs/image/body.jpg"
height="125px"
contain
></v-img>
</v-flex>
<v-flex md8>
<v-card-title style="padding-top:0;padding-left:2px">
<div>
<div style="font-size:large" class="font-weight-light font-condensed pl-2">{{sampletype.T_SampleTypeName}}</div>
<v-btn depressed v-if="sampletype.status === 'N'" color="warning"><v-icon left>alarm</v-icon>00-00-0000 00:00</v-btn>
<v-btn depressed v-if="sampletype.status === 'N'" color="success"><v-icon left>alarm</v-icon>00-00-0000 00:00</v-btn>
<v-btn depressed v-if="sampletype.status === 'P'" color="warning"><v-icon left>alarm</v-icon>{{sampletype.process_date}} {{sampletype.process_time}}</v-btn>
<v-btn depressed v-if="sampletype.status === 'P'" color="success"><v-icon left>alarm</v-icon>00-00-0000 00:00</v-btn>
<v-btn depressed v-if="sampletype.status === 'D' || sampletype.status === 'V'" color="warning"><v-icon left>alarm</v-icon>{{sampletype.process_date}} {{sampletype.process_time}}</v-btn>
<v-btn depressed v-if="sampletype.status === 'D' || sampletype.status === 'V'" color="success"><v-icon left>alarm</v-icon>{{sampletype.done_date}} {{sampletype.done_time}}</v-btn>
</div>
</v-card-title>
</v-flex>
</v-layout>
<v-divider></v-divider>
<v-card-actions class="pt-2 pb-2 pl-3 pr-3">
<v-btn v-if="selected_patient.statusid === 0 || selected_patient.statusid === '0' || selected_patient.statusid === 2 || selected_patient.statusid === '2'" depressed disabled block color="grey">Proses Sekarang</v-btn>
<v-flex v-if="selected_patient.statusid === '3'" xs10>
<v-btn @click="processSample(sampletype)" v-if="selected_patient.statusid === '3' && sampletype.status === 'N'" block color="warning">Proses Sekarang</v-btn>
<v-btn @click="doneSample(sampletype)" v-if="selected_patient.statusid === '3' && sampletype.status === 'P'" block color="success">Selesai</v-btn>
</v-flex>
<v-flex v-if="selected_patient.statusid === '5'" xs10>
<v-btn depressed disabled block color="grey">Selesai</v-btn>
</v-flex>
<v-flex xs2 v-if="selected_patient.statusid === '3' || selected_patient.statusid === '4' || selected_patient.statusid === '5'">
<span @click="printBarcode(sampletype)" style="font-size:24px" class="icon-medium-fill-base-small xs1 white--text brown icon-barcode"></span>
</v-flex>
</v-card-actions>
</v-card>
</v-flex>
</v-layout>
</v-flex>
</v-layout>
</v-flex>
</v-layout>
</v-card>
</v-layout>
</template>
<style scoped>
</style>
<script>
module.exports = {
data: () => ({
}),
computed: {
xsampletypes(){
return this.$store.state.samplecall.sampletypes
},
xstatus(){
return this.$store.state.samplecall.selected_status
},
selected_patient(){
return this.$store.state.samplecall.selected_patient
},
},
methods : {
processSample(sampletype){
var patient = this.$store.state.samplecall.selected_patient
var msg = "Anda yakin akan melakukan proses untuk "+sampletype.T_SampleTypeName+" dari "+patient.patient_fullname+" ? "
this.$store.commit("samplecall/update_msg_action",msg)
this.$store.commit("samplecall/update_act",'samplingprocess')
this.$store.commit("samplecall/update_selected_sampletype",sampletype)
this.$store.commit("samplecall/update_dialog_action",true)
},
doneSample(sampletype){
var patient = this.$store.state.samplecall.selected_patient
var msg = "Anda yakin proses untuk "+sampletype.T_SampleTypeName+" dari "+patient.patient_fullname+" telah selesai ? "
this.$store.commit("samplecall/update_msg_action",msg)
this.$store.commit("samplecall/update_act",'samplingdone')
this.$store.commit("samplecall/update_selected_sampletype",sampletype)
this.$store.commit("samplecall/update_dialog_action",true)
},
printBarcodeGroup(){
var id = this.selected_patient.T_OrderHeaderID
one_print_barcode_so_group(id)
},
printBarcode(sampletype){
var id = sampletype.T_OrderDetailID
one_print_barcode_so(id)
},
}
}
</script>

View File

@@ -0,0 +1,347 @@
<template>
<div>
<v-dialog v-model="xdialogaction" persistent max-width="350">
<v-card>
<v-card-title color="warning" class="headline">Konfirmasi</v-card-title>
<v-card-text v-html="xmsgaction">
</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn color="primary darken-1" flat @click="closeDialogAction()">OK</v-btn>
<v-btn color="error darken-1" flat @click="xdialogaction = false">Tutup</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
<!--<v-card>
<v-layout row>
<v-flex xs12 pa-2>
<v-layout align-center>
<v-flex xs2>
<v-img
:src="xselected_patient.M_PatientPhotoThumb"
aspect-ratio="1"
class="grey lighten-2 elevation-2"
>
</v-flex>
<v-flex xs10 pl-2 pt-1>
<v-layout row wrap>
<v-flex xs4>
<v-layout column>
<v-flex>
<h3 style="font-size:x-large" class="font-weight-bold">{{ xselected_patient.T_OrderHeaderLabNumber }}</h3>
</v-flex>
<v-flex pt-3>
<v-text-field
v-model=" xselected_patient.M_PatientNoReg"
label="No RM"
readonly
hide-details
>
</v-text-field>
</v-flex>
<v-flex>
<v-text-field
v-model=" xselected_patient.M_PatientName"
label="Nama"
readonly
hide-details
>
</v-text-field>
</v-flex>
</v-layout>
</v-flex>
<v-flex xs8 pl-2>
<v-layout column>
<v-flex >
<v-layout row>
<v-flex xs5>
<v-text-field
v-model="xselected_patient.patient_dob"
label="Tanggal lahir"
readonly
hide-details
>
</v-text-field>
</v-flex>
<v-flex xs8 pl-1>
<v-text-field
v-model=" xselected_patient.T_OrderHeaderM_PatientAge"
label="Umur"
readonly
hide-details
>
</v-text-field>
</v-flex>
</v-layout>
</v-flex>
<v-flex pt-1>
<v-text-field
v-model="xselected_patient.M_PatientHP"
label="HP"
readonly
hide-details
>
</v-text-field>
</v-flex>
<v-flex v-if="xselected_patient.statusid === '0' || xselected_patient.statusid === '2'">
<v-btn
color="primary"
class="mt-3"
@click="callPatient()"
block
>
CALL
</v-btn>
</v-flex>
<v-layout v-if="xselected_patient.statusid === '1'" row>
<v-flex pl-2 pr-2 xs6>
<v-btn
color="warning"
class="mt-3"
@click="processNow()"
block
>
PROCESS
</v-btn>
</v-flex>
<v-flex pl-2 pr-2 xs6>
<v-btn
color="error"
class="mt-3"
@click="skip()"
block
>
SKIP
</v-btn>
</v-flex>
</v-layout>
</v-layout>
</v-flex>
</v-layout>
</v-flex>
</v-layout>
</v-flex>
</v-flex>
</v-card>
</v-layout>-->
<v-card v-if="xselected_patient">
<v-layout row>
<v-flex xs12 pa-2>
<v-layout align-center>
<v-flex xs2>
<v-card color="amber lighten-5">
<v-container style="padding:6px" grid-list-sm fluid>
<v-card flat tile class="d-flex">
<v-img
:src="xselected_patient.M_PatientPhotoThumb"
aspect-ratio="1"
class="grey lighten-2 elevation-2"
>
</v-img>
</v-card>
</v-container>
<v-card>
</v-flex>
<v-flex xs10 pl-2 pt-1>
<v-layout row>
<v-flex>
<v-subheader style="color:black;height:auto;padding:0px">
<h3 style="font-size:x-large" class="font-weight-bold">{{ xselected_patient.T_OrderHeaderLabNumber }}</h3>
<v-flex text-md-right>
<span @click="callPatient()" v-if="xselected_patient.statusid === '0' || xselected_patient.statusid === '2'" style="font-size:24px;" class="icon-medium-fill-base-small xs1 white--text info"><v-icon dark>volume_up</v-icon></span>
<span @click="skip()" v-if="xselected_patient.statusid === '1'" style="font-size:24px;" class="icon-medium-fill-base-small xs1 white--text black"><v-icon dark>fast_rewind</v-icon></span>
<span @click="processNow(xselected_patient.statusid)" v-if="xselected_patient.statusid === '1'" v-bind:class="{ 'warning':xselected_patient.statusid === '1','grey':xselected_patient.statusid !== '1' }" style="font-size:24px;" class="icon-medium-fill-base-small xs1 white--text"><v-icon dark>loop</v-icon></span>
</v-flex>
</v-subheader>
</v-flex>
</v-layout>
<v-layout row wrap>
<v-flex xs4>
<v-layout column>
<v-flex pt-1>
<v-text-field
v-model=" xselected_patient.M_PatientNoReg"
label="No RM"
readonly
hide-details
>
</v-text-field>
</v-flex>
<v-flex pt-1 >
<v-text-field
v-model=" xselected_patient.M_PatientName"
label="Nama"
readonly
hide-details
>
</v-text-field>
</v-flex>
</v-layout>
</v-flex>
<v-flex xs8 pl-2>
<v-layout column>
<v-flex pt-1 >
<v-layout row>
<v-flex xs4>
<v-text-field
v-model="xselected_patient.patient_dob"
label="Tanggal lahir"
readonly
hide-details
>
</v-text-field>
</v-flex>
<v-flex xs8 pl-1>
<v-text-field
v-model=" xselected_patient.T_OrderHeaderM_PatientAge"
label="Umur"
readonly
hide-details
>
</v-text-field>
</v-flex>
</v-layout>
</v-flex>
<v-flex pt-1>
<v-text-field
v-model="xselected_patient.M_PatientHP"
label="HP"
readonly
hide-details
>
</v-text-field>
</v-flex>
</v-layout>
</v-flex>
</v-layout>
</v-flex>
</v-layout>
</v-flex>
</v-layout>
</v-card>
</div>
</template>
<style scoped>
</style>
<script>
module.exports = {
data: () => ({
}),
computed: {
xselected_patient:{
get() {
return this.$store.state.samplecall.selected_patient
},
set(val) {
this.$store.commit("samplecall/update_selected_patient",val)
}
},
xdialogaction:{
get() {
return this.$store.state.samplecall.dialog_action
},
set(val) {
this.$store.commit("samplecall/update_dialog_action",val)
}
},
xmsgaction:{
get() {
return this.$store.state.samplecall.msg_action
},
set(val) {
this.$store.commit("samplecall/update_msg_action",val)
}
}
},
methods : {
closeDialogAction(){
var act = this.$store.state.samplecall.act
var sample = this.$store.state.samplecall.selected_sampletype
var status = 1
if(act === 'process'){
status = 3
}
if(act === 'skip'){
status = 2
}
if(act === 'samplingprocess'){
status = 3
}
if(act === 'samplingdone'){
status = 4
}
var patient = this.$store.state.samplecall.selected_patient
this.$store.dispatch("samplecall/doaction",{
act:act,
id:patient.T_OrderHeaderID,
name:this.name,
nolab:this.nolab,
stationid: patient.T_SampleStationID,
statusid:this.$store.state.samplecall.selected_status.id,
statusnextid : status,
sample:sample
})
},
callPatient(){
var patient = this.$store.state.samplecall.selected_patient
var msg = "Anda yakin akan melakukan panggilan kepada pasien "+patient.patient_fullname+" ? "
this.$store.commit("samplecall/update_msg_action",msg)
this.$store.commit("samplecall/update_act",'call')
this.$store.commit("samplecall/update_dialog_action",true)
},
processNow(value){
if(value === '1'){
var patient = this.$store.state.samplecall.selected_patient
var msg = "Anda yakin akan merubah status <span style='color:ff5252;font-weight:bold'>PROCESS</span> untuk pasien "+patient.patient_fullname+" ? "
this.$store.commit("samplecall/update_msg_action",msg)
this.$store.commit("samplecall/update_act",'process')
this.$store.commit("samplecall/update_dialog_action",true)
}
},
skip(){
var patient = this.$store.state.samplecall.selected_patient
var msg = "Anda yakin akan merubah status <span style='color:ff5252;font-weight:bold'>SKIP</span> untuk pasien "+patient.patient_fullname+" ? "
this.$store.commit("samplecall/update_msg_action",msg)
this.$store.commit("samplecall/update_act",'skip')
this.$store.commit("samplecall/update_dialog_action",true)
},
patient_photo(){
var photo = "https://www.sgm-inc.com/wp-content/uploads/2014/06/no-profile-male-img.gif"
if(this.xselected_patient.M_PatientPhoto){
photo = this.xselected_patient.M_PatientPhoto
}
console.log(photo)
return photo
}
}
}
</script>

View File

@@ -0,0 +1,292 @@
<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>