Flatten nested repos
This commit is contained in:
224
test/vuex/one-md-worklist-v2/api/detail.js
Normal file
224
test/vuex/one-md-worklist-v2/api/detail.js
Normal file
@@ -0,0 +1,224 @@
|
||||
const URL = "/one-api/mockup/masterdata/";
|
||||
|
||||
export async function save(prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/addnewdetail', 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(token,id) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/deletedetail', { id: id ,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 searchtest(token,tes,mouid) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/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 xverify(token,id) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/verifydetail', { id: id ,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 xunverify(token,id) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/unverifydetail', { id: id ,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 xrelease(token,id) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/releasedetail', { id: id ,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 xunrelease(token,id) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/unreleasedetail', { id: id ,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 lookup(token,search,id) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/lookupdetail', {search: search, id: id, 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 selectbase(token) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/selectbase',{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 selectomzettype(token) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/selectomzettype',{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 selectdetailtype(token) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/selectdetailtype',{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 selectagingtype(token) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/selectagingtype',{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
|
||||
};
|
||||
}
|
||||
}
|
||||
208
test/vuex/one-md-worklist-v2/api/worklist.js
Normal file
208
test/vuex/one-md-worklist-v2/api/worklist.js
Normal file
@@ -0,0 +1,208 @@
|
||||
const URL = "/one-api/mockup/masterdata/";
|
||||
|
||||
export async function lookup(token, search,all ) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/lookup', { token: token, search: search, all:all });
|
||||
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(prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/addnewworklist', 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 update(prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/editworklist', 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(token,id) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/deleteworklist', { id: id, 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 selectnonlab(token) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/selectnonlab',{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 searchcity(token,prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/searchcity',{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 searchdoctor(token,prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/searchdoctor',{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 searchinstrument(token,tes) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/searchinstrument',{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 searchtemplate(token,tes) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/searchtemplate',{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 getdistrict(token,prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/getdistrict',{id:prm.M_CityID,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 getkelurahan(token,prm) {
|
||||
try {
|
||||
var resp = await axios.post(URL + 'worklistv2/getkelurahan',{token:token,id:prm.M_DistrictID});
|
||||
if (resp.status != 200) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: resp.statusText
|
||||
};
|
||||
}
|
||||
let data = resp.data;
|
||||
return data;
|
||||
} catch(e) {
|
||||
return {
|
||||
status: "ERR",
|
||||
message: e.message
|
||||
};
|
||||
}
|
||||
}
|
||||
610
test/vuex/one-md-worklist-v2/components/oneMdDetailList.vue
Normal file
610
test/vuex/one-md-worklist-v2/components/oneMdDetailList.vue
Normal file
@@ -0,0 +1,610 @@
|
||||
<template>
|
||||
<v-layout>
|
||||
<v-flex xs12>
|
||||
<v-card class="mb-2" color="white">
|
||||
<v-toolbar color="blue lighten-3" dark height="50px">
|
||||
<v-toolbar-title>DETAIL : {{xworklist.name}}</v-toolbar-title>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn v-if="xworklist.id > 0" @click="openFormDetail(0)" icon>
|
||||
<v-icon>library_add</v-icon>
|
||||
</v-btn>
|
||||
</v-toolbar>
|
||||
<v-layout row style="background:#bbdefb;padding-top:5px;" justify-left>
|
||||
<v-list-tile>
|
||||
<input type="text" v-model="xsearch" class="textinput" label="Nama Station" placeholder="Cari ..." />
|
||||
</v-list-tile-content>
|
||||
</v-list-tile>
|
||||
</v-layout>
|
||||
<v-divider></v-divider>
|
||||
<v-layout row wrap class="scroll-container" style="max-height:600px;overflow: auto;">
|
||||
<v-flex xs12 pl-2 pr-2 pt-2 pb-2>
|
||||
<v-data-table :headers="headers" :items="details" :loading="isLoading" hide-actions class="elevation-1">
|
||||
<template slot="items" slot-scope="props">
|
||||
<td class="text-xs-left pa-2" v-bind:class="{ 'red--text': props.item.Nat_TestNat_SampleTypeID == 0, 'black--text': props.item.Nat_TestNat_SampleTypeID > 0}" v-html="props.item.Nat_TestCode">
|
||||
</td>
|
||||
<td class="text-xs-left pa-2" v-bind:class="{ 'red--text': props.item.Nat_TestNat_SampleTypeID == 0, 'black--text': props.item.Nat_TestNat_SampleTypeID > 0}" v-html="props.item.Nat_TestNamex">
|
||||
</td>
|
||||
<td class="text-xs-left pa-2">
|
||||
<!-- <v-icon small class="ml-3" color="primary" @click="editFormDetail(props.item)">edit</v-icon> -->
|
||||
<v-icon small class="ml-3" color="error" @click="deleteFormDetail(props.item)">clear</v-icon>
|
||||
</td>
|
||||
</template>
|
||||
</v-data-table>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
|
||||
<template>
|
||||
<v-layout row justify-center>
|
||||
<v-dialog v-model="dialogdetail" persistent max-width="750px">
|
||||
<v-card>
|
||||
<v-card-title>
|
||||
<span class="headline">FORM DETAIL</span>
|
||||
</v-card-title>
|
||||
<v-card-text class="pt-0 pb-0">
|
||||
<v-form ref="formworklistdetail" v-model="validdetail" lazy-validation>
|
||||
<v-layout wrap>
|
||||
<v-flex xs12>
|
||||
WORKLIST : {{xworklist.name}} <span>
|
||||
</v-flex>
|
||||
<v-flex xs12><v-autocomplete label="Pemeriksaan*" v-model="xautotest" :items="xautotests" :search-input.sync="search_test" auto-select-first
|
||||
no-filter item-text="Nat_TestName" return-object no-data-text="Cari Pemeriksaan"
|
||||
small :rules="detailnameRules" required>
|
||||
<template slot="item" slot-scope="{ item }">
|
||||
<v-list-tile-content>
|
||||
<v-list-tile-title v-text="item.Nat_TestName"></v-list-tile-title>
|
||||
</v-list-tile-content>
|
||||
</template>
|
||||
</v-autocomplete>
|
||||
</v-flex>
|
||||
<v-flex>
|
||||
<p v-for="(xerror,idx) in xerrors" class="error pl-2 pr-2" style="color:#fff">{{xerror.msg}}</p>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-card-text>
|
||||
<v-card-actions>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn color="blue darken-1" flat @click="updateDialogFormDetail()">Tutup</v-btn>
|
||||
<v-btn color="blue darken-1" flat @click="saveFormDetail()">Simpan</v-btn>
|
||||
</v-card-actions>
|
||||
</v-form>
|
||||
</v-card>
|
||||
</v-dialog>
|
||||
</v-layout>
|
||||
</template>
|
||||
|
||||
</v-card>
|
||||
</v-flex>
|
||||
|
||||
<one-dialog-print :title="printtitle" :width="printwidth" :height="500" :status="openprint" :urlprint="urlprint" @close-dialog-print="closePrint"></one-dialog-print>
|
||||
<template>
|
||||
|
||||
<v-dialog v-model="dialogdeletealertdetail" max-width="30%">
|
||||
<v-card>
|
||||
<v-card-title class="headline grey lighten-2 pt-2 pb-2" primary-title>
|
||||
Peringatan !
|
||||
</v-card-title>
|
||||
<v-card-text class="pt-2 pb-2">
|
||||
<v-layout row>
|
||||
<v-flex xs12 d-flex>
|
||||
<v-layout row>
|
||||
<v-flex pb-1 xs12>
|
||||
<v-layout row>
|
||||
<v-flex pt-2 pr-2 xs12>
|
||||
{{msgalertdetail}}
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-card-text>
|
||||
<v-divider></v-divider>
|
||||
<v-card-actions>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn color="primary" flat @click="dialogdeletealertdetail = false">
|
||||
Tutup
|
||||
</v-btn>
|
||||
<v-btn color="primary" flat @click="closeDeleteAlertDetail()">
|
||||
Yakin lah
|
||||
</v-btn>
|
||||
</v-card-actions>
|
||||
</v-card>
|
||||
</v-dialog>
|
||||
|
||||
</template>
|
||||
|
||||
</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;
|
||||
}
|
||||
|
||||
.textinput {
|
||||
-webkit-transition: width 0.4s ease-in-out;
|
||||
transition: width 0.4s ease-in-out;
|
||||
background-color: white;
|
||||
background-position: 10px 10px;
|
||||
background-repeat: no-repeat;
|
||||
padding-left: 40px;
|
||||
width: 100%;
|
||||
padding: 8px 10px;
|
||||
margin-bottom: 5px;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid #607d8b;
|
||||
|
||||
}
|
||||
|
||||
.textinput:focus {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.textinput:focus::-webkit-input-placeholder {
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.textinput:focus::-moz-placeholder {
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.textinput:-moz-placeholder {
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.boxoutline {
|
||||
color: red;
|
||||
border: 1px solid red;
|
||||
justify-content: center;
|
||||
height: 45px;
|
||||
line-height: 45px;
|
||||
padding-left: 10px;
|
||||
background: #ffffff;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
border-radius: 1px
|
||||
}
|
||||
|
||||
.boxoutline:hover {
|
||||
background: rgba(0, 0, 0, 0.07) !important;
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.boxsolid {
|
||||
color: #ffffff;
|
||||
border: 1px solid #ffffff;
|
||||
justify-content: center;
|
||||
height: 45px;
|
||||
line-height: 45px;
|
||||
padding-left: 10px;
|
||||
background: #f44336;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
border-radius: 1px
|
||||
}
|
||||
|
||||
.boxsolid:hover {
|
||||
background: #f44336de;
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.scroll-container {
|
||||
scroll-padding: 50px 0 0 50px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 7px;
|
||||
}
|
||||
|
||||
/* this targets the default scrollbar (compulsory) */
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background-color: #73baf3;
|
||||
}
|
||||
|
||||
/* the new scrollbar will have a flat appearance with the set background color */
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: #2196f3;
|
||||
}
|
||||
|
||||
/* this will style the thumb, ignoring the track */
|
||||
|
||||
::-webkit-scrollbar-button {
|
||||
background-color: #0079da;
|
||||
}
|
||||
|
||||
/* optionally, you can style the top and the bottom buttons (left and right for horizontal bars) */
|
||||
|
||||
::-webkit-scrollbar-corner {
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
/* if both the vertical and the horizontal bars appear, then perhaps the right bottom corner also needs to be styled */
|
||||
</style>
|
||||
|
||||
<script>
|
||||
module.exports = {
|
||||
components: {
|
||||
'one-date-picker': httpVueLoader('../../common/oneDatePicker.vue'),
|
||||
'one-dialog-print': httpVueLoader('../../common/oneDialogPrintX.vue')
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
query: "",
|
||||
items: [],
|
||||
openprint: false,
|
||||
urlprint: '',
|
||||
printtitle: '',
|
||||
printwidth: 600,
|
||||
formatreport: 'pdf',
|
||||
page: 1,
|
||||
xsearch: "",
|
||||
detailname: '',
|
||||
detailcode: '',
|
||||
search_test: '',
|
||||
detailnameRules: [
|
||||
v => !!v || 'Pemeriksaan harus dipilih'
|
||||
],
|
||||
detailcodeRules: [
|
||||
v => !!v || 'Kode harus diisi'
|
||||
],
|
||||
headers: [{
|
||||
text: "KODE",
|
||||
align: "left",
|
||||
sortable: false,
|
||||
value: "lab",
|
||||
width: "30%",
|
||||
class: "blue lighten-4"
|
||||
},
|
||||
{
|
||||
text: "NAMA",
|
||||
align: "left",
|
||||
sortable: false,
|
||||
value: "name",
|
||||
width: "30%",
|
||||
class: "blue lighten-4"
|
||||
},
|
||||
{
|
||||
text: "AKSI",
|
||||
align: "left",
|
||||
sortable: false,
|
||||
value: "status",
|
||||
width: "10%",
|
||||
class: "blue lighten-4"
|
||||
}
|
||||
],
|
||||
pagination: {
|
||||
descending: false,
|
||||
page: 1,
|
||||
rowsPerPage: 100,
|
||||
sortBy: 'Nat_TestName ASC',
|
||||
totalItems: this.$store.state.detail.total_transactions
|
||||
},
|
||||
statuss: [{
|
||||
waktu: '16-07-2019 10:00',
|
||||
status: 'Order Dibuat',
|
||||
detail: 'Nagita Slavina'
|
||||
},
|
||||
{
|
||||
waktu: '16-07-2019 11:00',
|
||||
status: 'Order Dikirim',
|
||||
detail: 'Nagita Slavina'
|
||||
},
|
||||
{
|
||||
waktu: '16-07-2019 12:00',
|
||||
status: 'Order dikonfirmasi',
|
||||
detail: 'Chacha Frederica'
|
||||
},
|
||||
{
|
||||
waktu: '16-07-2019 13:00',
|
||||
status: 'Telah dibuat Surat Jalan',
|
||||
detail: 'Chacha Frederica'
|
||||
},
|
||||
{
|
||||
waktu: '16-07-2019 14:00',
|
||||
status: 'Kurir akan mengambil sampel',
|
||||
detail: 'Satria Subiantoro'
|
||||
}
|
||||
],
|
||||
color: "success",
|
||||
validdetail: false,
|
||||
xid: 0,
|
||||
isinput: "N",
|
||||
countprice: 0,
|
||||
detaildetailid: 0,
|
||||
detaildetailname: "",
|
||||
detaillang: "",
|
||||
detailtext: "",
|
||||
isadvance: "N",
|
||||
detailformatadvance: "",
|
||||
issenttoworklist: "N",
|
||||
menustartdate: false,
|
||||
menuenddate: false,
|
||||
date: new Date().toISOString().substr(0, 10),
|
||||
|
||||
dialogdeletealertdetail: false,
|
||||
dialogverifyalertdetail: false,
|
||||
dialogreleasealertdetail: false,
|
||||
alertverify: false,
|
||||
dialogunreleasealertdetail: false,
|
||||
dialogunverifyalertdetail: false,
|
||||
msgalertdetail: ""
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
},
|
||||
computed: {
|
||||
details() {
|
||||
return this.$store.state.detail.details
|
||||
},
|
||||
xworklist() {
|
||||
return this.$store.state.worklist.selected_worklist
|
||||
},
|
||||
dialogdetail() {
|
||||
return this.$store.state.detail.dialog_form_detail
|
||||
},
|
||||
xerrors() {
|
||||
return this.$store.state.detail.errors
|
||||
},
|
||||
isLoading() {
|
||||
return this.$store.state.detail.search_status == 1
|
||||
},
|
||||
startComputedDateFormatted() {
|
||||
return this.formatDate(this.xstartdate)
|
||||
},
|
||||
xstartdate: {
|
||||
get() {
|
||||
return this.$store.state.detail.startdate
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("detail/update_startdate", val)
|
||||
}
|
||||
},
|
||||
endComputedDateFormatted() {
|
||||
return this.formatDate(this.xenddate)
|
||||
},
|
||||
xenddate: {
|
||||
get() {
|
||||
return this.$store.state.detail.enddate
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("detail/update_enddate", val)
|
||||
}
|
||||
},
|
||||
xbases() {
|
||||
return this.$store.state.detail.bases
|
||||
},
|
||||
xbase: {
|
||||
get() {
|
||||
return this.$store.state.detail.base
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("detail/update_base", val)
|
||||
}
|
||||
|
||||
},
|
||||
xomzettypes() {
|
||||
return this.$store.state.detail.omzettypes
|
||||
},
|
||||
xomzettype: {
|
||||
get() {
|
||||
return this.$store.state.detail.omzettype
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("detail/update_omzettype", val)
|
||||
}
|
||||
|
||||
},
|
||||
xdetailtypes() {
|
||||
return this.$store.state.detail.detailtypes
|
||||
},
|
||||
xdetailtype: {
|
||||
get() {
|
||||
return this.$store.state.detail.detailtype
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("detail/update_detailtype", val)
|
||||
}
|
||||
|
||||
},
|
||||
xagingtypes() {
|
||||
return this.$store.state.detail.agingtypes
|
||||
},
|
||||
xagingtype: {
|
||||
get() {
|
||||
return this.$store.state.detail.agingtype
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("detail/update_agingtype", val)
|
||||
}
|
||||
|
||||
},
|
||||
xstatuss() {
|
||||
return this.$store.state.detail.statuss
|
||||
},
|
||||
dialogstatusorder() {
|
||||
return this.$store.state.detail.dialog_status_order
|
||||
},
|
||||
xautotests() {
|
||||
return this.$store.state.detail.autotests
|
||||
},
|
||||
xautotest: {
|
||||
get() {
|
||||
return this.$store.state.detail.autotest
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("detail/update_autotest", val)
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
updateDialogFormDetail() {
|
||||
this.$store.commit("detail/update_dialog_form_detail", false)
|
||||
},
|
||||
updateDialogStatusOrder() {
|
||||
this.$store.commit("detail/update_dialog_status_order", false)
|
||||
},
|
||||
setStatusOrder(val) {
|
||||
this.$store.commit("detail/update_details", {})
|
||||
this.$store.commit("detail/update_dialog_status_order", true)
|
||||
this.$store.commit("detail/update_statuss", val.statuss)
|
||||
},
|
||||
doPriceList(val) {
|
||||
console.log(location)
|
||||
var id = val.id
|
||||
location.replace("/one-ui/test/vuex/one-md-price/" + "?id=" + id)
|
||||
},
|
||||
doPrice() {
|
||||
console.log(location)
|
||||
var id = this.xid
|
||||
location.replace("/one-ui/test/vuex/one-md-price/" + "?id=" + id)
|
||||
},
|
||||
thr_search_test: _.debounce(function () {
|
||||
this.$store.dispatch("detail/searchtest", {
|
||||
tes: this.search_test
|
||||
})
|
||||
}, 2000),
|
||||
thr_search: _.debounce(function () {
|
||||
this.$store.dispatch("detail/lookup", {
|
||||
search: this.xsearch,
|
||||
id: this.$store.state.worklist.selected_worklist.id
|
||||
})
|
||||
}, 1000),
|
||||
searchWorklist() {
|
||||
this.$store.dispatch("detail/lookup", {
|
||||
search: this.xsearch,
|
||||
id: this.$store.state.worklist.selected_worklist.id
|
||||
})
|
||||
},
|
||||
doPrint() {
|
||||
console.log('doprint')
|
||||
this.printwidth = 1028
|
||||
this.printtitle = ""
|
||||
let detail = one_detail()
|
||||
var id = this.xid
|
||||
var d = new Date();
|
||||
var n = d.getTime()
|
||||
var rptname = 'test_price'
|
||||
var formatrpt = this.formatreport
|
||||
|
||||
this.urlprint = "/birt/run?__report=report/one/md/" + rptname + ".rptdesign&__format=" +
|
||||
formatrpt + "&PDetailID=" + id + "&detaildetailname=" + detail.M_DetailDetailname + "&tm=" + n
|
||||
|
||||
this.openprint = true
|
||||
},
|
||||
closePrint() {
|
||||
this.openprint = false
|
||||
},
|
||||
openFormDetail(val) {
|
||||
this.xid = val
|
||||
this.detailname = ''
|
||||
this.detailcode = ''
|
||||
this.$store.commit("detail/update_autotests", [])
|
||||
this.$store.commit("detail/update_autotest", {})
|
||||
this.$store.commit("detail/update_dialog_form_detail", true)
|
||||
},
|
||||
editFormDetail(val) {
|
||||
this.xid = val.id
|
||||
this.detailname = val.Nat_TestName
|
||||
this.detailcode = val.Nat_TestCode
|
||||
this.$store.commit("detail/update_autotests", [{
|
||||
Nat_TestID: val.Nat_TestID,
|
||||
Nat_TestName: val.Nat_TestName
|
||||
}])
|
||||
this.$store.commit("detail/update_autotest", {
|
||||
Nat_TestID: val.Nat_TestID,
|
||||
Nat_TestName: val.Nat_TestName
|
||||
})
|
||||
this.$store.commit("detail/update_dialog_form_detail", true)
|
||||
},
|
||||
checkError(value) {
|
||||
var errors = this.$store.state.detail.errors
|
||||
if (errors.includes(value)) {
|
||||
return true
|
||||
} else {
|
||||
return false
|
||||
}
|
||||
},
|
||||
saveFormDetail() {
|
||||
if (this.$refs.formworklistdetail.validate()) {
|
||||
this.$store.dispatch("detail/save", {
|
||||
xid: this.xid,
|
||||
worklistid: this.$store.state.worklist.selected_worklist.id,
|
||||
worklistname: this.$store.state.worklist.selected_worklist.name,
|
||||
name: this.$store.state.detail.autotest.Nat_TestName,
|
||||
testid: this.$store.state.detail.autotest.Nat_TestID
|
||||
})
|
||||
}
|
||||
|
||||
},
|
||||
set_date2(x) {
|
||||
this.startdate = x.new_date
|
||||
},
|
||||
set_date3(x) {
|
||||
this.enddate = x.new_date
|
||||
},
|
||||
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')}`
|
||||
},
|
||||
updateAlert_success(val) {
|
||||
this.$store.commit("worklist/update_alert_success", val)
|
||||
},
|
||||
deleteFormDetail(data) {
|
||||
this.xid = data.id
|
||||
|
||||
this.msgalertdetail = "Yakin, mau hapus detail ini?"
|
||||
this.dialogdeletealertdetail = true
|
||||
},
|
||||
closeDeleteAlertDetail() {
|
||||
this.$store.dispatch("detail/delete", {
|
||||
xid: this.xid,
|
||||
worklistid: this.$store.state.worklist.selected_worklist.id,
|
||||
worklistname: this.$store.state.worklist.selected_worklist.name,
|
||||
name: this.$store.state.detail.autotest.Nat_TestName,
|
||||
detailid: this.$store.state.detail.autotest.Nat_TestID
|
||||
})
|
||||
this.dialogdeletealertdetail = false
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
xsearch(val, old) {
|
||||
console.log(val)
|
||||
this.xsearch = val
|
||||
this.thr_search()
|
||||
|
||||
},
|
||||
search_test(val, old) {
|
||||
if (val == old) return
|
||||
if (!val) return
|
||||
if (val.length < 1) return
|
||||
if (this.$store.state.detail.update_autocomplete_status == 1) return
|
||||
this.thr_search_test()
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
601
test/vuex/one-md-worklist-v2/components/oneMdWorklistList.vue
Normal file
601
test/vuex/one-md-worklist-v2/components/oneMdWorklistList.vue
Normal file
@@ -0,0 +1,601 @@
|
||||
<template>
|
||||
<v-layout>
|
||||
<template>
|
||||
|
||||
<v-dialog v-model="dialogdeletealert" max-width="30%">
|
||||
<v-card>
|
||||
<v-card-title class="headline grey lighten-2 pt-2 pb-2" primary-title>
|
||||
Peringatan !
|
||||
</v-card-title>
|
||||
<v-card-text class="pt-2 pb-2">
|
||||
<v-layout row>
|
||||
<v-flex xs12 d-flex>
|
||||
<v-layout row>
|
||||
<v-flex pb-1 xs12>
|
||||
<v-layout row>
|
||||
<v-flex pt-2 pr-2 xs12>
|
||||
{{msgalert}}
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-card-text>
|
||||
<v-divider></v-divider>
|
||||
<v-card-actions>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn color="primary" flat @click="dialogdeletealert = false">
|
||||
Tutup
|
||||
</v-btn>
|
||||
<v-btn color="primary" flat @click="closeDeleteAlert()">
|
||||
Yakin lah
|
||||
</v-btn>
|
||||
</v-card-actions>
|
||||
</v-card>
|
||||
</v-dialog>
|
||||
|
||||
<v-dialog v-model="dialogworklist" persistent max-width="600px">
|
||||
<v-card>
|
||||
<v-card-title>
|
||||
<span class="headline">FORM WORKLIST</span></v-card-title>
|
||||
<v-card-text class="pt-0 pb-0">
|
||||
<v-form ref="formworklist" v-model="valid" lazy-validation>
|
||||
<v-layout wrap>
|
||||
<v-flex xs12>
|
||||
<v-text-field v-model="worklistname" label="Nama*" :rules="worklistnameRules" required></v-text-field>
|
||||
</v-flex>
|
||||
<v-flex xs12>
|
||||
<v-autocomplete label="Instrument*" v-model="xinstrument" :items="xinstruments" :search-input.sync="search_instrument" auto-select-first
|
||||
no-filter item-text="Nat_InstrumentName" return-object no-data-text="Cari Instrument"
|
||||
small>
|
||||
<template slot="item" slot-scope="{ item }">
|
||||
<v-list-tile-content>
|
||||
<v-list-tile-title v-text="item.Nat_InstrumentName"></v-list-tile-title>
|
||||
</v-list-tile-content>
|
||||
</template>
|
||||
</v-autocomplete>
|
||||
</v-flex>
|
||||
<v-flex xs12>
|
||||
<v-checkbox v-model="isrujukan" label="Rujukan"></v-checkbox>
|
||||
</v-flex>
|
||||
<v-flex>
|
||||
<p v-for="(xerror,idx) in xerrors" class="error pl-2 pr-2" style="color:#fff">{{xerror.msg}}</p>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-card-text>
|
||||
<v-card-actions>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn color="blue darken-1" flat @click="updateDialogFormWorklist()">Tutup</v-btn>
|
||||
<v-btn v-if="xact === 'new'" color="blue darken-1" flat @click="saveFormWorklist()">Simpan</v-btn>
|
||||
<v-btn v-if="xact === 'edit'" color="blue darken-1" flat @click="updateFormWorklist()">Simpan Perubahan</v-btn>
|
||||
</v-card-actions>
|
||||
</v-form>
|
||||
</v-card>
|
||||
</v-dialog>
|
||||
</template>
|
||||
|
||||
|
||||
<v-flex xs12>
|
||||
<v-card>
|
||||
<v-toolbar color="blue lighten-3" dark height="50px">
|
||||
<v-toolbar-title>WORKLIST</v-toolbar-title>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn @click="openFormWorklist(0)" icon>
|
||||
<v-icon>library_add</v-icon>
|
||||
</v-btn>
|
||||
</v-toolbar>
|
||||
<v-snackbar v-model="snackbar" :timeout="5000" :multi-line="false" :vertical="false" :top="true">
|
||||
{{msgsnackbar}}
|
||||
<v-btn flat @click="updateAlert_success(false)">
|
||||
Tutup
|
||||
</v-btn>
|
||||
</v-snackbar>
|
||||
<v-layout row style="background:#bbdefb;padding-top:5px;" justify-left>
|
||||
<v-list-tile>
|
||||
<input type="text" v-model="xsearch" class="textinput" label="Nama Station" placeholder="Cari ..." />
|
||||
</v-list-tile-content>
|
||||
</v-list-tile>
|
||||
</v-layout>
|
||||
<v-divider></v-divider>
|
||||
<div>
|
||||
|
||||
<v-layout row class="scroll-container" style="max-height:600px;overflow: auto;">
|
||||
<v-flex xs12 pl-2 pr-2 pt-2 pb-2>
|
||||
<v-data-table :headers="headers" :items="vworklists" :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)}" @click="selectMe(props.item)">{{ props.item.T_WorklistName}}</td>
|
||||
<td class="text-xs-left pa-2" v-bind:class="{'amber lighten-4':isSelected(props.item)}" @click="selectMe(props.item)">{{ props.item.Nat_InstrumentName}}</td>
|
||||
<td class="text-xs-left pa-2" v-bind:class="{'amber lighten-4':isSelected(props.item)}" @click="selectMe(props.item)">{{ props.item.isrujukan}}</td>
|
||||
<td class="text-xs-left pa-2" v-bind:class="{'amber lighten-4':isSelected(props.item)}" @click="selectMe(props.item)">
|
||||
<v-icon small class="ml-3" color="primary" @click="editWorklist(props.item)">edit</v-icon>
|
||||
<v-icon small class="ml-3" color="error" @click="deleteWorklist(props.item)">clear</v-icon>
|
||||
</td>
|
||||
</template>
|
||||
</v-data-table>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
|
||||
|
||||
|
||||
<v-divider></v-divider>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</v-card>
|
||||
</v-flex>
|
||||
</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;
|
||||
}
|
||||
|
||||
.textinput {
|
||||
-webkit-transition: width 0.4s ease-in-out;
|
||||
transition: width 0.4s ease-in-out;
|
||||
background-color: white;
|
||||
background-position: 10px 10px;
|
||||
background-repeat: no-repeat;
|
||||
padding-left: 40px;
|
||||
width: 100%;
|
||||
padding: 8px 10px;
|
||||
margin-bottom: 5px;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid #607d8b;
|
||||
|
||||
}
|
||||
|
||||
.textinput:focus {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.textinput:focus::-webkit-input-placeholder {
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.textinput:focus::-moz-placeholder {
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.textinput:-moz-placeholder {
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.boxoutline {
|
||||
color: red;
|
||||
border: 1px solid red;
|
||||
justify-content: center;
|
||||
height: 45px;
|
||||
line-height: 45px;
|
||||
padding-left: 10px;
|
||||
background: #ffffff;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
border-radius: 1px
|
||||
}
|
||||
|
||||
.boxoutline:hover {
|
||||
background: rgba(0, 0, 0, 0.07) !important;
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.boxsolid {
|
||||
color: #ffffff;
|
||||
border: 1px solid #ffffff;
|
||||
justify-content: center;
|
||||
height: 45px;
|
||||
line-height: 45px;
|
||||
padding-left: 10px;
|
||||
background: #f44336;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
border-radius: 1px
|
||||
}
|
||||
|
||||
.boxsolid:hover {
|
||||
background: #f44336de;
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.scroll-container {
|
||||
scroll-padding: 50px 0 0 50px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 7px;
|
||||
}
|
||||
|
||||
/* this targets the default scrollbar (compulsory) */
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background-color: #73baf3;
|
||||
}
|
||||
|
||||
/* the new scrollbar will have a flat appearance with the set background color */
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: #2196f3;
|
||||
}
|
||||
|
||||
/* this will style the thumb, ignoring the track */
|
||||
|
||||
::-webkit-scrollbar-button {
|
||||
background-color: #0079da;
|
||||
}
|
||||
|
||||
/* optionally, you can style the top and the bottom buttons (left and right for horizontal bars) */
|
||||
|
||||
::-webkit-scrollbar-corner {
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
/* if both the vertical and the horizontal bars appear, then perhaps the right bottom corner also needs to be styled */
|
||||
</style>
|
||||
|
||||
<script>
|
||||
module.exports = {
|
||||
data() {
|
||||
return {
|
||||
msgalertconfirmation: "Perubahan yang telah dilakukan belum disimpan dong !",
|
||||
dialogdeletealert: false,
|
||||
msgalert: "",
|
||||
valid: false,
|
||||
xid: 0,
|
||||
xsearch: "",
|
||||
search_instrument: '',
|
||||
items: [],
|
||||
worklistname: '',
|
||||
worklistcode: '',
|
||||
worklistnameRules: [
|
||||
v => !!v || 'Nama harus diisi'
|
||||
],
|
||||
instrumentRules: [
|
||||
v => !!v || 'Instrument harus dipilih'
|
||||
],
|
||||
name: '',
|
||||
isrujukan: 'N',
|
||||
scode: '',
|
||||
search_doctor: '',
|
||||
search_testheader: '',
|
||||
search_template: '',
|
||||
page: 1,
|
||||
headers: [{
|
||||
text: "NAMA",
|
||||
align: "left",
|
||||
sortable: false,
|
||||
value: "mr",
|
||||
width: "20%",
|
||||
class: "pa-2 blue lighten-3 white--text"
|
||||
},
|
||||
{
|
||||
text: "INSTRUMENT",
|
||||
align: "left",
|
||||
sortable: false,
|
||||
value: "mr",
|
||||
width: "20%",
|
||||
class: "pa-2 blue lighten-3 white--text"
|
||||
},
|
||||
{
|
||||
text: "RUJUKAN",
|
||||
align: "left",
|
||||
sortable: false,
|
||||
value: "mr",
|
||||
width: "10%",
|
||||
class: "pa-2 blue lighten-3 white--text"
|
||||
},
|
||||
{
|
||||
text: "AKSI",
|
||||
align: "left",
|
||||
sortable: false,
|
||||
value: "mr",
|
||||
width: "10%",
|
||||
class: "pa-2 blue lighten-3 white--text"
|
||||
}
|
||||
],
|
||||
pagination: {
|
||||
descending: false,
|
||||
page: 1,
|
||||
rowsPerPage: 100,
|
||||
sortBy: 'T_WorklistName ASC',
|
||||
totalItems: this.$store.state.worklist.total_filter_worklists
|
||||
}
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
this.$store.dispatch("worklist/lookup", {
|
||||
search: this.xsearch,
|
||||
all: 'Y',
|
||||
lastid: -1
|
||||
})
|
||||
this.$store.dispatch("worklist/selectnonlab")
|
||||
},
|
||||
computed: {
|
||||
xact() {
|
||||
return this.$store.state.worklist.act
|
||||
},
|
||||
xerrors() {
|
||||
return this.$store.state.worklist.errors
|
||||
},
|
||||
xshowall() {
|
||||
return this.$store.state.worklist.show_all
|
||||
},
|
||||
vworklists() {
|
||||
return this.$store.state.worklist.worklists
|
||||
},
|
||||
xtotalworklists() {
|
||||
return this.$store.state.worklist.total_worklists
|
||||
},
|
||||
xtotalfilterworklists() {
|
||||
return this.$store.state.worklist.total_filter_worklists
|
||||
},
|
||||
dialogworklist() {
|
||||
return this.$store.state.worklist.dialog_form_worklist
|
||||
},
|
||||
snackbar: {
|
||||
get() {
|
||||
return this.$store.state.worklist.alert_success
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_alert_success", val)
|
||||
}
|
||||
},
|
||||
msgsnackbar() {
|
||||
return this.$store.state.worklist.msg_success
|
||||
},
|
||||
lookupstatus() {
|
||||
return this.$store.state.worklist.lookup_worklist
|
||||
},
|
||||
xworklisttypes() {
|
||||
return this.$store.state.worklist.worklisttypes
|
||||
},
|
||||
xworklisttype: {
|
||||
get() {
|
||||
return this.$store.state.worklist.worklisttype
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_worklisttype", val)
|
||||
}
|
||||
|
||||
},
|
||||
isLoading() {
|
||||
return this.$store.state.worklist.search_status == 1
|
||||
},
|
||||
xnonlabs() {
|
||||
return this.$store.state.worklist.nonlabs
|
||||
},
|
||||
xnonlab: {
|
||||
get() {
|
||||
return this.$store.state.worklist.selected_nonlab
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_selected_nonlab", val)
|
||||
}
|
||||
},
|
||||
xcities() {
|
||||
return this.$store.state.worklist.cities
|
||||
},
|
||||
cityaddress: {
|
||||
get() {
|
||||
return this.$store.state.worklist.city_address
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_city_address", val)
|
||||
this.$store.dispatch("worklist/getdistrict", this.$store.state.worklist.city_address)
|
||||
}
|
||||
},
|
||||
xdoctors() {
|
||||
return this.$store.state.worklist.doctors
|
||||
},
|
||||
doctor: {
|
||||
get() {
|
||||
return this.$store.state.worklist.doctor
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_doctor", val)
|
||||
}
|
||||
},
|
||||
xinstruments() {
|
||||
return this.$store.state.worklist.instruments
|
||||
},
|
||||
xinstrument: {
|
||||
get() {
|
||||
return this.$store.state.worklist.instrument
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_instrument", val)
|
||||
}
|
||||
},
|
||||
xautotemplates() {
|
||||
return this.$store.state.worklist.autotemplates
|
||||
},
|
||||
xautotemplate: {
|
||||
get() {
|
||||
return this.$store.state.worklist.autotemplate
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_autotemplate", val)
|
||||
}
|
||||
},
|
||||
xdistricts() {
|
||||
return this.$store.state.worklist.districts
|
||||
},
|
||||
districtaddress: {
|
||||
get() {
|
||||
return this.$store.state.worklist.district_address
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_district_address", val)
|
||||
this.$store.dispatch("worklist/getkelurahan", this.$store.state.worklist.district_address)
|
||||
}
|
||||
},
|
||||
xkelurahans() {
|
||||
return this.$store.state.worklist.kelurahans
|
||||
},
|
||||
kelurahanaddress: {
|
||||
get() {
|
||||
return this.$store.state.worklist.kelurahan_address
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("worklist/update_kelurahan_address", val)
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
updateShowAll(val) {
|
||||
this.$store.commit("worklist/update_show_all", val)
|
||||
this.$store.dispatch("worklist/lookup", {
|
||||
search: this.xsearch,
|
||||
all: this.xshowall,
|
||||
lastid: -1
|
||||
})
|
||||
},
|
||||
searchWorklist() {
|
||||
this.$store.dispatch("worklist/lookup", {
|
||||
search: this.xsearch,
|
||||
all: 'Y',
|
||||
lastid: -1
|
||||
})
|
||||
},
|
||||
isSelected(p) {
|
||||
return p.id == this.$store.state.worklist.selected_worklist.id
|
||||
},
|
||||
subname(name) {
|
||||
var xname = name
|
||||
if (xname.length > 18) {
|
||||
xname = xname.substring(0, 18) + '...'
|
||||
}
|
||||
return xname
|
||||
},
|
||||
selectMe(sc) {
|
||||
this.$store.commit("worklist/update_selected_worklist", sc)
|
||||
this.$store.dispatch("detail/lookup", {
|
||||
search: '',
|
||||
id: this.$store.state.worklist.selected_worklist.id
|
||||
})
|
||||
},
|
||||
updateDialogFormWorklist() {
|
||||
this.$store.commit("worklist/update_dialog_form_worklist", false)
|
||||
},
|
||||
openFormWorklist() {
|
||||
this.worklistname = ""
|
||||
this.$store.commit("worklist/update_instruments", [])
|
||||
this.$store.commit("worklist/update_instrument", {})
|
||||
this.isrujukan = "N"
|
||||
this.$refs.formworklist.reset()
|
||||
this.$refs.formworklist.resetValidation()
|
||||
this.$store.commit("worklist/update_act", 'new')
|
||||
this.$store.commit("worklist/update_dialog_form_worklist", true)
|
||||
},
|
||||
thr_search_instrument: _.debounce(function () {
|
||||
this.$store.dispatch("worklist/searchinstrument", {
|
||||
tes: this.search_instrument
|
||||
})
|
||||
}, 2000),
|
||||
saveFormWorklist() {
|
||||
if (this.$refs.formworklist.validate()) {
|
||||
this.$store.dispatch("worklist/save", {
|
||||
name: this.worklistname,
|
||||
instrumentid: this.xinstrument ? this.$store.state.worklist.instrument.Nat_InstrumentID : 0,
|
||||
isrujukan: this.isrujukan === true ? "Y" : "N"
|
||||
})
|
||||
|
||||
}
|
||||
},
|
||||
updateFormWorklist() {
|
||||
if (this.$refs.formworklist.validate()) {
|
||||
this.$store.dispatch("worklist/update", {
|
||||
id: this.xid,
|
||||
name: this.worklistname,
|
||||
instrumentid: this.xinstrument ? this.$store.state.worklist.instrument.Nat_InstrumentID : 0,
|
||||
isrujukan: this.isrujukan === true ? "Y" : "N"
|
||||
})
|
||||
}
|
||||
},
|
||||
updateAlert_success(val) {
|
||||
this.$store.commit("worklist/update_alert_success", val)
|
||||
},
|
||||
editWorklist(data) {
|
||||
this.xid = data.id
|
||||
this.worklistname = data.name
|
||||
this.$store.commit("worklist/update_instruments", [{
|
||||
Nat_InstrumentID: data.Nat_InstrumentID,
|
||||
Nat_InstrumentName: data.Nat_InstrumentName
|
||||
}])
|
||||
this.$store.commit("worklist/update_instrument", {
|
||||
Nat_InstrumentID: data.Nat_InstrumentID,
|
||||
Nat_InstrumentName: data.Nat_InstrumentName
|
||||
})
|
||||
this.isrujukan = data.T_WorklistIsRujukan === 'N' ? false : true
|
||||
this.$store.commit("worklist/update_act", 'edit')
|
||||
this.$store.commit("worklist/update_dialog_form_worklist", true)
|
||||
},
|
||||
deleteWorklist(data) {
|
||||
this.xid = data.id
|
||||
var xdata = {
|
||||
id: data.id,
|
||||
name: data.name,
|
||||
details: 'xxx'
|
||||
}
|
||||
this.$store.commit("worklist/update_selected_worklist", xdata)
|
||||
this.msgalert = "Yakin, mau hapus worklist " + data.name + " ?"
|
||||
this.dialogdeletealert = true
|
||||
},
|
||||
changeNewWorklistType(value) {
|
||||
this.readonlytypeworklist = value === true ? true : false
|
||||
this.readonlytypeworklistnew = value === true ? false : true
|
||||
},
|
||||
newWorklistType() {
|
||||
readonlytypeworklist: true
|
||||
readonlytypeworklistnew: false
|
||||
},
|
||||
closeDeleteAlert() {
|
||||
this.$store.dispatch("worklist/delete", {
|
||||
worklistid: this.$store.state.worklist.selected_worklist.id,
|
||||
worklistname: this.$store.state.worklist.selected_worklist.name
|
||||
})
|
||||
this.dialogdeletealert = false
|
||||
},
|
||||
thr_search: _.debounce(function () {
|
||||
this.$store.dispatch("worklist/lookup", {
|
||||
search: this.xsearch,
|
||||
all: 'Y',
|
||||
lastid: -1
|
||||
})
|
||||
}, 1000)
|
||||
},
|
||||
watch: {
|
||||
xsearch(val, old) {
|
||||
console.log(val)
|
||||
this.xsearch = val
|
||||
this.thr_search()
|
||||
|
||||
},
|
||||
search_instrument(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_instrument()
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
76
test/vuex/one-md-worklist-v2/index.php
Normal file
76
test/vuex/one-md-worklist-v2/index.php
Normal file
@@ -0,0 +1,76 @@
|
||||
<!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/vuetify.min.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div v-cloak id="app">
|
||||
<v-app id="smartApp" >
|
||||
<one-navbar></one-navbar>
|
||||
<v-content class="blue lighten-5" >
|
||||
<v-container fluid fill-height class="pl-1 pr-1 pt-2 pb-2">
|
||||
<v-layout row wrap >
|
||||
<v-flex xs6 class="left" fill-height pa-1>
|
||||
<!-- komponen kiri -->
|
||||
<one-md-worklist-list></one-md-worklist-list>
|
||||
</v-flex>
|
||||
<v-flex xs6 class="right" fill-height pa-1>
|
||||
<!-- komponen kanan -->
|
||||
<one-md-detail-list></one-md-detail-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">
|
||||
import { store } from './store.js<?php echo $ts ?>';
|
||||
//for testing
|
||||
// window.store = store;
|
||||
new Vue({
|
||||
store,
|
||||
el: '#app',
|
||||
components: {
|
||||
'one-navbar': httpVueLoader('../../../apps/components/oneNavbarComponent.vue'),
|
||||
'one-footer': httpVueLoader('../../../apps/components/oneFooter.vue'),
|
||||
'one-md-worklist-list': httpVueLoader('./components/oneMdWorklistList.vue'),
|
||||
'one-md-detail-list' : httpVueLoader('./components/oneMdDetailList.vue')
|
||||
}
|
||||
})
|
||||
</script>
|
||||
<style>
|
||||
[v-cloak] {
|
||||
display: none
|
||||
}
|
||||
.left {
|
||||
}
|
||||
.right {
|
||||
}
|
||||
</style>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
531
test/vuex/one-md-worklist-v2/modules/detail.js
Normal file
531
test/vuex/one-md-worklist-v2/modules/detail.js
Normal file
@@ -0,0 +1,531 @@
|
||||
// 1 => LOADING
|
||||
// 2 => DONE
|
||||
// 3 => ERROR
|
||||
import * as api from "../api/detail.js"
|
||||
|
||||
export default {
|
||||
namespaced: true,
|
||||
state: {
|
||||
details: [],
|
||||
save_status: 0,
|
||||
save_error_message: '',
|
||||
dialog_form_detail: false,
|
||||
dialog_status_order: false,
|
||||
lookup_detail: 0,
|
||||
search_status: 0,
|
||||
errors: [],
|
||||
startdate: moment(new Date()).format('YYYY-MM-DD'),
|
||||
enddate: moment(new Date()).format('YYYY-MM-DD'),
|
||||
bases: [],
|
||||
base: {},
|
||||
omzettypes: [],
|
||||
omzettype: {},
|
||||
detailtypes: [],
|
||||
detailtype: {},
|
||||
agingtypes: [],
|
||||
agingtype: {},
|
||||
statuss: [],
|
||||
autotests:[],
|
||||
autotest:{}
|
||||
},
|
||||
mutations: {
|
||||
update_autotests(state,data){
|
||||
state.autotests = data
|
||||
},
|
||||
update_autotest(state,val){
|
||||
state.autotest = val
|
||||
},
|
||||
update_errors(state, val) {
|
||||
state.errors = val
|
||||
},
|
||||
update_details(state, data) {
|
||||
state.details = data
|
||||
},
|
||||
update_save_status(state, val) {
|
||||
state.save_status = val
|
||||
},
|
||||
update_save_error_message(state, val) {
|
||||
state.save_error_message = val
|
||||
},
|
||||
update_dialog_form_detail(state, val) {
|
||||
state.dialog_form_detail = val
|
||||
},
|
||||
update_lookup_detail(state, val) {
|
||||
state.lookup_detail = val
|
||||
},
|
||||
update_startdate(state, val) {
|
||||
state.startdate = val
|
||||
},
|
||||
update_enddate(state, val) {
|
||||
state.enddate = val
|
||||
},
|
||||
update_bases(state, data) {
|
||||
state.bases = data
|
||||
},
|
||||
update_base(state, val) {
|
||||
state.base = val
|
||||
},
|
||||
update_omzettypes(state, data) {
|
||||
state.omzettypes = data
|
||||
},
|
||||
update_omzettype(state, val) {
|
||||
state.omzettype = val
|
||||
},
|
||||
update_detailtypes(state, data) {
|
||||
state.detailtypes = data
|
||||
},
|
||||
update_detailtype(state, val) {
|
||||
state.detailtype = val
|
||||
},
|
||||
update_agingtypes(state, data) {
|
||||
state.agingtypes = data
|
||||
},
|
||||
update_agingtype(state, val) {
|
||||
state.agingtype = val
|
||||
},
|
||||
update_search_status(state, val) {
|
||||
state.search_status = val
|
||||
},
|
||||
update_statuss(state, data) {
|
||||
state.statuss = data
|
||||
},
|
||||
update_dialog_status_order(state, val) {
|
||||
state.dialog_status_order = val
|
||||
}
|
||||
},
|
||||
actions: {
|
||||
async save(context, prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
prm.token = one_token()
|
||||
let resp = await api.save(prm)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_save_status", 3)
|
||||
context.commit("update_save_error_message", resp.message)
|
||||
} else {
|
||||
var data = {
|
||||
records: resp.data.records,
|
||||
total: resp.data.total
|
||||
}
|
||||
if (data.total !== -1) {
|
||||
context.commit("update_save_status", 2)
|
||||
context.commit("update_save_error_message", resp.message)
|
||||
context.commit("worklist/update_alert_success", true, {
|
||||
root: true
|
||||
})
|
||||
|
||||
context.commit("update_dialog_form_detail", false)
|
||||
var msg = "Detail " + prm.name + " sample station " + prm.worklistname + " sudah disimpan dong"
|
||||
context.commit("worklist/update_msg_success", msg, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_alert_success", true, {
|
||||
root: true
|
||||
})
|
||||
|
||||
} else {
|
||||
context.commit("update_errors", resp.data.errors)
|
||||
}
|
||||
context.dispatch("lookup", {
|
||||
id: prm.worklistid
|
||||
})
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
context.commit("update_save_error_message", e.message)
|
||||
console.log(e)
|
||||
}
|
||||
},
|
||||
async lookupx(context, prm) {
|
||||
context.commit("update_lookup_detail", 1)
|
||||
try {
|
||||
let resp = await api.lookupx(one_token(), prm.id)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_lookup_detail", 3)
|
||||
} else {
|
||||
context.commit("update_lookup_detail", 2)
|
||||
let data = {
|
||||
records: resp.data.records,
|
||||
total: resp.data.total
|
||||
}
|
||||
context.commit("update_details", data.records)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_lookup_detail", 3)
|
||||
}
|
||||
},
|
||||
async lookup(context, prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
let resp = await api.lookup(one_token(), prm.search,prm.id)
|
||||
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)
|
||||
console.log('status')
|
||||
console.log(data.records.statuss)
|
||||
context.commit("update_statuss", data.records.statuss)
|
||||
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
}
|
||||
},
|
||||
async delete(context, prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
let resp = await api.xdelete(one_token(), prm.xid)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("worklist/update_save_status", 3, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_save_error_message", resp.message, {
|
||||
root: true
|
||||
})
|
||||
} else {
|
||||
context.commit("worklist/update_save_status", 2, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_save_error_message", resp.message, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_alert_success", true, {
|
||||
root: true
|
||||
})
|
||||
|
||||
//context.commit("update_dialog_form_schedule_promise", false)
|
||||
var msg = "Detail " + prm.name + " dari worklist " + prm.worklistname + " sudah dihapus dong"
|
||||
context.commit("worklist/update_msg_success", msg, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_alert_success", true, {
|
||||
root: true
|
||||
})
|
||||
context.dispatch("lookup", {
|
||||
search : '',
|
||||
id: prm.worklistid
|
||||
})
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
context.commit("update_save_error_message", e.message)
|
||||
console.log(e)
|
||||
}
|
||||
},
|
||||
async searchtest(context,prm) {
|
||||
context.commit("worklist/update_autocomplete_status",1,{root: true})
|
||||
try {
|
||||
let resp= await api.searchtest(one_token(), prm.tes)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("worklist/update_autocomplete_status",3,{root: true})
|
||||
} else {
|
||||
context.commit("worklist/update_autocomplete_status",2,{root: true})
|
||||
let data = {
|
||||
records : resp.data.records,
|
||||
total: resp.data.total
|
||||
}
|
||||
context.commit("update_autotests",resp.data.records)
|
||||
}
|
||||
} catch(e) {
|
||||
context.commit("worklist/update_autocomplete_status",3,{root: true})
|
||||
}
|
||||
},
|
||||
async verify(context, prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
let resp = await api.xverify(one_token(), prm.xid)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("worklist/update_save_status", 3, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_save_error_message", resp.message, {
|
||||
root: true
|
||||
})
|
||||
} else {
|
||||
context.commit("worklist/update_save_status", 2, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_save_error_message", resp.message, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_alert_success", true, {
|
||||
root: true
|
||||
})
|
||||
|
||||
//context.commit("update_dialog_form_schedule_promise", false)
|
||||
var msg = "Agreement " + prm.name + " dari worklist " + prm.worklistname + " sudah diverifikasi"
|
||||
context.commit("worklist/update_msg_success", msg, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_alert_success", true, {
|
||||
root: true
|
||||
})
|
||||
context.dispatch("lookup", {
|
||||
search : '',
|
||||
id: prm.worklistid
|
||||
})
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
context.commit("update_save_error_message", e.message)
|
||||
console.log(e)
|
||||
}
|
||||
},
|
||||
async unverify(context, prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
let resp = await api.xunverify(one_token(), prm.xid)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("worklist/update_save_status", 3, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_save_error_message", resp.message, {
|
||||
root: true
|
||||
})
|
||||
} else {
|
||||
context.commit("worklist/update_save_status", 2, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_save_error_message", resp.message, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_alert_success", true, {
|
||||
root: true
|
||||
})
|
||||
|
||||
//context.commit("update_dialog_form_schedule_promise", false)
|
||||
var msg = "Verifikasi Agreement " + prm.name + " dari worklist " + prm.worklistname + " sudah dibatalkan"
|
||||
context.commit("worklist/update_msg_success", msg, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_alert_success", true, {
|
||||
root: true
|
||||
})
|
||||
context.dispatch("lookup", {
|
||||
search : '',
|
||||
id: prm.worklistid
|
||||
})
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
context.commit("update_save_error_message", e.message)
|
||||
console.log(e)
|
||||
}
|
||||
},
|
||||
async release(context, prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
let resp = await api.xrelease(one_token(), prm.xid)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("worklist/update_save_status", 3, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_save_error_message", resp.message, {
|
||||
root: true
|
||||
})
|
||||
} else {
|
||||
context.commit("worklist/update_save_status", 2, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_save_error_message", resp.message, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_alert_success", true, {
|
||||
root: true
|
||||
})
|
||||
|
||||
//context.commit("update_dialog_form_schedule_promise", false)
|
||||
var msg = "Agreement " + prm.name + " dari worklist " + prm.worklistname + " sudah dirilis"
|
||||
context.commit("worklist/update_msg_success", msg, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_alert_success", true, {
|
||||
root: true
|
||||
})
|
||||
context.dispatch("lookup", {
|
||||
search : '',
|
||||
id: prm.worklistid
|
||||
})
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
context.commit("update_save_error_message", e.message)
|
||||
console.log(e)
|
||||
}
|
||||
},
|
||||
async unrelease(context, prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
let resp = await api.xunrelease(one_token(), prm.xid)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("worklist/update_save_status", 3, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_save_error_message", resp.message, {
|
||||
root: true
|
||||
})
|
||||
} else {
|
||||
context.commit("worklist/update_save_status", 2, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_save_error_message", resp.message, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_alert_success", true, {
|
||||
root: true
|
||||
})
|
||||
|
||||
//context.commit("update_dialog_form_schedule_promise", false)
|
||||
var msg = "Rilis Agreement " + prm.name + " dari worklist " + prm.worklistname + " sudah dibatalkan"
|
||||
context.commit("worklist/update_msg_success", msg, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_alert_success", true, {
|
||||
root: true
|
||||
})
|
||||
context.dispatch("lookup", {
|
||||
search : '',
|
||||
id: prm.worklistid
|
||||
})
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
context.commit("update_save_error_message", e.message)
|
||||
console.log(e)
|
||||
}
|
||||
},
|
||||
async selectbase(context) {
|
||||
context.commit("worklist/update_get_data_status", 1, {
|
||||
root: true
|
||||
})
|
||||
try {
|
||||
let resp = await api.selectbase(one_token())
|
||||
if (resp.status != "OK") {
|
||||
context.commit("worklist/update_get_data_status", 3, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_get_data_error_message", resp.message, {
|
||||
root: true
|
||||
})
|
||||
} else {
|
||||
context.commit("worklist/update_get_data_status", 2, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_get_data_error_message", "", {
|
||||
root: true
|
||||
})
|
||||
context.commit("update_bases", resp.data.records.bases)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("worklist/update_get_data_status", 3, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_get_data_error_message", e.message, {
|
||||
root: true
|
||||
})
|
||||
console.log(e)
|
||||
}
|
||||
},
|
||||
async selectomzettype(context) {
|
||||
context.commit("worklist/update_get_data_status", 1, {
|
||||
root: true
|
||||
})
|
||||
try {
|
||||
let resp = await api.selectomzettype(one_token())
|
||||
if (resp.status != "OK") {
|
||||
context.commit("worklist/update_get_data_status", 3, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_get_data_error_message", resp.message, {
|
||||
root: true
|
||||
})
|
||||
} else {
|
||||
context.commit("worklist/update_get_data_status", 2, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_get_data_error_message", "", {
|
||||
root: true
|
||||
})
|
||||
context.commit("update_omzettypes", resp.data.records.omzettypes)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("worklist/update_get_data_status", 3, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_get_data_error_message", e.message, {
|
||||
root: true
|
||||
})
|
||||
console.log(e)
|
||||
}
|
||||
},
|
||||
async selectdetailtype(context) {
|
||||
context.commit("worklist/update_get_data_status", 1, {
|
||||
root: true
|
||||
})
|
||||
try {
|
||||
let resp = await api.selectdetailtype(one_token())
|
||||
if (resp.status != "OK") {
|
||||
context.commit("worklist/update_get_data_status", 3, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_get_data_error_message", resp.message, {
|
||||
root: true
|
||||
})
|
||||
} else {
|
||||
context.commit("worklist/update_get_data_status", 2, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_get_data_error_message", "", {
|
||||
root: true
|
||||
})
|
||||
context.commit("update_detailtypes", resp.data.records.detailtypes)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("worklist/update_get_data_status", 3, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_get_data_error_message", e.message, {
|
||||
root: true
|
||||
})
|
||||
console.log(e)
|
||||
}
|
||||
},
|
||||
async selectagingtype(context) {
|
||||
context.commit("worklist/update_get_data_status", 1, {
|
||||
root: true
|
||||
})
|
||||
try {
|
||||
let resp = await api.selectagingtype(one_token())
|
||||
if (resp.status != "OK") {
|
||||
context.commit("worklist/update_get_data_status", 3, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_get_data_error_message", resp.message, {
|
||||
root: true
|
||||
})
|
||||
} else {
|
||||
context.commit("worklist/update_get_data_status", 2, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_get_data_error_message", "", {
|
||||
root: true
|
||||
})
|
||||
context.commit("update_agingtypes", resp.data.records.agingtypes)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("worklist/update_get_data_status", 3, {
|
||||
root: true
|
||||
})
|
||||
context.commit("worklist/update_get_data_error_message", e.message, {
|
||||
root: true
|
||||
})
|
||||
console.log(e)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
427
test/vuex/one-md-worklist-v2/modules/worklist.js
Normal file
427
test/vuex/one-md-worklist-v2/modules/worklist.js
Normal file
@@ -0,0 +1,427 @@
|
||||
// 1 => LOADING
|
||||
// 2 => DONE
|
||||
// 3 => ERROR
|
||||
import * as api from "../api/worklist.js"
|
||||
|
||||
export default {
|
||||
namespaced: true,
|
||||
state: {
|
||||
last_id: -1,
|
||||
act: 'new',
|
||||
lookup_worklist: 0,
|
||||
lookup_error_message: '',
|
||||
worklists: [],
|
||||
total_worklists: 0,
|
||||
total_filter_worklists: 0,
|
||||
selected_worklist: {
|
||||
name: "[ Belum memilih Worklist ]"
|
||||
},
|
||||
save_status: 0,
|
||||
save_error_message: '',
|
||||
dialog_form_worklist: false,
|
||||
dialog_edit_form_worklist: false,
|
||||
alert_success: false,
|
||||
msg_success: "",
|
||||
show_all: 'N',
|
||||
errors: [],
|
||||
worklisttypes: [],
|
||||
worklisttype: {},
|
||||
doctors: [],
|
||||
doctor: {},
|
||||
get_data_status: 0,
|
||||
get_data_error_message: '',
|
||||
cities: [],
|
||||
city_address: {},
|
||||
autocomplete_status: 0,
|
||||
search_status: 0,
|
||||
districts: [],
|
||||
district_address: {},
|
||||
kelurahans: [],
|
||||
kelurahan_address: {},
|
||||
instruments: [],
|
||||
instrument: {},
|
||||
autotemplates: [],
|
||||
autotemplate: {},
|
||||
nonlabs: [],
|
||||
selected_nonlab: {}
|
||||
},
|
||||
mutations: {
|
||||
update_last_id(state, val) {
|
||||
state.last_id = val
|
||||
},
|
||||
update_act(state, val) {
|
||||
state.act = val
|
||||
},
|
||||
update_errors(state, val) {
|
||||
state.errors = val
|
||||
},
|
||||
update_show_all(state, val) {
|
||||
state.show_all = val
|
||||
},
|
||||
update_lookup_error_message(state, status) {
|
||||
state.lookup_error_message = status
|
||||
},
|
||||
update_lookup_worklist(state, status) {
|
||||
state.lookup_worklist = status
|
||||
},
|
||||
update_worklists(state, data) {
|
||||
state.worklists = data.records
|
||||
state.total_worklists = data.total
|
||||
state.total_filter_worklists = data.total_filter
|
||||
},
|
||||
update_selected_worklist(state, val) {
|
||||
state.selected_worklist = val
|
||||
},
|
||||
update_save_status(state, val) {
|
||||
state.save_status = val
|
||||
},
|
||||
update_save_error_message(state, val) {
|
||||
state.save_error_message = val
|
||||
},
|
||||
update_dialog_form_worklist(state, val) {
|
||||
state.dialog_form_worklist = val
|
||||
},
|
||||
update_dialog_edit_form_worklist(state, val) {
|
||||
state.dialog_edit_form_worklist = val
|
||||
},
|
||||
update_alert_success(state, val) {
|
||||
state.alert_success = val
|
||||
},
|
||||
update_msg_success(state, val) {
|
||||
state.msg_success = val
|
||||
},
|
||||
update_worklisttypes(state, data) {
|
||||
state.worklisttypes = data
|
||||
},
|
||||
update_worklisttype(state, val) {
|
||||
state.worklisttype = val
|
||||
},
|
||||
update_doctors(state, data) {
|
||||
state.doctors = data
|
||||
},
|
||||
update_doctor(state, val) {
|
||||
state.doctor = val
|
||||
},
|
||||
update_get_data_status(state, val) {
|
||||
state.get_data_status = val
|
||||
},
|
||||
update_get_data_error_message(state, val) {
|
||||
state.get_data_error_message = val
|
||||
},
|
||||
update_cities(state, val) {
|
||||
state.cities = val
|
||||
},
|
||||
update_city_address(state, val) {
|
||||
state.city_address = val
|
||||
},
|
||||
update_autocomplete_status(state, val) {
|
||||
state.autocomplete_status = val
|
||||
},
|
||||
update_districts(state, val) {
|
||||
state.districts = val
|
||||
},
|
||||
update_district_address(state, val) {
|
||||
state.district_address = val
|
||||
},
|
||||
update_kelurahans(state, val) {
|
||||
state.kelurahans = val
|
||||
},
|
||||
update_kelurahan_address(state, val) {
|
||||
state.kelurahan_address = val
|
||||
},
|
||||
update_instruments(state, data) {
|
||||
state.instruments = data
|
||||
},
|
||||
update_instrument(state, val) {
|
||||
state.instrument = val
|
||||
},
|
||||
update_autotemplates(state, data) {
|
||||
state.autotemplates = data
|
||||
},
|
||||
update_autotemplate(state, val) {
|
||||
state.autotemplate = val
|
||||
},
|
||||
update_nonlabs(state, val) {
|
||||
state.nonlabs = val
|
||||
},
|
||||
update_selected_nonlab(state, val) {
|
||||
state.selected_nonlab = val
|
||||
}
|
||||
|
||||
|
||||
},
|
||||
actions: {
|
||||
async lookup(context, prm) {
|
||||
context.commit("update_lookup_worklist", 1)
|
||||
try {
|
||||
let resp = await api.lookup(one_token(), prm.search, prm.all)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_lookup_worklist", 3)
|
||||
context.commit("update_lookup_error_message", resp.message)
|
||||
} else {
|
||||
context.commit("update_lookup_worklist", 2)
|
||||
context.commit("update_lookup_error_message", "")
|
||||
let data = {
|
||||
records: resp.data.records,
|
||||
total: resp.data.total,
|
||||
total_filter: resp.data.total_filter
|
||||
}
|
||||
context.commit("update_worklists", data)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_lookup_worklist", 3)
|
||||
context.commit("update_lookup_error_message", e.message)
|
||||
}
|
||||
},
|
||||
async save(context, prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
prm.token = one_token()
|
||||
let resp = await api.save(prm)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_save_status", 3)
|
||||
context.commit("update_save_error_message", resp.message)
|
||||
} else {
|
||||
context.commit("update_save_status", 2)
|
||||
context.commit("update_save_error_message", resp.message)
|
||||
context.commit("update_save_error_message", resp.message)
|
||||
var data = {
|
||||
records: resp.data.records,
|
||||
total: resp.data.total
|
||||
}
|
||||
|
||||
if (data.total !== -1) {
|
||||
context.commit("update_errors", [])
|
||||
context.commit("update_alert_success", true)
|
||||
context.commit("update_dialog_form_worklist", false)
|
||||
var msg =" Sample Station " + prm.name + " sudah tersimpan dong ..."
|
||||
context.commit("update_msg_success", msg)
|
||||
context.dispatch("lookup", {
|
||||
search: "",
|
||||
all: context.show_all
|
||||
})
|
||||
} else {
|
||||
context.commit("update_errors", resp.data.errors)
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
context.commit("update_save_error_message", e.message)
|
||||
console.log(e)
|
||||
}
|
||||
},
|
||||
async update(context, prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
prm.token = one_token()
|
||||
let resp = await api.update(prm)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_save_status", 3)
|
||||
context.commit("update_save_error_message", resp.message)
|
||||
} else {
|
||||
context.commit("update_save_status", 2)
|
||||
context.commit("update_save_error_message", resp.message)
|
||||
context.commit("update_save_error_message", resp.message)
|
||||
let data = {
|
||||
records: resp.data.records,
|
||||
total: resp.data.total
|
||||
}
|
||||
|
||||
if (data.total !== -1) {
|
||||
context.commit("update_alert_success", true)
|
||||
context.commit("update_dialog_form_worklist", false)
|
||||
var msg = " Sample Station " + prm.name + " sudah terupdate dong ..."
|
||||
context.commit("update_msg_success", msg)
|
||||
context.dispatch("lookup", {
|
||||
search: "",
|
||||
all: context.show_all
|
||||
})
|
||||
}else {
|
||||
context.commit("update_errors", resp.data.errors)
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
context.commit("update_save_error_message", e.message)
|
||||
console.log(e)
|
||||
}
|
||||
},
|
||||
async delete(context, prm) {
|
||||
context.commit("update_save_status", 1)
|
||||
try {
|
||||
let resp = await api.xdelete(one_token(), prm.worklistid)
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_save_status", 3)
|
||||
context.commit("update_save_error_message", resp.message)
|
||||
} else {
|
||||
context.commit("update_save_status", 2)
|
||||
context.commit("update_save_error_message", resp.message)
|
||||
context.commit("update_alert_success", true)
|
||||
|
||||
var msg = " Sample Station " + prm.name + " sudah dihapus dong"
|
||||
context.commit("update_msg_success", msg)
|
||||
context.commit("update_alert_success", true)
|
||||
context.commit("update_selected_worklist", {})
|
||||
context.dispatch("lookup", {
|
||||
search: "",
|
||||
all: 'Y'
|
||||
})
|
||||
context.dispatch("detail/lookup", {
|
||||
id: 0
|
||||
}, { root: true })
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_save_status", 3)
|
||||
console.log(e)
|
||||
}
|
||||
},
|
||||
async selectnonlab(context) {
|
||||
context.commit("update_get_data_status", 1)
|
||||
try {
|
||||
let resp = await api.selectnonlab(one_token())
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_get_data_status", 3)
|
||||
context.commit("update_get_data_error_message", resp.message)
|
||||
} else {
|
||||
context.commit("update_get_data_status", 2)
|
||||
context.commit("update_get_data_error_message", "")
|
||||
context.commit("update_nonlabs", resp.data.records.nonlabs)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_get_data_status", 3)
|
||||
context.commit("update_get_data_error_message", e.message)
|
||||
console.log(e)
|
||||
}
|
||||
},
|
||||
async selectdoctor(context) {
|
||||
context.commit("update_get_data_status", 1)
|
||||
try {
|
||||
let resp = await api.selectdoctor(one_token())
|
||||
if (resp.status != "OK") {
|
||||
context.commit("update_get_data_status", 3)
|
||||
context.commit("update_get_data_error_message", resp.message)
|
||||
} else {
|
||||
context.commit("update_get_data_status", 2)
|
||||
context.commit("update_get_data_error_message", "")
|
||||
context.commit("update_doctors", resp.data.records.doctors)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_get_data_status", 3)
|
||||
context.commit("update_get_data_error_message", e.message)
|
||||
console.log(e)
|
||||
}
|
||||
},
|
||||
async searchcity(context, prm) {
|
||||
context.commit("update_autocomplete_status", 1)
|
||||
try {
|
||||
let resp = await api.searchcity(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_cities", resp.data.records)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_autocomplete_status", 3)
|
||||
}
|
||||
},
|
||||
async searchdoctor(context, prm) {
|
||||
context.commit("update_autocomplete_status", 1)
|
||||
try {
|
||||
let resp = await api.searchdoctor(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_doctors", resp.data.records)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_autocomplete_status", 3)
|
||||
}
|
||||
},
|
||||
async searchinstrument(context, prm) {
|
||||
context.commit("update_autocomplete_status", 1)
|
||||
try {
|
||||
let resp = await api.searchinstrument(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_instruments", resp.data.records)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_autocomplete_status", 3)
|
||||
}
|
||||
},
|
||||
async searchtemplate(context, prm) {
|
||||
context.commit("update_autocomplete_status", 1)
|
||||
try {
|
||||
let resp = await api.searchtemplate(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_autotemplates", resp.data.records)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_autocomplete_status", 3)
|
||||
}
|
||||
},
|
||||
async getdistrict(context, prm) {
|
||||
context.commit("update_get_data_status", 1)
|
||||
try {
|
||||
let resp = await api.getdistrict(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_districts", resp.data.records)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_get_data_status", 3)
|
||||
}
|
||||
},
|
||||
async getkelurahan(context, prm) {
|
||||
context.commit("update_get_data_status", 1)
|
||||
try {
|
||||
let resp = await api.getkelurahan(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_kelurahans", resp.data.records)
|
||||
}
|
||||
} catch (e) {
|
||||
context.commit("update_get_data_status", 3)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
25
test/vuex/one-md-worklist-v2/store.js
Normal file
25
test/vuex/one-md-worklist-v2/store.js
Normal file
@@ -0,0 +1,25 @@
|
||||
// State
|
||||
// data ...
|
||||
// Mutations
|
||||
//
|
||||
//
|
||||
// Actions
|
||||
import worklist from "./modules/worklist.js";
|
||||
import detail from "./modules/detail.js";
|
||||
import system from "../../../apps/modules/system/system.js";
|
||||
export const store = new Vuex.Store({
|
||||
modules: {
|
||||
worklist: worklist,
|
||||
detail: detail,
|
||||
system:system
|
||||
},
|
||||
state: {
|
||||
|
||||
},
|
||||
mutations: {
|
||||
|
||||
},
|
||||
actions: {
|
||||
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user