Flatten nested repos
This commit is contained in:
320
test/vuex/one-process-worklist-confirm/api/worklist.js
Normal file
320
test/vuex/one-process-worklist-confirm/api/worklist.js
Normal file
@@ -0,0 +1,320 @@
|
||||
const URL = "/one-api/mockup/process/worklistconfirm/";
|
||||
|
||||
export async function search(token, name) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistconfirm/search', {
|
||||
token:token,
|
||||
nama: name
|
||||
});
|
||||
if (resp.status != 200) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: resp.statusText
|
||||
};
|
||||
}
|
||||
let data = resp.data;
|
||||
return data;
|
||||
} catch (e) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: e.message
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
export async function getsexreg(prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistconfirm/getsexreg',prm);
|
||||
if (resp.status != 200) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: resp.statusText
|
||||
};
|
||||
}
|
||||
let data = resp.data;
|
||||
return data;
|
||||
} catch (e) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: e.message
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
export async function save(token,prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistconfirm/save',{token:token,datas:prm});
|
||||
if (resp.status != 200) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: resp.statusText
|
||||
};
|
||||
}
|
||||
let data = resp.data;
|
||||
return data;
|
||||
} catch (e) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: e.message
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
export async function newworklist(prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistconfirm/newworklist',prm);
|
||||
if (resp.status != 200) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: resp.statusText
|
||||
};
|
||||
}
|
||||
let data = resp.data;
|
||||
return data;
|
||||
} catch (e) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: e.message
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
export async function xdelete(prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistconfirm/delete',prm);
|
||||
if (resp.status != 200) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: resp.statusText
|
||||
};
|
||||
}
|
||||
let data = resp.data;
|
||||
return data;
|
||||
} catch (e) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: e.message
|
||||
};
|
||||
}
|
||||
}
|
||||
export async function sendorder(prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistconfirm/sendorder',prm);
|
||||
if (resp.status != 200) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: resp.statusText
|
||||
};
|
||||
}
|
||||
let data = resp.data;
|
||||
return data;
|
||||
} catch (e) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: e.message
|
||||
};
|
||||
}
|
||||
}
|
||||
export async function getdetail(prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistconfirm/getdetail',prm);
|
||||
if (resp.status != 200) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: resp.statusText
|
||||
};
|
||||
}
|
||||
let data = resp.data;
|
||||
return data;
|
||||
} catch (e) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: e.message
|
||||
};
|
||||
}
|
||||
}
|
||||
export async function getnumberx(prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistconfirm/getnumber',prm);
|
||||
if (resp.status != 200) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: resp.statusText
|
||||
};
|
||||
}
|
||||
let data = resp.data;
|
||||
return data;
|
||||
} catch (e) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: e.message
|
||||
};
|
||||
}
|
||||
}
|
||||
export async function deletenumberx(prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistconfirm/deletenumber',prm);
|
||||
if (resp.status != 200) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: resp.statusText
|
||||
};
|
||||
}
|
||||
let data = resp.data;
|
||||
return data;
|
||||
} catch (e) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: e.message
|
||||
};
|
||||
}
|
||||
}
|
||||
export async function searchcompany(token,prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistconfirm/searchcompany',{token:token,search:prm});
|
||||
if (resp.status != 200) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: resp.statusText
|
||||
};
|
||||
}
|
||||
let data = resp.data;
|
||||
return data;
|
||||
} catch(e) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: e.message
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
export async function getmou(token,prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistconfirm/getmou',{id:prm.M_CompanyID,token:token});
|
||||
if (resp.status != 200) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: resp.statusText
|
||||
};
|
||||
}
|
||||
let data = resp.data;
|
||||
return data;
|
||||
} catch(e) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: e.message
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
export async function savenewdetail(prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistconfirm/savenewdetail',prm);
|
||||
if (resp.status != 200) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: resp.statusText
|
||||
};
|
||||
}
|
||||
let data = resp.data;
|
||||
return data;
|
||||
} catch (e) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: e.message
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
export async function saveeditdetail(prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistconfirm/saveeditdetail',prm);
|
||||
if (resp.status != 200) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: resp.statusText
|
||||
};
|
||||
}
|
||||
let data = resp.data;
|
||||
return data;
|
||||
} catch (e) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: e.message
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
export async function deletedetail(prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistconfirm/deletedetail',prm);
|
||||
if (resp.status != 200) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: resp.statusText
|
||||
};
|
||||
}
|
||||
let data = resp.data;
|
||||
return data;
|
||||
} catch (e) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: e.message
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
export async function searchtest(token,tes,mouid) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistconfirm/searchtest',{token:token,search:tes});
|
||||
if (resp.status != 200) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: resp.statusText
|
||||
};
|
||||
}
|
||||
let data = resp.data;
|
||||
return data;
|
||||
} catch(e) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: e.message
|
||||
};
|
||||
}
|
||||
}
|
||||
export async function searchtestheader(token,tes,mouid) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistconfirm/searchtestheader',{token:token,search:tes});
|
||||
if (resp.status != 200) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: resp.statusText
|
||||
};
|
||||
}
|
||||
let data = resp.data;
|
||||
return data;
|
||||
} catch(e) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: e.message
|
||||
};
|
||||
}
|
||||
}
|
||||
export async function searchtestfavorit(token,mouid) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistconfirm/searchtestfavorit',{token:token,mouid:mouid});
|
||||
if (resp.status != 200) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: resp.statusText
|
||||
};
|
||||
}
|
||||
let data = resp.data;
|
||||
return data;
|
||||
} catch(e) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: e.message
|
||||
};
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
<template>
|
||||
<v-menu
|
||||
v-model="menu2"
|
||||
:close-on-content-click="false"
|
||||
:nudge-right="40"
|
||||
lazy
|
||||
transition="scale-transition"
|
||||
offset-y
|
||||
full-width
|
||||
max-width="290px"
|
||||
min-width="290px"
|
||||
>
|
||||
<v-text-field
|
||||
slot="activator"
|
||||
v-model="computedDateFormatted"
|
||||
:label=init_label
|
||||
persistent-hint
|
||||
readonly
|
||||
browser-autocomplete="off"
|
||||
></v-text-field>
|
||||
<v-date-picker v-model="init_date" no-title @input="menu2 = false" :max="init_max_date"></v-date-picker>
|
||||
</v-menu>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
module.exports = {
|
||||
props : ['label', 'date', 'data', 'max_date'],
|
||||
|
||||
data () {
|
||||
return {
|
||||
init_date: this.date && this.date != "0000-00-00" ? this.date : null, //new Date().toISOString().substr(0, 10),
|
||||
init_max_date: this.max_date ? this.max_date : '2999-09-09',
|
||||
dateFormatted: this.formatDate(new Date().toISOString().substr(0, 10)),
|
||||
menu1: false,
|
||||
menu2: false,
|
||||
|
||||
init_label: this.label ? this.label : 'Date',
|
||||
init_data: this.data ? this.data : ''
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
computedDateFormatted () {
|
||||
return this.formatDate(this.init_date)
|
||||
}
|
||||
},
|
||||
|
||||
watch: {
|
||||
init_date (n, o) {
|
||||
this.dateFormatted = this.formatDate(this.init_date)
|
||||
|
||||
this.$emit('change', {"old_date":o, "new_date":n, "data":this.init_data});
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
formatDate (date) {
|
||||
if (!date) { return null }
|
||||
|
||||
const [year, month, day] = date.split('-')
|
||||
return `${day}-${month}-${year}`
|
||||
},
|
||||
parseDate (date) {
|
||||
if (!date) return null
|
||||
|
||||
const [month, day, year] = date.split('/')
|
||||
return `${year}-${month.padStart(2, '0')}-${day.padStart(2, '0')}`
|
||||
},
|
||||
|
||||
emitChange (n, o) {
|
||||
console.log("old:"+o)
|
||||
console.log("new:"+n)
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,699 @@
|
||||
<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-dialog v-model="dialogconfirmationdeleteorder" 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>
|
||||
{{msgconfirmationdeleteorder}}
|
||||
</v-card-text>
|
||||
<v-card-actions>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn small color="error darken-1 text-sm-left" flat @click="doDeleteOrder()">Hapus</v-btn>
|
||||
<v-btn small color="primary darken-1 text-sm-right" flat @click="dialogconfirmationdeleteorder = false">Batal</v-btn>
|
||||
</v-card-actions>
|
||||
</v-card>
|
||||
</v-dialog>
|
||||
<v-card class="mb-2 pa-2 searchbox">
|
||||
<v-layout>
|
||||
<v-flex class="text-sm-left" xs6>
|
||||
<one-date-picker label="Tanggal" :date="init_date" @change="searchPatient" :data="null" :max_date="null" class="mr-4"></one-date-picker>
|
||||
</v-flex>
|
||||
<v-flex class="text-sm-right" xs6>
|
||||
<v-btn @click="save()" color="primary">Konfirmasi</v-btn>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-card>
|
||||
<v-card>
|
||||
<v-layout row>
|
||||
<v-flex xs12 pl-2 pr-2 pt-2 pb-2>
|
||||
<table style="
|
||||
font-family: arial, sans-serif;
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
border: 0px;
|
||||
" class="px">
|
||||
<tr>
|
||||
<td style="border: 1px solid #BDBBBB;
|
||||
border-collapse: collapse;
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;" width="10%" class="pa-2 blue lighten-3 white--text">WORKLIST
|
||||
</td>
|
||||
<td style="border: 1px solid #BDBBBB;
|
||||
border-collapse: collapse;
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;" width="10%" class="pa-2 blue lighten-3 white--text">PEMERIKSAAN
|
||||
</td>
|
||||
<td style="border: 1px solid #BDBBBB;
|
||||
border-collapse: collapse;
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;" width="80%" class="pa-2 blue lighten-3 white--text">ORDER
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="mini-input" v-for="(vpx,idx) in worklists">
|
||||
<td style="border: 1px solid #BDBBBB;
|
||||
border-collapse: collapse;
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
padding: 8px;" class="text-md-left pl-3">{{vpx.T_WorklistName}}</td>
|
||||
<td style="border: 1px solid #BDBBBB;
|
||||
border-collapse: collapse;
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
padding: 8px;" class="text-md-left pr-2">{{vpx.T_TestName}}</td>
|
||||
<td style="border: 1px solid #BDBBBB;
|
||||
border-collapse: collapse;
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
padding: 8px;">
|
||||
<v-layout xs12 row wrap>
|
||||
<v-flex xs3 v-for="(p, i) in vpx.labs" v-bind:key="p.T_OrderDetailID" class="pr-2 pb-1">
|
||||
<v-layout row>
|
||||
<v-flex class="boxoutline" class="text-left" style="padding-top:10px" pl-2 pb-2 pr-2 xs2>
|
||||
<v-layout row align-left justify-space-between>
|
||||
<v-icon v-if="p.ischoose === 'N'" @click="changeChoose(idx,i,p)" style="color:red">clear</v-icon>
|
||||
<v-icon v-if="p.ischoose === 'Y'" @click="changeChoose(idx,i,p)" style="color:green">check</v-icon>
|
||||
</v-layout>
|
||||
</v-flex>
|
||||
<v-flex class="boxoutline" style="text-overflow:ellipsis;overflow:hidden;" xs11>
|
||||
<span>{{p.labnumber}}</span>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</td>
|
||||
</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>
|
||||
|
||||
|
||||
|
||||
<template>
|
||||
<v-layout row justify-center>
|
||||
<v-dialog v-model="dialogformorder" persistent max-width="600px">
|
||||
<v-card>
|
||||
<v-card-title>
|
||||
<span class="headline">Form Kelompok Pelanggan</span>
|
||||
</v-card-title>
|
||||
<v-card-text class="pt-0 pb-0">
|
||||
<v-form ref="formcompany">
|
||||
<v-layout row wrap>
|
||||
<v-flex xs12 pa-2>
|
||||
<v-layout row>
|
||||
<v-flex xs12 pa-1>
|
||||
<v-autocomplete readonly label="Kelompok Pelanggan*" v-model="xcompany" :items="xcompanies" :search-input.sync="search_company"
|
||||
auto-select-first no-filter item-text="M_CompanyName" return-object :loading="isLoading"
|
||||
no-data-text="Pilih Perusahaan">
|
||||
<template slot="item" slot-scope="{ item }">
|
||||
<v-list-tile-content>
|
||||
<v-list-tile-title v-text="item.M_CompanyName"></v-list-tile-title>
|
||||
</v-list-tile-content>
|
||||
</template>
|
||||
</v-autocomplete>
|
||||
<p v-if="checkError('requirexcompany')" class="error pl-2 pr-2" style="color:#fff">Pilih kelompok pelanggan dulu dong</p>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
<v-layout row>
|
||||
<v-flex xs12 pa-1>
|
||||
<v-select readonly :search-input.sync="searchMou" item-text="M_MouName" return-object :items="xmous" v-model="xmou" label="Agreement*"
|
||||
autocomplete></v-select>
|
||||
<p v-if="checkError('requirexmou')" class="error pl-2 pr-2" style="color:#fff">Pilih Agreement dulu dong</p>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
<v-layout row>
|
||||
<v-flex xs12 pa-1>
|
||||
<v-text-field label="Tgl. Order" placeholder="dd-mm-yyyy" mask="##-##-####" v-model="xsdate"></v-text-field>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
<v-layout row>
|
||||
<v-flex xs12 pa-1>
|
||||
<v-text-field v-model="xnote" label="Catatan"></v-text-field>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-card-text>
|
||||
<v-card-actions>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn color="blue darken-1" flat @click="updateDialogFormOrder()">Tutup</v-btn>
|
||||
<v-btn v-if="xact === 'new'" color="blue darken-1" flat @click="saveFormPerusahaan()">Simpan</v-btn>
|
||||
<v-btn v-if="xact === 'edit'" color="blue darken-1" flat @click="updateFormPerusahaan()">Simpan Perubahan</v-btn>
|
||||
</v-card-actions>
|
||||
</v-form>
|
||||
</v-card>
|
||||
</v-dialog>
|
||||
</v-layout>
|
||||
</template>
|
||||
|
||||
|
||||
<template>
|
||||
<v-layout row justify-center>
|
||||
<v-dialog v-model="dialogstatusorder" persistent max-width="600px">
|
||||
<v-card>
|
||||
<v-card-title>
|
||||
<span class="headline">Status</span>
|
||||
</v-card-title>
|
||||
<v-card-text class="pt-0 pb-0">
|
||||
<v-timeline>
|
||||
<v-timeline-item v-for="(status, i) in xstatuss" :key="i" :waktu="status.waktu" :user="status.user" small>
|
||||
<template>
|
||||
<span :class="`headline font-weight-bold cyan--text`" v-text="status.status"></span>
|
||||
</template>
|
||||
<div class="py-3">
|
||||
<h2 :class="`headline font-weight-light mb-3 cyan--text`"></h2>
|
||||
<div>
|
||||
{{status.waktu}}
|
||||
<p> [ {{status.user}} ] </p>
|
||||
</div>
|
||||
</div>
|
||||
</v-timeline-item>
|
||||
</v-timeline>
|
||||
<v-card-actions>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn color="blue darken-1" flat @click="updateDialogStatusOrder()">Tutup</v-btn>
|
||||
</v-card-actions>
|
||||
</v-card>
|
||||
</v-dialog>
|
||||
</v-layout>
|
||||
</template>
|
||||
|
||||
</v-layout>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.searchbox .v-input.v-text-field .v-input__slot {
|
||||
min-height: 60px;
|
||||
}
|
||||
|
||||
.searchbox .v-btn {
|
||||
min-height: 60px;
|
||||
}
|
||||
|
||||
.boxoutline {
|
||||
color: teal;
|
||||
border: 1px solid teal;
|
||||
justify-content: center;
|
||||
height: 45px;
|
||||
line-height: 45px;
|
||||
padding-left: 5px;
|
||||
background: #ffffff;
|
||||
font-size: 12px;
|
||||
font-weight: 200;
|
||||
border-radius: 1px
|
||||
}
|
||||
|
||||
.boxoutline:hover {
|
||||
background: rgba(0, 0, 0, 0.07) !important;
|
||||
font-size: 12px;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
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-date-picker': httpVueLoader('./oneDatePicker2.vue'),
|
||||
'one-dialog-info': httpVueLoader('../../common/oneDialogInfo.vue'),
|
||||
'one-dialog-alert': httpVueLoader('../../common/oneDialogAlert.vue')
|
||||
},
|
||||
mounted() {
|
||||
this.$store.dispatch("worklist/getsexreg", {
|
||||
sexid: 0
|
||||
})
|
||||
this.$store.dispatch("worklist/search", {
|
||||
name: moment().format("Y-M-D"),
|
||||
lastid: -1
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
checkError(value) {
|
||||
var errors = this.$store.state.worklist.errors
|
||||
if (errors.includes(value)) {
|
||||
return true
|
||||
} else {
|
||||
return false
|
||||
}
|
||||
},
|
||||
isSelected(p) {
|
||||
return p.T_WorklistID == this.$store.state.worklist.selected_worklist
|
||||
.T_WorklistID
|
||||
},
|
||||
searchPatient(prm) {
|
||||
this.$store.dispatch("worklist/search", {
|
||||
name: prm.new_date,
|
||||
lastid: -1
|
||||
})
|
||||
this.init_date = prm.new_date
|
||||
},
|
||||
changeChoose(idx, i, value) {
|
||||
let arr = this.$store.state.worklist.worklists
|
||||
arr[idx]['labs'][i].ischoose = value.ischoose === 'N' ? 'Y' : 'N'
|
||||
this.$store.commit("worklist/update_worklists", arr)
|
||||
},
|
||||
selectMe(pat) {
|
||||
if (this.$store.state.worklist.no_save == 0) {
|
||||
this.$store.commit("worklist/update_selected_worklist", pat)
|
||||
this.$store.commit("worklist/update_act_comp", 'edit')
|
||||
this.$store.commit("worklist/update_rumusx", pat.T_WorklistFormula)
|
||||
|
||||
this.$store.commit("worklist/update_x_pat_id", pat.T_WorklistID)
|
||||
this.$store.commit("worklist/update_namacalculation", pat.T_WorklistName)
|
||||
this.$store.commit("worklist/update_rumus", pat.T_WorklistFormula)
|
||||
this.$store.commit("worklist/update_autotests", [{
|
||||
Nat_TestID: pat.T_WorklistNat_TestID,
|
||||
Nat_TestName: pat.Nat_TestName
|
||||
}])
|
||||
this.$store.commit("worklist/update_autotest", {
|
||||
Nat_TestID: pat.T_WorklistNat_TestID,
|
||||
Nat_TestName: pat.Nat_TestName
|
||||
})
|
||||
this.$store.commit("worklist/update_selected_sex", {
|
||||
Nat_SexID: pat.T_WorklistNat_SexID,
|
||||
Nat_SexName: pat.Nat_SexName
|
||||
})
|
||||
this.$store.commit("worklist/update_statuss", pat.statuss)
|
||||
} else {
|
||||
this.$store.commit("worklist/update_open_alert_confirmation", true)
|
||||
}
|
||||
|
||||
},
|
||||
editCalculation() {
|
||||
this.$store.commit("worklist/update_act_pat", 'edit')
|
||||
this.$store.commit("worklist/update_dialog_form_detail", true)
|
||||
},
|
||||
deleteCalculation() {
|
||||
this.$store.commit("worklist/update_act_pat", 'delete')
|
||||
this.$store.commit("worklist/update_x_pat_id", this.$store.state.worklist.x_pat_id)
|
||||
this.$store.commit("worklist/update_errors", [])
|
||||
var errors = this.$store.state.worklist.errors
|
||||
var msg = ''
|
||||
msg = "Yakin, akan menghapus data rumus " + this.$store.state.worklist.selected_worklist
|
||||
.T_WorklistName + " ?"
|
||||
this.$store.commit("worklist/update_msg_confirmation_delete_pat", msg)
|
||||
this.$store.commit("worklist/update_dialog_confirmation_delete_pat", true)
|
||||
},
|
||||
closeAlertConfirmation() {
|
||||
this.$store.commit("worklist/update_open_alert_confirmation", false)
|
||||
},
|
||||
forgetAlertConfirmation() {
|
||||
this.$store.commit("worklist/update_no_save", 0)
|
||||
this.$store.commit("worklist/update_open_alert_confirmation", false)
|
||||
},
|
||||
updateAlert_success(val) {
|
||||
this.$store.commit("worklist/update_alert_success", val)
|
||||
},
|
||||
updateDialogFormOrder() {
|
||||
this.$store.commit("worklist/update_dialog_form_order", false)
|
||||
},
|
||||
updateDialogStatusOrder() {
|
||||
this.$store.commit("worklist/update_dialog_status_order", false)
|
||||
},
|
||||
setNewOrder() {
|
||||
this.$store.commit("worklist/update_selected_worklist", {})
|
||||
this.$store.commit("worklist/update_act_pat", 'new')
|
||||
this.$store.commit("worklist/update_dialog_form_detail", true)
|
||||
this.$store.commit("worklist/update_isage", 'N')
|
||||
this.$store.commit("worklist/update_issex", 'N')
|
||||
this.$store.commit("worklist/update_rumusx", '')
|
||||
this.$store.commit("worklist/update_x_pat_id", 0)
|
||||
this.$store.commit("worklist/update_namacalculation", '')
|
||||
this.$store.commit("worklist/update_xisage", 'N')
|
||||
this.$store.commit("worklist/update_xissex", 'N')
|
||||
this.$store.commit("worklist/update_rumus", '')
|
||||
this.$store.commit("worklist/update_autotests", [])
|
||||
this.$store.commit("worklist/update_autotest", {})
|
||||
this.$store.commit("worklist/update_selected_sex", [])
|
||||
this.$store.commit("worklist/update_ordertests", [])
|
||||
},
|
||||
editOrder(val) {
|
||||
this.$store.commit("worklist/update_selected_worklist", val)
|
||||
this.$store.commit("worklist/update_act_comp", 'edit')
|
||||
this.$store.commit("worklist/update_dialog_form_order", true)
|
||||
this.xsdate = val.sdate
|
||||
this.$store.commit("worklist/update_companies", [{
|
||||
M_CompanyID: this.xcompanyid,
|
||||
M_CompanyName: this.xcompanyname
|
||||
}])
|
||||
this.xcompany = {
|
||||
M_CompanyID: this.xcompanyid,
|
||||
M_CompanyName: this.xcompanyname
|
||||
}
|
||||
this.$store.commit("worklist/update_mous", [{
|
||||
M_MouID: val.T_WorklistM_MouID,
|
||||
M_MouName: val.M_MouName
|
||||
}])
|
||||
this.xmou = {
|
||||
M_MouID: val.T_WorklistM_MouID,
|
||||
M_MouName: val.M_MouName
|
||||
}
|
||||
this.xnote = val.T_WorklistNote
|
||||
},
|
||||
setStatusOrder() {
|
||||
this.$store.commit("worklist/update_selected_worklist", {})
|
||||
this.$store.commit("worklist/update_dialog_status_order", true)
|
||||
this.search_company = ''
|
||||
},
|
||||
save() {
|
||||
var prm = this.$store.state.worklist.worklists
|
||||
this.$store.dispatch("worklist/save", prm)
|
||||
},
|
||||
saveFormPerusahaan() {
|
||||
this.$store.commit("worklist/update_errors", [])
|
||||
var errors = this.$store.state.worklist.errors
|
||||
if (_.isEmpty(this.xcompany)) {
|
||||
errors.push("requirexcompany")
|
||||
}
|
||||
if (_.isEmpty(this.xmou)) {
|
||||
errors.push("requirexmou")
|
||||
}
|
||||
if (_.isEmpty(this.xsdate)) {
|
||||
errors.push("requirexsdate")
|
||||
}
|
||||
if (errors.length === 0) {
|
||||
this.$store.dispatch("worklist/newworklist", {
|
||||
companyid: this.xcompany.M_CompanyID,
|
||||
mouid: this.xmou.M_MouID,
|
||||
sdate: moment(this.xsdate, 'DDMMYYYY', true),
|
||||
note: this.xnote
|
||||
})
|
||||
}
|
||||
},
|
||||
updateFormPerusahaan() {
|
||||
this.$store.commit("worklist/update_errors", [])
|
||||
var errors = this.$store.state.worklist.errors
|
||||
if (_.isEmpty(this.xcompany)) {
|
||||
errors.push("requirexcompany")
|
||||
}
|
||||
if (_.isEmpty(this.xmou)) {
|
||||
errors.push("requirexmou")
|
||||
}
|
||||
if (_.isEmpty(this.xsdate)) {
|
||||
errors.push("requirexsdate")
|
||||
}
|
||||
if (errors.length === 0) {
|
||||
this.$store.dispatch("worklist/save", {
|
||||
id: this.$store.state.worklist.selected_worklist.T_WorklistID,
|
||||
companyid: this.xcompany.M_CompanyID,
|
||||
mouid: this.xmou.M_MouID,
|
||||
sdate: moment(this.xsdate, 'DDMMYYYY', true),
|
||||
note: this.xnote,
|
||||
nomor: this.$store.state.worklist.selected_worklist.T_WorklistNumber
|
||||
})
|
||||
}
|
||||
},
|
||||
deleteOrder(value) {
|
||||
this.$store.commit("worklist/update_act_comp", 'delete')
|
||||
this.$store.commit("worklist/update_errors", [])
|
||||
var errors = this.$store.state.worklist.errors
|
||||
var msg = ''
|
||||
msg = "Yakin, akan menghapus data nomor " + value.T_WorklistNumber + " ?"
|
||||
this.$store.commit("worklist/update_msg_confirmation_delete", msg)
|
||||
this.$store.commit("worklist/update_dialog_confirmation_delete", true)
|
||||
},
|
||||
doDeleteOrder() {
|
||||
var prm = {}
|
||||
prm.T_WorklistID = this.$store.state.worklist.selected_worklist
|
||||
.T_WorklistID
|
||||
prm.T_WorklistNumber = this.$store.state.worklist.selected_worklist
|
||||
.T_WorklistNumber
|
||||
this.$store.dispatch("worklist/delete", prm)
|
||||
},
|
||||
thr_search_company: _.debounce(function () {
|
||||
this.$store.dispatch("worklist/searchcompany", this.search_company)
|
||||
}, 2000),
|
||||
closeDialogSuccess() {
|
||||
let arrworklist = this.$store.state.worklist.worklists
|
||||
var idx = _.findIndex(arrworklist, item => item.T_WorklistID === this.$store.state
|
||||
.worklist.last_id)
|
||||
console.log(idx)
|
||||
this.$store.dispatch("worklist/search", {
|
||||
name: this.init_date,
|
||||
lastid: idx
|
||||
})
|
||||
this.$store.commit("worklist/update_dialog_success", false)
|
||||
},
|
||||
formatDate(date) {
|
||||
if (!date) return null
|
||||
|
||||
const [year, month, day] = date.split('-')
|
||||
return `${day}-${month}-${year}`
|
||||
},
|
||||
deFormatedDate(date) {
|
||||
if (!date) return null
|
||||
|
||||
const [day, month, year] = date.split('-')
|
||||
return `${year}-${month.padStart(2, '0')}-${day.padStart(2, '0')}`
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
dialogsuccess: {
|
||||
get() {
|
||||
return this.$store.state.worklist.dialog_success
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_dialog_success", val)
|
||||
}
|
||||
},
|
||||
msgsuccess() {
|
||||
return this.$store.state.worklist.msg_success
|
||||
},
|
||||
snackbar: {
|
||||
get() {
|
||||
return this.$store.state.worklist.alert_success
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_alert_success", val)
|
||||
}
|
||||
},
|
||||
dialogconfirmationdeleteorder: {
|
||||
get() {
|
||||
return this.$store.state.worklist.dialog_confirmation_delete
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_dialog_confirmation_delete", val)
|
||||
}
|
||||
},
|
||||
xactsend() {
|
||||
return this.$store.state.worklist.act_send
|
||||
},
|
||||
msgconfirmationdeleteorder() {
|
||||
return this.$store.state.worklist.msg_confirmation_delete
|
||||
},
|
||||
isLoading() {
|
||||
return this.$store.state.worklist.search_status == 1
|
||||
},
|
||||
xact() {
|
||||
return this.$store.state.worklist.act_comp
|
||||
},
|
||||
worklists() {
|
||||
return this.$store.state.worklist.worklists
|
||||
},
|
||||
orderlabs() {
|
||||
return this.$store.state.worklist.orderlabs
|
||||
},
|
||||
openalertconfirmation: {
|
||||
get() {
|
||||
return this.$store.state.worklist.open_alert_confirmation
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_open_alert_confirmation", val)
|
||||
}
|
||||
},
|
||||
dialogformorder() {
|
||||
return this.$store.state.worklist.dialog_form_order
|
||||
},
|
||||
dialogstatusorder() {
|
||||
return this.$store.state.worklist.dialog_status_order
|
||||
},
|
||||
xdate: {
|
||||
get() {
|
||||
return this.$store.state.worklist.date
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_date", val)
|
||||
}
|
||||
},
|
||||
xnote: {
|
||||
get() {
|
||||
return this.$store.state.worklist.note
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_note", val)
|
||||
}
|
||||
},
|
||||
xcompanyid: {
|
||||
get() {
|
||||
return this.$store.state.worklist.companyid
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_companyid", val)
|
||||
}
|
||||
},
|
||||
xcompanyname: {
|
||||
get() {
|
||||
return this.$store.state.worklist.companyname
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_companyname", val)
|
||||
}
|
||||
},
|
||||
xmouid: {
|
||||
get() {
|
||||
return this.$store.state.worklist.mouid
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_mouid", val)
|
||||
}
|
||||
},
|
||||
xmouname: {
|
||||
get() {
|
||||
return this.$store.state.worklist.mouname
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_mouname", val)
|
||||
}
|
||||
},
|
||||
xcompanies() {
|
||||
return this.$store.state.worklist.companies
|
||||
},
|
||||
xcompany: {
|
||||
get() {
|
||||
return this.$store.state.worklist.company
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_company", val)
|
||||
}
|
||||
},
|
||||
xmous() {
|
||||
return this.$store.state.worklist.mous
|
||||
},
|
||||
xmou: {
|
||||
get() {
|
||||
return this.$store.state.worklist.mou
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_mou", val)
|
||||
}
|
||||
},
|
||||
startComputedDateFormatted() {
|
||||
return this.formatDate(this.xsdate)
|
||||
},
|
||||
xsdate: {
|
||||
get() {
|
||||
return this.$store.state.worklist.sdate
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_sdate", val)
|
||||
}
|
||||
},
|
||||
xstatuss() {
|
||||
return this.$store.state.worklist.statuss
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
msgalertconfirmation: "Perubahan yang telah dilakukan belum disimpan dong !",
|
||||
items: [],
|
||||
name: '',
|
||||
search_company: '',
|
||||
searchMou: '',
|
||||
menusdate: false,
|
||||
init_date: moment().format("Y-M-D"),
|
||||
date: new Date().toISOString().substr(0, 10),
|
||||
page: 1,
|
||||
headers: [{
|
||||
text: "WORKLIST",
|
||||
align: "center",
|
||||
sortable: false,
|
||||
value: "mr",
|
||||
width: "5%",
|
||||
class: "pa-2 blue lighten-3 white--text"
|
||||
},
|
||||
{
|
||||
text: "PEMERIKSAAN",
|
||||
align: "center",
|
||||
sortable: false,
|
||||
value: "lab",
|
||||
width: "10%",
|
||||
class: "pa-2 blue lighten-3 white--text"
|
||||
},
|
||||
{
|
||||
text: "ORDER",
|
||||
align: "center",
|
||||
sortable: false,
|
||||
value: "lab",
|
||||
width: "80%",
|
||||
class: "pa-2 blue lighten-3 white--text"
|
||||
}
|
||||
],
|
||||
pagination: {
|
||||
descending: true,
|
||||
page: 1,
|
||||
rowsPerPage: 5,
|
||||
sortBy: 'T_WorklistID',
|
||||
totalItems: this.$store.state.worklist.total_worklists
|
||||
},
|
||||
statuss: [{
|
||||
waktu: '16-07-2019 10:00',
|
||||
status: 'Order Dibuat',
|
||||
user: 'Nagita Slavina'
|
||||
},
|
||||
{
|
||||
waktu: '16-07-2019 11:00',
|
||||
status: 'Order Dikirim',
|
||||
user: 'Nagita Slavina'
|
||||
},
|
||||
{
|
||||
waktu: '16-07-2019 12:00',
|
||||
status: 'Order dikonfirmasi',
|
||||
user: 'Chacha Frederica'
|
||||
},
|
||||
{
|
||||
waktu: '16-07-2019 13:00',
|
||||
status: 'Telah dibuat Surat Jalan',
|
||||
user: 'Chacha Frederica'
|
||||
},
|
||||
{
|
||||
waktu: '16-07-2019 14:00',
|
||||
status: 'Kurir akan mengambil sampel',
|
||||
user: 'Satria Subiantoro'
|
||||
}
|
||||
]
|
||||
};
|
||||
},
|
||||
watch: {
|
||||
search_company(val, old) {
|
||||
if (val == old) return
|
||||
if (!val) return
|
||||
if (val.length < 1) return
|
||||
if (this.$store.state.worklist.update_autocomplete_status == 1) return
|
||||
this.thr_search_company()
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
89
test/vuex/one-process-worklist-confirm/index.php
Normal file
89
test/vuex/one-process-worklist-confirm/index.php
Normal file
@@ -0,0 +1,89 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>One</title>
|
||||
<link rel="stylesheet" href="../../../libs/vendor/css/google-fonts.css">
|
||||
<link rel="stylesheet" href="../../../libs/vendor/css/icomoon-fonts.css">
|
||||
<link rel="stylesheet" href="../../../libs/vendor/css/vuetify.min.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div v-cloak id="app">
|
||||
<v-app id="smartApp" >
|
||||
<one-navbar></one-navbar>
|
||||
<v-content style="background:#F5E8DF!important" >
|
||||
<v-container fluid fill-height class="pl-1 pr-1 pt-2 pb-2">
|
||||
<v-layout row wrap >
|
||||
<v-flex xs12 class="left" fill-height pa-1>
|
||||
<one-md-worklist-list></one-md-worklist-list>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-container>
|
||||
</v-content>
|
||||
<one-footer> </one-footer>
|
||||
</v-app>
|
||||
</div>
|
||||
|
||||
<!-- Vendor -->
|
||||
<script src="../../../libs/vendor/moment.min.js"></script>
|
||||
<script src="../../../libs/vendor/numeral.min.js"></script>
|
||||
<script src="../../../libs/vendor/moment-locale-id.js"></script>
|
||||
<script src="../../../libs/vendor/lodash.js"></script>
|
||||
<script src="../../../libs/vendor/axios.min.js"></script>
|
||||
<script src="../../../libs/vendor/vue.js"></script>
|
||||
<script src="../../../libs/vendor/vuex.js"></script>
|
||||
<script src="../../../libs/vendor/vuetify.js"></script>
|
||||
<script src="../../../libs/vendor/httpVueLoader.js"></script>
|
||||
<script src="../../../libs/one_global.js"></script>
|
||||
<!-- App Script -->
|
||||
<?php
|
||||
$ts = "?ts=" . Date("ymdhis");
|
||||
?>
|
||||
<script type="module">
|
||||
window.calculate_age = function (inp_dob) {
|
||||
var now = moment(new Date())
|
||||
var dob = moment(new Date(inp_dob))
|
||||
var year = now.diff(dob,'years')
|
||||
dob.add(year,'years')
|
||||
var month = now.diff(dob,'months')
|
||||
dob.add(month,'months')
|
||||
var day = now.diff(dob,'days')
|
||||
if (isNaN(year)) return ''
|
||||
return `${year} tahun ${month} bulan ${day} hari`
|
||||
}
|
||||
|
||||
|
||||
import { store } from './store.js<?php echo $ts ?>';
|
||||
//for worklisting
|
||||
window.store = store;
|
||||
new Vue({
|
||||
store,
|
||||
el: '#app',
|
||||
methods: {
|
||||
tab_selected : function(tab) {
|
||||
return this.$store.state.tab_selected == tab
|
||||
}
|
||||
},
|
||||
components: {
|
||||
'one-navbar': httpVueLoader('../../../apps/components/oneNavbarComponent.vue'),
|
||||
'one-footer': httpVueLoader('../../../apps/components/oneFooter.vue'),
|
||||
'one-md-worklist-list': httpVueLoader('./components/oneProcessWorklistConfirmList.vue')
|
||||
}
|
||||
})
|
||||
</script>
|
||||
<style>
|
||||
[v-cloak] {
|
||||
display: none
|
||||
}
|
||||
.left {
|
||||
}
|
||||
.right {
|
||||
}
|
||||
</style>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
648
test/vuex/one-process-worklist-confirm/modules/worklist.js
Normal file
648
test/vuex/one-process-worklist-confirm/modules/worklist.js
Normal file
@@ -0,0 +1,648 @@
|
||||
// 1 => LOADING
|
||||
// 2 => DONE
|
||||
// 3 => ERROR
|
||||
import * as api from "../api/worklist.js"
|
||||
|
||||
export default {
|
||||
namespaced: true,
|
||||
state: {
|
||||
last_id: -1,
|
||||
last_saved_id: -1,
|
||||
x_pat_id: 0,
|
||||
act: 'edit',
|
||||
act_comp: 'new',
|
||||
act_pat: 'new',
|
||||
act_send: 'N',
|
||||
get_data_status: 0,
|
||||
search_worklist: 0,
|
||||
search_status: 0,
|
||||
search_error_message: '',
|
||||
dialog_form_order: false,
|
||||
dialog_edit_form_order:false,
|
||||
dialog_status_order: false,
|
||||
norm: '',
|
||||
worklist_name: '',
|
||||
worklists: [],
|
||||
total_worklists: 0,
|
||||
worklist_detail: [],
|
||||
date: '',
|
||||
note: '',
|
||||
companyid: 0,
|
||||
companyname: '',
|
||||
mouid: 0,
|
||||
mouname: '',
|
||||
sdate:moment(new Date()).format('YYYY-MM-DD'),
|
||||
companies: [],
|
||||
company: {},
|
||||
mous: [],
|
||||
mou: {},
|
||||
total_worklist: 0,
|
||||
selected_worklist: {},
|
||||
codenumber:{},
|
||||
codenumberx:'',
|
||||
save_status: 0,
|
||||
btn_save_seen: true,
|
||||
pgrs_save: false,
|
||||
save_error_message: '',
|
||||
no_save: 0,
|
||||
open_alert_confirmation: false,
|
||||
alert_success: false,
|
||||
msg_success: "",
|
||||
dialog_success: false,
|
||||
dialog_confirmation_delete: false,
|
||||
msg_confirmation_delete: "",
|
||||
dialog_confirmation_send: false,
|
||||
msg_confirmation_send: "",
|
||||
dialog_confirmation_delete_pat: false,
|
||||
msg_confirmation_delete_pat: "",
|
||||
autocomplete_status: 0,
|
||||
dialog_form_detail: false,
|
||||
errors: [],
|
||||
details: [],
|
||||
namacalculation: '',
|
||||
rumus: '',
|
||||
dob: '',
|
||||
sexes: [],
|
||||
selected_sex: {},
|
||||
titles: [],
|
||||
selected_title: {},
|
||||
orderautotests:[],
|
||||
orderautotest:{},
|
||||
autotests:[],
|
||||
autotest:{},
|
||||
ordertests:[],
|
||||
deleted_ordertests:[],
|
||||
ordertestfavorits:[],
|
||||
statuss:[],
|
||||
isage: 'N',
|
||||
issex: 'N',
|
||||
xisage: 'N',
|
||||
xissex: 'N',
|
||||
rumusx: '',
|
||||
orderlabs:[]
|
||||
},
|
||||
mutations: {
|
||||
update_x_pat_id(state, val) {
|
||||
state.x_pat_id = val
|
||||
},
|
||||
update_last_id(state, val) {
|
||||
state.last_id = val
|
||||
},
|
||||
update_last_saved_id(state, val) {
|
||||
state.last_saved_id = val
|
||||
},
|
||||
update_act(state, val) {
|
||||
state.act = val
|
||||
},
|
||||
update_act_comp(state, val) {
|
||||
state.act_comp = val
|
||||
},
|
||||
update_act_pat(state, val) {
|
||||
state.act_pat = val
|
||||
},
|
||||
update_act_send(state, val) {
|
||||
state.act_send = val
|
||||
},
|
||||
update_get_data_status(state, val) {
|
||||
state.get_data_status = val
|
||||
},
|
||||
update_search_error_message(state, worklist) {
|
||||
state.search_error_message = worklist
|
||||
},
|
||||
update_search_worklist(state, worklist) {
|
||||
state.search_worklist = worklist
|
||||
},
|
||||
update_dialog_form_order(state, val) {
|
||||
state.dialog_form_order = val
|
||||
},
|
||||
update_dialog_edit_form_order(state, val) {
|
||||
state.dialog_edit_form_order = val
|
||||
},
|
||||
update_dialog_status_order(state, val) {
|
||||
state.dialog_status_order = val
|
||||
},
|
||||
update_worklist_name(state, val) {
|
||||
state.worklist_name = val
|
||||
},
|
||||
update_date(state, val) {
|
||||
state.date = val
|
||||
},
|
||||
update_sdate(state,val){
|
||||
state.sdate = val
|
||||
},
|
||||
update_note(state, val) {
|
||||
state.note = val
|
||||
},
|
||||
update_companyid(state, val) {
|
||||
state.companyid = val
|
||||
},
|
||||
update_companyname(state, val) {
|
||||
state.companyname = val
|
||||
},
|
||||
update_mouid(state, val) {
|
||||
state.mouid = val
|
||||
},
|
||||
update_mouname(state, val) {
|
||||
state.mouname = val
|
||||
},
|
||||
update_worklists(state, data) {
|
||||
state.worklists = data
|
||||
},
|
||||
update_selected_worklist(state, val) {
|
||||
state.selected_worklist = val
|
||||
},
|
||||
update_codenumber(state, val) {
|
||||
state.codenumber = val
|
||||
},
|
||||
update_codenumberx(state, val) {
|
||||
state.codenumberx = val
|
||||
},
|
||||
update_save_status(state, val) {
|
||||
state.save_status = val
|
||||
},
|
||||
update_btn_save_seen(state, val) {
|
||||
state.btn_save_seen = val
|
||||
},
|
||||
update_pgrs_save(state, val) {
|
||||
state.pgrs_save = val
|
||||
},
|
||||
update_save_error_message(state, msg) {
|
||||
state.save_error_message = ''
|
||||
},
|
||||
update_no_save(state, val) {
|
||||
state.no_save = val
|
||||
},
|
||||
update_open_alert_confirmation(state, val) {
|
||||
state.open_alert_confirmation = val
|
||||
},
|
||||
update_alert_success(state, val) {
|
||||
state.alert_success = val
|
||||
},
|
||||
update_msg_success(state, val) {
|
||||
state.msg_success = val
|
||||
},
|
||||
update_dialog_success(state, val) {
|
||||
state.dialog_success = val
|
||||
},
|
||||
update_dialog_confirmation_delete(state, val) {
|
||||
state.dialog_confirmation_delete = val
|
||||
},
|
||||
update_msg_confirmation_delete(state, val) {
|
||||
state.msg_confirmation_delete = val
|
||||
},
|
||||
update_dialog_confirmation_send(state, val) {
|
||||
state.dialog_confirmation_send = val
|
||||
},
|
||||
update_msg_confirmation_send(state, val) {
|
||||
state.msg_confirmation_send = val
|
||||
},
|
||||
update_dialog_confirmation_delete_pat(state, val) {
|
||||
state.dialog_confirmation_delete_pat = val
|
||||
},
|
||||
update_msg_confirmation_delete_pat(state, val) {
|
||||
state.msg_confirmation_delete_pat = val
|
||||
},
|
||||
update_details(state, val) {
|
||||
state.details = val
|
||||
},
|
||||
update_autocomplete_status(state, val) {
|
||||
state.autocomplete_status = val
|
||||
},
|
||||
update_dialog_form_detail(state, val) {
|
||||
state.dialog_form_detail = val
|
||||
},
|
||||
update_label_detail(state, val) {
|
||||
state.label_detail = val
|
||||
},
|
||||
update_companies(state, val) {
|
||||
state.companies = val
|
||||
},
|
||||
update_company(state, val) {
|
||||
state.company = val
|
||||
},
|
||||
update_mous(state, val) {
|
||||
state.mous = val
|
||||
},
|
||||
update_mou(state, val) {
|
||||
state.mou = val
|
||||
},
|
||||
update_search_status(state, val) {
|
||||
state.search_status = val
|
||||
},
|
||||
update_errors(state, val) {
|
||||
state.errors = val
|
||||
},
|
||||
update_total_worklists(state, val) {
|
||||
state.total_worklists = val
|
||||
},
|
||||
update_dob(state, val) {
|
||||
state.dob = val
|
||||
},
|
||||
update_namacalculation(state, val) {
|
||||
state.namacalculation = val
|
||||
},
|
||||
update_rumus(state, val) {
|
||||
state.rumus = val
|
||||
},
|
||||
update_sexes(state, val) {
|
||||
state.sexes = val
|
||||
},
|
||||
update_selected_sex(state, val) {
|
||||
state.selected_sex = val
|
||||
},
|
||||
update_titles(state, val) {
|
||||
state.titles = val
|
||||
},
|
||||
update_selected_title(state, val) {
|
||||
state.selected_title = val
|
||||
},
|
||||
update_orderautotests(state,data){
|
||||
state.orderautotests = data
|
||||
},
|
||||
update_orderautotest(state,val){
|
||||
state.orderautotest = val
|
||||
},
|
||||
update_autotests(state,data){
|
||||
state.autotests = data
|
||||
},
|
||||
update_autotest(state,val){
|
||||
state.autotest = val
|
||||
},
|
||||
update_ordertests(state,data){
|
||||
state.ordertests = data
|
||||
},
|
||||
update_deleted_ordertests(state,data){
|
||||
state.deleted_ordertests = data
|
||||
},
|
||||
update_ordertestfavorits(state,data){
|
||||
state.ordertestfavorits = data
|
||||
},
|
||||
update_statuss(state,data){
|
||||
state.statuss = data
|
||||
},
|
||||
update_isage(state, val) {
|
||||
state.isage = val
|
||||
},
|
||||
update_issex(state, val) {
|
||||
state.issex = val
|
||||
},
|
||||
update_xisage(state, val) {
|
||||
state.xisage = val
|
||||
},
|
||||
update_xissex(state, val) {
|
||||
state.xissex = val
|
||||
},
|
||||
update_rumusx(state, val) {
|
||||
state.rumusx = val
|
||||
},
|
||||
update_orderlabs(state,data){
|
||||
state.orderlabs = data
|
||||
}
|
||||
},
|
||||
actions: {
|
||||
async search(context, prm) {
|
||||
context.commit("update_search_worklist", 1)
|
||||
try {
|
||||
let resp = await api.search(one_token(), prm.name)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_search_worklist", 3)
|
||||
context.commit("update_search_error_message", resp.message)
|
||||
} else {
|
||||
context.commit("update_search_worklist", 2)
|
||||
context.commit("update_search_error_message", "")
|
||||
let data = {
|
||||
records: resp.data.records,
|
||||
total: resp.data.total
|
||||
}
|
||||
context.commit("update_worklists", data.records)
|
||||
context.commit("update_total_worklists", data.total)
|
||||
context.commit("update_no_save", 0)
|
||||
var arrOrders = data.records
|
||||
let arr = [];
|
||||
arrOrders.forEach((value, index) =>
|
||||
arr.push(value.labs))
|
||||
console.log(arr)
|
||||
context.commit("update_orderlabs", arr)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_search_worklist", 3)
|
||||
context.commit("update_search_error_message", e.message)
|
||||
console.log(e)
|
||||
}
|
||||
},
|
||||
async getsexreg(context,prm) {
|
||||
context.commit("update_get_data_status", 1)
|
||||
try {
|
||||
prm.token = one_token()
|
||||
prm.sexid = prm.sexid
|
||||
let resp = await api.getsexreg(prm)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_get_data_status", 3)
|
||||
} else {
|
||||
context.commit("update_get_data_status", 2)
|
||||
let data = {
|
||||
records: resp.data.records,
|
||||
total: resp.data.total
|
||||
}
|
||||
context.commit("update_titles", data.records.titles)
|
||||
context.commit("update_sexes", data.records.sexes)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_get_data_status", 3)
|
||||
}
|
||||
},
|
||||
async save(context, prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
let resp = await api.save(one_token(),prm)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_save_status", 3)
|
||||
} else {
|
||||
context.commit("update_save_status", 2)
|
||||
context.commit("update_dialog_success", true)
|
||||
var msg = "Worklist sudah dikonfirmasi"
|
||||
context.commit("update_msg_success", msg)
|
||||
context.commit("update_dialog_form_order", false)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
}
|
||||
},
|
||||
async newworklist(context, prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
prm.token = one_token()
|
||||
let resp = await api.newworklist(prm)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_save_status", 3)
|
||||
} else {
|
||||
context.commit("update_save_status", 2)
|
||||
console.log(resp.data.id)
|
||||
context.commit("update_last_id", resp.data.id)
|
||||
context.commit("update_dialog_success", true)
|
||||
var msg = "Data berhasil disimpan"
|
||||
context.commit("update_msg_success", msg)
|
||||
context.commit("update_dialog_form_order", false)
|
||||
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
}
|
||||
},
|
||||
async delete(context, prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
prm.token = one_token()
|
||||
let resp = await api.xdelete(prm)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_save_status", 3)
|
||||
} else {
|
||||
context.commit("update_save_status", 2)
|
||||
context.commit("update_last_id", 0)
|
||||
context.commit("update_dialog_confirmation_delete", false)
|
||||
context.commit("update_dialog_success", true)
|
||||
var msg = "Data nomor" + prm.T_ReceiveReferenceHeaderNumber + " sudah dihapus dong ..."
|
||||
context.commit("update_msg_success", msg)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
}
|
||||
},
|
||||
async sendorder(context, prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
prm.token = one_token()
|
||||
let resp = await api.sendorder(prm)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_save_status", 3)
|
||||
} else {
|
||||
context.commit("update_save_status", 2)
|
||||
context.commit("update_dialog_confirmation_send", false)
|
||||
context.commit("update_last_id", prm.T_WorklistID)
|
||||
context.commit("update_dialog_success", true)
|
||||
var msg = "Permintaan nomor " + prm.T_ReceiveReferenceHeaderNumber + " sudah berhasil dikirim ..."
|
||||
context.commit("update_msg_success", msg)
|
||||
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
}
|
||||
},
|
||||
async getdetail(context, prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
prm.token = one_token()
|
||||
let resp = await api.getdetail(prm)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_save_status", 3)
|
||||
} else {
|
||||
context.commit("update_save_status", 2)
|
||||
let data = {
|
||||
records: resp.data.records,
|
||||
total: resp.data.total
|
||||
}
|
||||
context.commit("update_details", data.records)
|
||||
var pat = data.records[0]
|
||||
context.commit("update_ordertests", pat.tests)
|
||||
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
}
|
||||
},
|
||||
|
||||
async searchcompany(context, prm) {
|
||||
context.commit("update_autocomplete_status", 1)
|
||||
try {
|
||||
let resp = await api.searchcompany(one_token(), prm)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_autocomplete_status", 3)
|
||||
} else {
|
||||
context.commit("update_autocomplete_status", 2)
|
||||
let data = {
|
||||
records: resp.data.records,
|
||||
total: resp.data.total
|
||||
}
|
||||
context.commit("update_companies", resp.data.records)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_autocomplete_status", 3)
|
||||
}
|
||||
},
|
||||
async getmou(context, prm) {
|
||||
context.commit("update_get_data_status", 1)
|
||||
try {
|
||||
let resp = await api.getmou(one_token(), prm)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_get_data_status", 3)
|
||||
} else {
|
||||
context.commit("update_get_data_status", 2)
|
||||
let data = {
|
||||
records: resp.data.records,
|
||||
total: resp.data.total
|
||||
}
|
||||
context.commit("update_mous", resp.data.records)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_get_data_status", 3)
|
||||
}
|
||||
},
|
||||
async searchtest(context,prm) {
|
||||
context.commit("update_autocomplete_status",1)
|
||||
try {
|
||||
let resp= await api.searchtest(one_token(), prm.tes)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_autocomplete_status",3)
|
||||
} else {
|
||||
context.commit("update_autocomplete_status",2)
|
||||
let data = {
|
||||
records : resp.data.records,
|
||||
total: resp.data.total
|
||||
}
|
||||
context.commit("update_orderautotests",resp.data.records)
|
||||
}
|
||||
} catch(e) {
|
||||
context.commit("update_autocomplete_status",3)
|
||||
}
|
||||
},
|
||||
async getnumberx(context,prm) {
|
||||
context.commit("update_get_data_status", 1)
|
||||
try {
|
||||
prm.token = one_token()
|
||||
let resp = await api.getnumberx(prm)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_get_data_status", 3)
|
||||
} else {
|
||||
context.commit("update_get_data_status", 2)
|
||||
let data = {
|
||||
records: resp.data.records,
|
||||
number: resp.data.number
|
||||
}
|
||||
context.commit("update_codenumber", data.records[0])
|
||||
context.commit("update_codenumberx", data.number)
|
||||
var oldArr = context.state.ordertests
|
||||
console.log(oldArr)
|
||||
var arrTest = data.records[0]
|
||||
oldArr.push(arrTest)
|
||||
|
||||
context.commit("update_orderautotests", [])
|
||||
context.commit("update_orderautotest", {})
|
||||
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_get_data_status", 3)
|
||||
}
|
||||
},
|
||||
async deletenumberx(context,prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
prm.token = one_token()
|
||||
let resp = await api.deletenumberx(prm)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_save_status", 3)
|
||||
} else {
|
||||
context.commit("update_save_status", 2)
|
||||
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
}
|
||||
},
|
||||
async searchtestheader(context,prm) {
|
||||
context.commit("update_autocomplete_status",1)
|
||||
try {
|
||||
let resp= await api.searchtestheader(one_token(), prm.tes)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_autocomplete_status",3)
|
||||
} else {
|
||||
context.commit("update_autocomplete_status",2)
|
||||
let data = {
|
||||
records : resp.data.records,
|
||||
total: resp.data.total
|
||||
}
|
||||
context.commit("update_autotests",resp.data.records)
|
||||
}
|
||||
} catch(e) {
|
||||
context.commit("update_autocomplete_status",3)
|
||||
}
|
||||
},
|
||||
async searchtestfavorit(context,prm) {
|
||||
context.commit("update_autocomplete_status",1)
|
||||
try {
|
||||
let resp= await api.searchtestfavorit(one_token(), prm.mouid)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_autocomplete_status",3)
|
||||
} else {
|
||||
context.commit("update_autocomplete_status",2)
|
||||
let data = {
|
||||
records : resp.data.records,
|
||||
total: resp.data.total
|
||||
}
|
||||
context.commit("update_ordertestfavorits",resp.data.records)
|
||||
}
|
||||
} catch(e) {
|
||||
context.commit("update_autocomplete_status",3)
|
||||
}
|
||||
},
|
||||
async savenewdetail(context, prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
prm.token = one_token()
|
||||
let resp = await api.savenewdetail(prm)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_save_status", 3)
|
||||
} else {
|
||||
context.commit("update_save_status", 2)
|
||||
context.commit("update_dialog_form_detail", false)
|
||||
context.commit("update_last_id", resp.data.id)
|
||||
context.commit("update_dialog_success", true)
|
||||
var msg = "Penambahan data rumus " + prm.T_WorklistName + " sudah berhasil dong ..."
|
||||
context.commit("update_msg_success", msg)
|
||||
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
}
|
||||
},
|
||||
async saveeditdetail(context, prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
prm.token = one_token()
|
||||
let resp = await api.saveeditdetail(prm)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_save_status", 3)
|
||||
} else {
|
||||
context.commit("update_save_status", 2)
|
||||
context.commit("update_dialog_form_detail", false)
|
||||
context.commit("update_last_id", prm.T_WorklistID)
|
||||
context.commit("update_dialog_success", true)
|
||||
var msg = "Perubahan data rumus " + prm.T_WorklistName + " sudah berhasil dong ..."
|
||||
context.commit("update_msg_success", msg)
|
||||
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
}
|
||||
},
|
||||
async deletedetail(context, prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
prm.token = one_token()
|
||||
let resp = await api.deletedetail(prm)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_save_status", 3)
|
||||
} else {
|
||||
context.commit("update_save_status", 2)
|
||||
context.commit("update_dialog_confirmation_delete_pat", false)
|
||||
context.commit("update_last_id", prm.T_WorklistID)
|
||||
context.commit("update_dialog_success", true)
|
||||
var msg = "Penghapusan data rumus " + prm.T_WorklistName + " sudah berhasil dong ..."
|
||||
context.commit("update_msg_success", msg)
|
||||
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
27
test/vuex/one-process-worklist-confirm/store.js
Normal file
27
test/vuex/one-process-worklist-confirm/store.js
Normal file
@@ -0,0 +1,27 @@
|
||||
// State
|
||||
// data ...
|
||||
// Mutations
|
||||
//
|
||||
//
|
||||
// Actions
|
||||
import worklist from "./modules/worklist.js";
|
||||
import system from "../../../apps/modules/system/system.js";
|
||||
export const store = new Vuex.Store({
|
||||
modules: {
|
||||
worklist: worklist,
|
||||
system: system
|
||||
},
|
||||
state: {
|
||||
tab_selected: 'pasien-dokter'
|
||||
},
|
||||
mutations: {
|
||||
change_tab(state, ntab) {
|
||||
state.tab_selected = ntab
|
||||
}
|
||||
},
|
||||
actions: {
|
||||
change_tab(context, ntab) {
|
||||
context.commit('change_tab', ntab)
|
||||
}
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user