Initial import

This commit is contained in:
sas.fajri
2026-05-25 20:01:37 +07:00
commit 710d7c1b97
10371 changed files with 2381698 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
// API :
// search bank
// paramater : query , page , rowPerPage
const URL =
"http://lebaran.aplikasi.web.id/smartlab_api/vuex/t02/search_bank";
export async function searchBank(query, page, rowPerPage = 15) {
try {
var resp = await axios.post(URL, {
query: query,
page: page,
rowPerPage: rowPerPage
});
if (resp.status != 200) {
return {
status: "ERR",
query: query,
message: resp.statusText
};
}
let data = resp.data;
data.query = query;
return data;
} catch (e) {
return {
status: "ERR",
query: query,
message: e.message
};
}
}

View File

@@ -0,0 +1,39 @@
const URL = "/one-api/mockup/masterdata/";
export async function lookup(prm) {
try {
var resp = await axios.post(URL + 'priviledge/lookuppriviledge', 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 + 'priviledge/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
};
}
}

View File

@@ -0,0 +1,233 @@
const URL = "/one-api/mockup/masterdata/";
export async function search(token, packetname, testname, status) {
try {
var resp = await axios.post(URL + 'testfavorite/search', {
token:token,
packetnama: packetname,
testname: testname,
status: status
});
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(token) {
try {
var resp = await axios.post(URL + 'testfavorite/getsexreg',{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 save(prm) {
try {
var resp = await axios.post(URL + 'testfavorite/save',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 newtestfavorite(prm) {
try {
var resp = await axios.post(URL + 'testfavorite/newtestfavorite',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 + 'testfavorite/deletetestfavorite',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 getaddress(prm) {
try {
var resp = await axios.post(URL + 'testfavorite/getaddress',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,prm) {
try {
var resp = await axios.post(URL + 'testfavorite/searchtest',{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 searchpacket(token,search,tipe) {
try {
var resp = await axios.post(URL + 'testfavorite/searchpacket',{token:token,search:search,tipe:tipe});
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 getsubarea(token,prm) {
try {
var resp = await axios.post(URL + 'testfavorite/getsubarea',{id:prm.T_TestID,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 savenewaddress(prm) {
try {
var resp = await axios.post(URL + 'testfavorite/savenewaddress',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 saveeditaddress(prm) {
try {
var resp = await axios.post(URL + 'testfavorite/saveeditaddress',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 deleteaddress(prm) {
try {
var resp = await axios.post(URL + 'testfavorite/deleteaddress',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
};
}
}

View File

@@ -0,0 +1,20 @@
const URL = "/one-api/mockup/masterdata/";
export async function lookup(token, search,all ) {
try {
var resp = await axios.post(URL + 'priviledge/lookupusergroup', { 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
};
}
}

View File

@@ -0,0 +1,43 @@
<template>
<div>
<v-card>
<v-btn class= "button parallelogram" color="success">Pasien Dokter</v-btn>
<v-btn class= "button parallelogram" color="warning">MOU </v-btn>
<v-btn class= "button parallelogram" color="error">Kirim Hasil </v-btn>
<v-btn class= "button parallelogram" color="info"> Barcode</v-btn>
</v-card>
</div>
</template>
<style scoped>
.v-card{
text-align: center;
}
.v-btn__content{
margin-top : -10px;
}
.button {
padding: 30px 16px;
width : 20%;
text-decoration:none;
}
.parallelogram{
transform: skew(-20deg);
}
.v-btn {
word-break: break-all;
}
</style>
<script>
module.exports = {
}
</script>

View File

@@ -0,0 +1,235 @@
<template>
<div>
<v-layout>
<v-flex xs12 mb-2 style="width:100%">
<v-card>
<v-card-text>
<v-layout row>
<v-flex xs6>
<h4 class="headline">HAK AKSES HALAMAN</h4>
</v-flex>
<v-flex class="text-sm-right" xs6>
<v-btn @click="save()" color="primary">Simpan</v-btn>
</v-flex>
</v-layout>
</v-card-text>
</v-card>
</v-flex>
</v-layout>
<v-layout>
<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-flex xs12>
<v-layout row wrap>
<v-flex xs3>
<v-card class="mb-2 mr-2" v-for="(mp,index) in xpriviledges" v-if="rmod(index) === 0">
<v-card-title
dark
class="headline info pt-2 pb-2"
primary-title
style="color:white"
>
<h5 dark>{{mp.name}}</h5>
</v-card-title>
<v-card-text>
<div v-for="(p,idx) in mp.childs" :key="p.S_PrivilegeID">
<v-btn v-if="p.status === 'N' && p.S_MenuUrl !== '#'" small @click="changePriviledge(index,idx,p.status)" color="error"><v-icon left>close</v-icon>{{p.S_MenuName}}</v-btn>
<v-btn v-if="p.status === 'Y' && p.S_MenuUrl !== '#'" small @click="changePriviledge(index,idx,p.status)" color="success"><v-icon left>check</v-icon>{{p.S_MenuName}}</v-btn>
<v-btn v-if="p.S_MenuUrl === '#'" small color="info"><v-icon left>home</v-icon>{{p.S_MenuName}}</v-btn>
<div v-for="(px,indx) in p.childs" :key="px.S_PrivilegeID">
<v-btn class="ml-4" v-if="px.status === 'N'" small @click="changePriviledgeLevel2(index,idx,indx,px.status)" color="error"><v-icon left>close</v-icon>{{px.S_MenuName}}</v-btn>
<v-btn class="ml-4" v-if="px.status === 'Y'" small @click="changePriviledgeLevel2(index,idx,indx,px.status)" color="success"><v-icon left>check</v-icon>{{px.S_MenuName}}</v-btn>
</div>
</div>
</v-card-text>
</v-card>
</v-flex>
<v-flex xs3>
<v-card class="mb-2 mr-2" v-for="(mp,index) in xpriviledges" v-if="rmod(index) === 1">
<v-card-title
dark
class="headline info pt-2 pb-2"
primary-title
style="color:white"
>
<h5 dark>{{mp.name}}</h5>
</v-card-title>
<v-card-text>
<div v-for="(p,idx) in mp.childs" :key="p.S_PrivilegeID">
<v-btn v-if="p.status === 'N' && p.S_MenuUrl !== '#'" small @click="changePriviledge(index,idx,p.status)" color="error"><v-icon left>close</v-icon>{{p.S_MenuName}}</v-btn>
<v-btn v-if="p.status === 'Y' && p.S_MenuUrl !== '#'" small @click="changePriviledge(index,idx,p.status)" color="success"><v-icon left>check</v-icon>{{p.S_MenuName}}</v-btn>
<v-btn v-if="p.S_MenuUrl === '#'" small color="info"><v-icon left>home</v-icon>{{p.S_MenuName}}</v-btn>
<div v-for="(px,indx) in p.childs" :key="px.S_PrivilegeID">
<v-btn class="ml-4" v-if="px.status === 'N'" small @click="changePriviledgeLevel2(index,idx,indx,px.status)" color="error"><v-icon left>close</v-icon>{{px.S_MenuName}}</v-btn>
<v-btn class="ml-4" v-if="px.status === 'Y'" small @click="changePriviledgeLevel2(index,idx,indx,px.status)" color="success"><v-icon left>check</v-icon>{{px.S_MenuName}}</v-btn>
</div>
</div>
</v-card-text>
</v-card>
</v-flex>
<v-flex xs3>
<v-card class="mb-2 mr-2" v-for="(mp,index) in xpriviledges" v-if="rmod(index) === 2">
<v-card-title
dark
class="headline info pt-2 pb-2"
primary-title
style="color:white"
>
<h5 dark>{{mp.name}}</h5>
</v-card-title>
<v-card-text>
<div v-for="(p,idx) in mp.childs" :key="p.S_PrivilegeID">
<v-btn v-if="p.status === 'N' && p.S_MenuUrl !== '#'" small @click="changePriviledge(index,idx,p.status)" color="error"><v-icon left>close</v-icon>{{p.S_MenuName}}</v-btn>
<v-btn v-if="p.status === 'Y' && p.S_MenuUrl !== '#'" small @click="changePriviledge(index,idx,p.status)" color="success"><v-icon left>check</v-icon>{{p.S_MenuName}}</v-btn>
<v-btn v-if="p.S_MenuUrl === '#'" small color="info"><v-icon left>home</v-icon>{{p.S_MenuName}}</v-btn>
<div v-for="(px,indx) in p.childs" :key="px.S_PrivilegeID">
<v-btn class="ml-4" v-if="px.status === 'N'" small @click="changePriviledgeLevel2(index,idx,indx,px.status)" color="error"><v-icon left>close</v-icon>{{px.S_MenuName}}</v-btn>
<v-btn class="ml-4" v-if="px.status === 'Y'" small @click="changePriviledgeLevel2(index,idx,indx,px.status)" color="success"><v-icon left>check</v-icon>{{px.S_MenuName}}</v-btn>
</div>
</div>
</v-card-text>
</v-card>
</v-flex>
<v-flex xs3>
<v-card class="mb-2" v-for="(mp,index) in xpriviledges" v-if="rmod(index) === 3">
<v-card-title
dark
class="headline info pt-2 pb-2"
primary-title
style="color:white"
>
<h5 dark>{{mp.name}}</h5>
</v-card-title>
<v-card-text>
<div v-for="(p,idx) in mp.childs" :key="p.S_PrivilegeID">
<v-btn v-if="p.status === 'N' && p.S_MenuUrl !== '#'" small @click="changePriviledge(index,idx,p.status)" color="error"><v-icon left>close</v-icon>{{p.S_MenuName}}</v-btn>
<v-btn v-if="p.status === 'Y' && p.S_MenuUrl !== '#'" small @click="changePriviledge(index,idx,p.status)" color="success"><v-icon left>check</v-icon>{{p.S_MenuName}}</v-btn>
<v-btn v-if="p.S_MenuUrl === '#'" small color="info"><v-icon left>home</v-icon>{{p.S_MenuName}}</v-btn>
<div v-for="(px,indx) in p.childs" :key="px.S_PrivilegeID">
<v-btn class="ml-4" v-if="px.status === 'N'" small @click="changePriviledgeLevel2(index,idx,indx,px.status)" color="error"><v-icon left>close</v-icon>{{px.S_MenuName}}</v-btn>
<v-btn class="ml-4" v-if="px.status === 'Y'" small @click="changePriviledgeLevel2(index,idx,indx,px.status)" color="success"><v-icon left>check</v-icon>{{px.S_MenuName}}</v-btn>
</div>
</div>
</v-card-text>
</v-card>
</v-flex>
</v-layout>
</v-flex>
</v-layout>
</div>
</template>
<style scoped>
table, td, th {
border: 1px solid #ddd;
text-align: left;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
padding-top: 5px;
padding-bottom: 5px;
padding-left: 8px;
padding-right: 5px;
}
.mini-input .v-input{
margin-top: 0px;
}
.mini-input .v-input, .mini-input .v-input--selection-controls,.mini-input .v-input__slot{
margin-top: 0px;
margin-bottom:0px;
margin-left:3px;
}
.mini-input .v-messages{
min-height:0px;
}
input.fhm-input{
border: 1px solid black;
border-radius: 2px;
-webkit-box-shadow:
inset 0 0 2px rgba(0,0,0,0.1),
0 0 4px rgba(0,0,0,0.1);
-moz-box-shadow:
inset 0 0 2px rgba(0,0,0,0.1),
0 0 4px rgba(0,0,0,0.1);
box-shadow:
inset 0 0 2px rgba(0,0,0,0.1),
0 0 4px rgba(0,0,0,0.1);
padding: 2px 4px;
background: rgba(255,255,255,0.5);
margin: 0 0 1px 0;
width:30px;
text-align:center;
}
</style>
<script>
module.exports = {
data: () => ({
}),
computed: {
xpriviledges() {
return this.$store.state.priviledge.priviledges
},
dialogsuccess: {
get() {
return this.$store.state.priviledge.dialog_success
},
set(val) {
this.$store.commit("priviledge/update_dialog_success",val)
}
},
msgsuccess(){
return this.$store.state.priviledge.msg_success
}
},
methods : {
rmod(idx){
return idx % 4
},
changePriviledge(idxpar,idxchild,val){
var arrx = this.$store.state.priviledge.priviledges
arrx[idxpar]['childs'][idxchild].status = val === 'N'?'Y':'N'
arrx[idxpar]['childs'][idxchild].active = 'Y'
this.$store.commit("priviledge/update_priviledges",arrx)
this.$store.commit("usergroup/update_no_save",true)
},
changePriviledgeLevel2(idxpar,idxchild,idxchild2,val){
var arrx = this.$store.state.priviledge.priviledges
arrx[idxpar]['childs'][idxchild]['childs'][idxchild2].status = val === 'N'?'Y':'N'
arrx[idxpar]['childs'][idxchild]['childs'][idxchild2].active = 'Y'
this.$store.commit("priviledge/update_priviledges",arrx)
this.$store.commit("usergroup/update_no_save",true)
},
closeDialogSuccess(){
this.$store.commit("priviledge/update_dialog_success",false)
this.$store.dispatch("priviledge/lookup",{
id:this.$store.state.usergroup.selected_usergroup.id
})
},
save(){
var prm = this.$store.state.priviledge.priviledges
this.$store.dispatch("priviledge/save",prm)
}
}
}
</script>

View File

@@ -0,0 +1,492 @@
<template>
<div>
<v-layout class="mb-2" column>
<v-dialog v-model="dialogconfirmationdelete" 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>
{{msgconfirmationdelete}}
</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn small color="error darken-1 text-sm-left" flat @click="doDeleteData()">Hapus</v-btn>
<v-btn small color="primary darken-1 text-sm-right" flat @click="dialogconfirmationdelete = false">Batal</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
<v-card>
<v-layout row>
<v-flex xs12>
<v-subheader red--text text--lighten-1> TEST FAVORITE
<v-flex text-md-right>
<v-btn v-if="xact === 'new'" @click="saveNewTestFavorite()" small color="info">Simpan</v-btn>
<v-btn v-if="xact === 'edit'" @click="deleteData()" small color="error">Hapus</v-btn>
<v-btn v-if="xact === 'edit'" @click="saveData()" small color="primary">Simpan</v-btn>
</v-flex>
</v-subheader>
<v-divider></v-divider>
<v-layout row wrap>
<v-flex xs12 pa-2>
<v-layout row>
<v-flex xs6 pa-1>
<v-select item-text="T_FavoriteTypeName" return-object :items="xtypes" :disabled="xact === 'edit'" v-model="xtype" label="Type"></v-select>
</v-flex>
<v-flex xs6 pa-1>
</v-flex>
</v-layout>
<v-layout row>
<v-flex xs6 pa-1>
<v-autocomplete label="Test" v-model="test" :items="xtests" :disabled="this.$store.state.testfavorite.selected_type.T_FavoriteType === 'PN' || this.$store.state.testfavorite.selected_type.T_FavoriteType === 'PR'" :search-input.sync="search_test" auto-select-first no-filter
item-text="T_TestName" return-object no-data-text="Pilih Test">
<template slot="item" slot-scope="{ item }">
<v-list-tile-content>
<v-list-tile-title v-text="item.T_TestName"></v-list-tile-title>
</v-list-tile-content>
</template>
</v-autocomplete>
</v-flex>
<v-flex xs6 pa-1>
<v-autocomplete label="Paket" v-model="packet" :items="xpackets" :disabled="this.$store.state.testfavorite.selected_type.T_FavoriteType === 'PX'" :search-input.sync="search_packet" auto-select-first no-filter
item-text="T_PacketName" return-object no-data-text="Pilih Paket">
<template slot="item" slot-scope="{ item }">
<v-list-tile-content>
<v-list-tile-title v-text="item.T_PacketName"></v-list-tile-title>
</v-list-tile-content>
</template>
</v-autocomplete>
</v-flex>
</v-layout>
</v-flex>
</v-layout>
</v-flex>
</v-flex>
</v-card>
</v-layout>
<template>
<v-dialog v-model="dialogerrormsg" max-width="30%">
<v-card>
<v-card-title class="headline red en-1 pt-2 pb-2" primary-title>
<h4 style="color:#FFEBEE">Peringatan !</h4>
</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 v-html="errormsg" xs12>
</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="error" flat @click="dialogerrormsg = false">
Tutup
</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</template>
</div>
</template>
<style scoped>
table,
td,
th {
border: 1px solid #ddd;
text-align: left;
}
table {
border-collapse: collapse;
width: 100%;
}
th,
td {
padding-top: 5px;
padding-bottom: 5px;
padding-left: 8px;
padding-right: 5px;
}
.mini-input .v-input {
margin-top: 0px;
}
.mini-input .v-input,
.mini-input .v-input--selection-controls,
.mini-input .v-input__slot {
margin-top: 0px;
margin-bottom: 0px;
margin-left: 3px;
}
.mini-input .v-messages {
min-height: 0px;
}
input.fhm-input {
border: 1px solid black;
border-radius: 2px;
-webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1),
0 0 4px rgba(0, 0, 0, 0.1);
-moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1),
0 0 4px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1),
0 0 4px rgba(0, 0, 0, 0.1);
padding: 2px 4px;
background: rgba(255, 255, 255, 0.5);
margin: 0 0 1px 0;
width: 30px;
text-align: center;
}
</style>
<script>
module.exports = {
data: () => ({
dialogerrormsg: false,
errormsg: '',
search_test: '',
search_packet: '',
startdate: '',
enddate: '',
menustartdate: false,
menuenddate: false,
date: new Date().toISOString().substr(0, 10)
}),
computed: {
dialogconfirmationdelete: {
get() {
return this.$store.state.testfavorite.dialog_confirmation_delete
},
set(val) {
this.$store.commit("testfavorite/update_dialog_confirmation_delete", val)
}
},
msgconfirmationdelete() {
return this.$store.state.testfavorite.msg_confirmation_delete
},
xact() {
return this.$store.state.testfavorite.act
},
detail() {
return this.$store.state.testfavorite.selected_testfavorite
},
xtypes() {
return this.$store.state.testfavorite.types
},
xtype: {
get() {
return this.$store.state.testfavorite.selected_type
},
set(val) {
this.$store.commit("testfavorite/update_selected_type", val)
this.$store.commit("testfavorite/update_no_save", 1)
}
},
xtestfavoritename: {
get() {
return this.$store.state.testfavorite.testfavorite_name
},
set(val) {
this.$store.commit("testfavorite/update_testfavorite_name", val)
this.$store.commit("testfavorite/update_no_save", 1)
}
},
xnik: {
get() {
return this.$store.state.testfavorite.nik
},
set(val) {
this.$store.commit("testfavorite/update_nik", val)
this.$store.commit("testfavorite/update_no_save", 1)
}
},
xdob: {
get() {
return this.$store.state.testfavorite.dob
},
set(val) {
this.$store.commit("testfavorite/update_dob", val)
this.$store.commit("testfavorite/update_no_save", 1)
}
},
xsexes() {
return this.$store.state.testfavorite.sexes
},
xsex: {
get() {
return this.$store.state.testfavorite.selected_sex
},
set(val) {
this.$store.commit("testfavorite/update_selected_sex", val)
this.$store.commit("testfavorite/update_no_save", 1)
}
},
xreligions() {
return this.$store.state.testfavorite.religions
},
xreligion: {
get() {
return this.$store.state.testfavorite.selected_religion
},
set(val) {
this.$store.commit("testfavorite/update_selected_religion", val)
this.$store.commit("testfavorite/update_no_save", 1)
}
},
xphone: {
get() {
return this.$store.state.testfavorite.phone
},
set(val) {
this.$store.commit("testfavorite/update_phone", val)
this.$store.commit("testfavorite/update_no_save", 1)
}
},
xhp: {
get() {
return this.$store.state.testfavorite.hp
},
set(val) {
this.$store.commit("testfavorite/update_hp", val)
this.$store.commit("testfavorite/update_no_save", 1)
}
},
xaddress: {
get() {
return this.$store.state.testfavorite.address
},
set(val) {
this.$store.commit("testfavorite/update_address", val)
this.$store.commit("testfavorite/update_no_save", 1)
}
},
xtests() {
return this.$store.state.testfavorite.tests
},
test: {
get() {
return this.$store.state.testfavorite.test
},
set(val) {
this.$store.commit("testfavorite/update_test", val)
}
},
xpackets() {
return this.$store.state.testfavorite.packets
},
packet: {
get() {
return this.$store.state.testfavorite.packet
},
set(val) {
this.$store.commit("testfavorite/update_packet", val)
}
},
xsubareas() {
return this.$store.state.testfavorite.subareas
},
subareaaddress: {
get() {
return this.$store.state.testfavorite.subarea_address
},
set(val) {
this.$store.commit("testfavorite/update_subarea_address", val)
}
},
xpositions() {
return this.$store.state.testfavorite.positions
},
xposition: {
get() {
return this.$store.state.testfavorite.selected_position
},
set(val) {
this.$store.commit("testfavorite/update_selected_position", val)
this.$store.commit("testfavorite/update_no_save", 1)
}
},
xtimework: {
get() {
return this.$store.state.testfavorite.timework
},
set(val) {
this.$store.commit("testfavorite/update_timework", val)
this.$store.commit("testfavorite/update_no_save", 1)
}
},
xtimeworksaturday: {
get() {
return this.$store.state.testfavorite.timeworksaturday
},
set(val) {
this.$store.commit("testfavorite/update_timeworksaturday", val)
this.$store.commit("testfavorite/update_no_save", 1)
}
},
xblood: {
get() {
return this.$store.state.testfavorite.blood
},
set(val) {
this.$store.commit("testfavorite/update_blood", val)
this.$store.commit("testfavorite/update_no_save", 1)
}
},
xstudy: {
get() {
return this.$store.state.testfavorite.study
},
set(val) {
this.$store.commit("testfavorite/update_study", val)
this.$store.commit("testfavorite/update_no_save", 1)
}
},
xispacket: {
get() {
return this.$store.state.testfavorite.ispacket
},
set(val) {
this.$store.commit("testfavorite/update_ispacket", val)
this.$store.commit("testfavorite/update_no_save", 1)
}
},
startComputedDateFormatted() {
return this.formatDate(this.xstartdate)
},
xstartdate: {
get() {
return this.$store.state.testfavorite.startdate
},
set(val) {
this.$store.commit("testfavorite/update_startdate", val)
}
},
endComputedDateFormatted() {
return this.formatDate(this.xenddate)
},
xenddate: {
get() {
return this.$store.state.testfavorite.enddate
},
set(val) {
this.$store.commit("testfavorite/update_enddate", val)
}
},
},
methods: {
changeBtnFlagPacket(value) {
var newval = (value === 'Y') ? 'N' : 'Y'
this.xispacket = newval
},
changeBtnFlagDefaultPacket(value) {
var newval = (value === 'Y') ? 'N' : 'Y'
this.xdispacket = newval
},
saveData() {
var prm = {}
prm.T_FavoriteID = this.$store.state.testfavorite.selected_testfavorite.T_FavoriteID
prm.T_FavoriteType = this.$store.state.testfavorite.selected_type.T_FavoriteType
prm.T_FavoriteT_TestID = this.test.T_TestID
prm.T_FavoriteT_PacketID = this.packet.T_PacketID
prm.T_FavoriteIsPacket = this.xispacket
this.$store.dispatch("testfavorite/save", prm)
},
saveNewTestFavorite() {
var error_count = 0
var error_msg = ''
if (error_count > 0) {
this.errormsg = error_msg
this.dialogerrormsg = true
} else {
var prm = {}
var tipe = this.$store.state.testfavorite.selected_type.T_FavoriteType
if(tipe === 'PX'){
prm.T_FavoriteID = 0
prm.T_FavoriteType = this.$store.state.testfavorite.selected_type.T_FavoriteType
prm.T_FavoriteT_TestID = this.test.T_TestID
prm.T_FavoriteT_PacketID = 0
prm.T_FavoriteIsPacket = this.xispacket
this.$store.dispatch("testfavorite/newtestfavorite", prm)
} else{
prm.T_FavoriteID = 0
prm.T_FavoriteType = this.$store.state.testfavorite.selected_type.T_FavoriteType
prm.T_FavoriteT_TestID = 0
prm.T_FavoriteT_PacketID = this.packet.T_PacketID
prm.T_FavoriteIsPacket = this.xispacket
this.$store.dispatch("testfavorite/newtestfavorite", prm)
}
}
},
thr_search_test: _.debounce(function () {
this.$store.dispatch("testfavorite/searchtest", this.search_test)
}, 2000),
thr_search_packet: _.debounce(function () {
var prm = {}
prm.search = this.search_packet
prm.tipe = this.$store.state.testfavorite.selected_type.T_FavoriteType
this.$store.dispatch("testfavorite/searchpacket", prm)
}, 2000),
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')}`
},
deleteData() {
let msg = "Yakin, akan menghapus data pasien " + this.xtestfavoritename + " ?"
this.$store.commit("testfavorite/update_msg_confirmation_delete", msg)
this.$store.commit("testfavorite/update_dialog_confirmation_delete", true)
},
doDeleteData() {
var prm = {}
prm.T_FavoriteID = this.$store.state.testfavorite.selected_testfavorite.T_FavoriteID
prm.T_FavoriteName = this.xtestfavoritename
this.$store.dispatch("testfavorite/delete", prm)
}
},
watch: {
search_test(val, old) {
if (val == old) return
if (!val) return
if (val.length < 1) return
if (this.$store.state.testfavorite.update_autocomplete_status == 1) return
this.thr_search_test()
},
search_packet(val, old) {
if (val == old) return
if (!val) return
if (val.length < 1) return
if (this.$store.state.testfavorite.update_autocomplete_status == 1) return
this.thr_search_packet()
}
}
}
</script>

View File

@@ -0,0 +1,252 @@
<template>
<v-layout class="fill-height" column>
<v-dialog v-model="dialogsuccess" persistent max-width="290">
<v-card>
<v-card-title color="success" class="headline">Berhasil !</v-card-title>
<v-card-text>
{{msgsuccess}}
</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn color="green darken-1" flat @click="closeDialogSuccess">OK</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
<v-card class="mb-2 pa-2 searchbox">
<v-layout>
<v-text-field class="xs6 ma-1" label="" placeholder="Test" single-line outline v-model="testname" hide-details></v-text-field>
<v-text-field class="xs6 ma-1" label="" placeholder="Paket" single-line outline v-model="packetname" hide-details></v-text-field>
<v-select class="xs6 mini-select ma-1" :items="xstatuses"
item-text="label"
return-object
v-model="xselectedstatus"
label="Status" outline hide-details></v-select>
<v-btn class="xs3 ma-1" color="success" @click="searchTestFavorite">Cari</v-btn>
<v-btn class="xs3 ma-1" color="info" @click="setNewTestFavorite">Baru</v-btn>
</v-layout>
</v-card>
<v-card>
<v-layout row>
<v-flex xs12 pl-2 pr-2 pt-2 pb-2>
<v-data-table :headers="headers" :items="testfavorites" :loading="isLoading" :pagination.sync="pagination" 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_FavoriteTypeName}}</td>
<td class="text-xs-center pa-2" v-bind:class="{'amber lighten-4':isSelected(props.item)}" @click="selectMe(props.item)">{{ props.item.T_TestName}}</td>
<td class="text-xs-center pa-2" v-bind:class="{'amber lighten-4':isSelected(props.item)}" @click="selectMe(props.item)">{{ props.item.T_PacketName}}</td>
</template>
<template>
<div class="text-xs-center">
<v-pagination v-model="page" :length="15" :total-visible="7"></v-pagination>
</div>
</template>
</v-data-table>
</v-flex>
</v-layout>
</v-card>
<one-dialog-alert :status="openalertconfirmation" :msg="msgalertconfirmation" @forget-dialog-alert="forgetAlertConfirmation()"
@close-dialog-alert="closeAlertConfirmation()"></one-dialog-alert>
</v-layout>
</template>
<style scoped>
.searchbox .v-input.v-text-field .v-input__slot {
min-height: 60px;
}
.searchbox .v-btn {
min-height: 60px;
}
table.v-table tbody td,
table.v-table tbody th {
height: 40px;
}
table.v-table thead tr {
height: 40px;
}
</style>
<script>
module.exports = {
components: {
'one-dialog-info': httpVueLoader('../../common/oneDialogInfo.vue'),
'one-dialog-alert': httpVueLoader('../../common/oneDialogAlert.vue')
},
mounted() {
this.$store.dispatch("testfavorite/getsexreg")
this.$store.dispatch("testfavorite/search", {
testname: this.testname,
packetname: this.packetname,
status: this.xselectedstatus.value,
lastid: -1
})
},
methods: {
isSelected(p) {
return p.T_FavoriteID == this.$store.state.testfavorite.selected_testfavorite.T_FavoriteID
},
searchTestFavorite() {
this.$store.dispatch("testfavorite/search", {
testname: this.testname,
packetname: this.packetname,
status: this.xselectedstatus.value,
lastid: -1
})
},
selectMe(sta) {
if (this.$store.state.testfavorite.no_save == 0) {
this.$store.commit("testfavorite/update_selected_testfavorite", sta)
this.$store.commit("testfavorite/update_selected_type", {
T_FavoriteType: sta.T_FavoriteType,
T_FavoriteTypeName: sta.T_FavoriteTypeName
})
this.$store.commit("testfavorite/update_tests",[{T_TestID:sta.T_FavoriteT_TestID,T_TestName:sta.T_TestName}])
this.$store.commit("testfavorite/update_test",{T_TestID:sta.T_FavoriteT_TestID,T_TestName:sta.T_TestName})
this.$store.commit("testfavorite/update_packets",[{T_PacketID:sta.T_FavoriteT_PacketID,T_PacketName:sta.T_PacketName}])
this.$store.commit("testfavorite/update_packet",{T_PacketID:sta.T_FavoriteT_PacketID,T_PacketName:sta.T_PacketName})
this.$store.commit("testfavorite/update_ispacket",sta.T_FavoriteIsPacket)
this.$store.commit("testfavorite/update_act", 'edit')
} else {
this.$store.commit("testfavorite/update_open_alert_confirmation", true)
}
},
closeAlertConfirmation() {
this.$store.commit("testfavorite/update_open_alert_confirmation", false)
},
forgetAlertConfirmation() {
this.$store.commit("testfavorite/update_no_save", 0)
this.$store.commit("testfavorite/update_open_alert_confirmation", false)
},
updateAlert_success(val) {
this.$store.commit("testfavorite/update_alert_success", val)
},
setNewTestFavorite() {
this.$store.commit("testfavorite/update_selected_testfavorite", {})
this.$store.commit("testfavorite/update_selected_type", {})
this.$store.commit("testfavorite/update_testfavorite_name", '')
this.$store.commit("testfavorite/update_dob", '')
this.$store.commit("testfavorite/update_selected_sex", {})
this.$store.commit("testfavorite/update_address", '')
this.$store.commit("testfavorite/update_test", {})
this.$store.commit("testfavorite/update_subarea_address", {})
this.$store.commit("testfavorite/update_phone", '')
this.$store.commit("testfavorite/update_hp", '')
this.$store.commit("testfavorite/update_selected_religion", {})
this.$store.commit("testfavorite/update_startdate", '')
this.$store.commit("testfavorite/update_enddate", '')
this.$store.commit("testfavorite/update_selected_position", {})
this.$store.commit("testfavorite/update_nik", '')
this.$store.commit("testfavorite/update_timework", '')
this.$store.commit("testfavorite/update_timeworksaturday", '')
this.$store.commit("testfavorite/update_blood", '')
this.$store.commit("testfavorite/update_study", '')
this.$store.commit("testfavorite/update_act", 'new')
},
closeDialogSuccess() {
let arrtestfavorite = this.$store.state.testfavorite.testfavorites
var idx = _.findIndex(arrtestfavorite, item => item.T_FavoriteID === this.$store.state.testfavorite.last_id)
console.log(idx)
this.$store.dispatch("testfavorite/search", {
testname: this.testname,
packetname: this.packetname,
status: this.xselectedstatus.value,
lastid: idx
})
this.$store.commit("testfavorite/update_dialog_success", false)
}
},
computed: {
dialogsuccess: {
get() {
return this.$store.state.testfavorite.dialog_success
},
set(val) {
this.$store.commit("testfavorite/update_dialog_success", val)
}
},
msgsuccess() {
return this.$store.state.testfavorite.msg_success
},
snackbar: {
get() {
return this.$store.state.testfavorite.alert_success
},
set(val) {
this.$store.commit("testfavorite/update_alert_success", val)
}
},
isLoading() {
return this.$store.state.testfavorite.search_status == 1
},
xstatuses() {
return this.$store.state.testfavorite.statuses
},
xselectedstatus: {
get() {
return this.$store.state.testfavorite.selected_status
},
set(val) {
this.$store.commit("testfavorite/update_selected_status", val)
}
},
testfavorites() {
return this.$store.state.testfavorite.testfavorites
},
openalertconfirmation: {
get() {
return this.$store.state.testfavorite.open_alert_confirmation
},
set(val) {
this.$store.commit("testfavorite/update_open_alert_confirmation", val)
}
}
},
data() {
return {
msgalertconfirmation: "Perubahan yang telah dilakukan belum disimpan dong !",
items: [],
testname: '',
packetname: '',
page: 1,
headers: [{
text: "TIPE",
align: "left",
sortable: false,
value: "mr",
width: "10%",
class: "pa-2 blue lighten-3 white--text"
},
{
text: "TEST",
align: "center",
sortable: false,
value: "lab",
width: "30%",
class: "pa-2 blue lighten-3 white--text"
},
{
text: "PAKET",
align: "center",
sortable: false,
value: "name",
width: "30%",
class: "pa-2 blue lighten-3 white--text"
}
],
pagination: {
descending: false,
page: 1,
rowsPerPage: 5,
sortBy: 'T_FavoriteName',
totalItems: this.$store.state.testfavorite.total_testfavorites
}
};
}
}
</script>

View File

@@ -0,0 +1,310 @@
<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>
</template>
<v-flex xs12 >
<v-card class="scroll-container" style="/*max-height:645px;overflow: auto;*/">
<v-toolbar color="blue lighten-3" dark height="50px">
<v-toolbar-title>USERGROUP</v-toolbar-title>
<v-spacer></v-spacer>
</v-toolbar>
<v-snackbar
v-model="snackbar"
:color="color"
: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-center>
<v-list-tile >
<input type="text" v-model="xsearch" class="textinput" placeholder="Cari ..."/>
</v-list-tile-content>
</v-list-tile>
</v-layout>
<v-divider></v-divider>
<div style="overflow: auto;max-height:550px">
<div v-for="(vs,index) in vusergroups">
<v-layout pa-2 v-if="isSelected(vs)" row>
<v-flex xs12 @click="selectMe(vs)" >
<v-layout row>
<v-flex class="boxsolid" xs12>
<v-tooltip right>
<template v-slot:activator="{ on }">
<span v-on="on">{{subname(vs.name)}}</span>
</template>
<span>{{vs.name}}</span>
</v-tooltip>
</v-flex>
</v-layout>
</v-flex>
</v-layout>
<v-layout pa-2 v-if="!isSelected(vs)" row>
<v-flex xs12 @click="selectMe(vs)" >
<v-layout row>
<v-flex class="boxoutline" xs12>
<v-tooltip right>
<template v-slot:activator="{ on }">
<span v-on="on">{{subname(vs.name)}}</span>
</template>
<span>{{vs.name}}</span>
</v-tooltip>
</v-flex>
</v-layout>
</v-flex>
</v-layout>
<v-divider></v-divider>
</div>
</div>
<v-layout row>
<v-flex class="text-xs-center" pt-3 xs12>
<p style="margin-bottom:2px;color: rgba(0,0,0,0.54);font-size:12px;" >Menampilkan <span class="red--text">{{xtotalfilterusergroups}}</span> dari <span class="red--text">{{xtotalusergroups}}</span> total data</p>
<v-btn small v-if="xshowall === 'N'" flat @click="updateShowAll('Y')" color="primary" dark>Tampilkan Semua</v-btn>
<v-btn small v-if="xshowall === 'Y'" flat @click="updateShowAll('N')" color="primary" dark>Batasi data</v-btn>
</v-flex>
</v-layout>
</v-card>
</v-flex>
<one-dialog-alert :status="openalertconfirmation" :msg="msgalertconfirmation" @forget-dialog-alert="forgetAlertConfirmation()" @close-dialog-alert="closeAlertConfirmation()"></one-dialog-alert>
</v-layout>
</template>
<style scoped>
.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-dialog-alert':httpVueLoader('../../common/oneDialogAlert.vue')
},
data: () => ({
color:"success",
valid:false,
schedulename:'',
nameRules: [
v => !!v || 'Nama Schedule harus diisi'
],
dialogdeletealert:false,
msgalert:"",
xid:0,
xsearch:"",
msgalertconfirmation:"Perubahan yang telah dilakukan belum disimpan dong !"
}),
mounted() {
this.$store.dispatch("usergroup/lookup",{search:this.xsearch,all:this.xshowall})
},
computed: {
xact() {
return this.$store.state.usergroup.act
},
xshowall() {
return this.$store.state.usergroup.show_all
},
vusergroups() {
return this.$store.state.usergroup.usergroups
},
xtotalusergroups(){
return this.$store.state.usergroup.total_usergroups
},
xtotalfilterusergroups(){
return this.$store.state.usergroup.total_filter_usergroups
},
snackbar: {
get() {
return this.$store.state.usergroup.alert_success
},
set(val) {
this.$store.commit("usergroup/update_alert_success",val)
}
},
msgsnackbar(){
return this.$store.state.usergroup.msg_success
},
openalertconfirmation: {
get() {
return this.$store.state.usergroup.open_alert_confirmation
},
set(val) {
this.$store.commit("usergroup/update_open_alert_confirmation",val)
}
}
},
methods : {
updateShowAll(val){
this.$store.commit("usergroup/update_show_all",val)
this.$store.dispatch("usergroup/lookup",{search:this.xsearch,all:this.xshowall})
},
isSelected(p) {
return p.id == this.$store.state.usergroup.selected_usergroup.id
},
subname(name){
var xname = name
if(xname.length > 15){
xname = xname.substring(0, 12)+'...'
}
return xname
},
selectMe(sc) {
var xnosave = this.$store.state.usergroup.no_save
if(!xnosave){
this.$store.commit("usergroup/update_selected_usergroup",sc)
this.$store.dispatch("priviledge/lookup",{
id:this.$store.state.usergroup.selected_usergroup.id
})
}
else{
this.$store.commit("usergroup/update_open_alert_confirmation",true)
}
},
closeAlertConfirmation(){
this.$store.commit("usergroup/update_open_alert_confirmation",false)
},
forgetAlertConfirmation(){
this.$store.commit("usergroup/update_no_save",0)
this.$store.commit("usergroup/update_open_alert_confirmation",false)
},
updateAlert_success(val){
this.$store.commit("usergroup/update_alert_success",val)
},
thr_search: _.debounce( function () {
this.$store.dispatch("usergroup/lookup",{search:this.xsearch,all:this.xshowall})
},1000)
},
watch: {
xsearch(val,old) {
if ( val !== old && this.lookupstatus !== 1){
console.log(val)
this.xsearch = val
this.thr_search()
}
}
}
}
</script>

View File

@@ -0,0 +1,78 @@
<!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 xs2 class="left" fill-height pa-1>
<!-- komponen kiri -->
<one-md-usergroup-list></one-md-usergroup-list>
</v-flex>
<v-flex xs10 class="right" fill-height pa-1>
<one-md-priviledge></one-md-priviledge>
</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-usergroup-list': httpVueLoader('./components/oneMdUsergroupList.vue'),
'one-md-priviledge': httpVueLoader('./components/oneMdPriviledge.vue')
}
})
</script>
<style>
[v-cloak] {
display: none
}
.left {
}
.right {
}
</style>
</body>
</html>

View File

@@ -0,0 +1,91 @@
// 1 => LOADING
// 2 => DONE
// 3 => ERROR
import * as api from "../api/priviledge.js"
export default {
namespaced: true,
state: {
act:'new',
lookup_priviledge: 0,
lookup_error_message: '',
priviledges: [],
save_status: 0,
save_error_message: '',
dialog_success: false,
msg_success: ""
},
mutations: {
update_act(state, val) {
state.act = val
},
update_lookup_error_message(state, status) {
state.lookup_error_message = status
},
update_lookup_priviledge(state, status) {
state.lookup_priviledge = status
},
update_priviledges(state, data) {
state.priviledges = data
},
update_selected_priviledge(state, val) {
state.selected_priviledge = val
},
update_save_status(state, val) {
state.save_status = val
},
update_save_error_message(state, val) {
state.save_error_message = val
},
update_dialog_success(state, val) {
state.dialog_success = val
},
update_msg_success(state, val) {
state.msg_success = val
}
},
actions: {
async lookup(context, prm) {
context.commit("update_lookup_priviledge", 1)
try {
prm.token = one_token()
let resp = await api.lookup(prm)
if (resp.status != "OK") {
context.commit("update_lookup_priviledge", 3)
context.commit("update_lookup_error_message", resp.message)
} else {
context.commit("update_lookup_priviledge", 2)
context.commit("update_lookup_error_message", "")
let data = {
records: resp.data.records
}
context.commit("update_priviledges", data.records)
}
} catch (e) {
context.commit("update_lookup_priviledge", 3)
context.commit("update_lookup_error_message", e.message)
}
},
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)
context.commit("update_save_error_message", resp.message)
} else {
context.commit("update_save_status", 2)
context.commit("update_save_error_message", "")
context.commit("update_dialog_success", true)
var msg = "Data sudah terupdate dong ..."
context.commit("update_msg_success", msg)
context.commit("usergroup/update_no_save", false, { root: true })
}
} catch (e) {
context.commit("update_save_status", 3)
context.commit("update_save_error_message", e.message)
}
}
}
}

View File

@@ -0,0 +1,521 @@
// 1 => LOADING
// 2 => DONE
// 3 => ERROR
import * as api from "../api/testfavorite.js"
export default {
namespaced: true,
state: {
last_id:-1,
last_saved_id:-1,
x_addr_id:0,
act:'edit',
act_addr:'new',
get_data_status:0,
search_testfavorite: 0,
search_status: 0,
statuses:[{label:'Test', value:'PX'},{label:'Paket Panel', value:'PN'},{label:'Paket Profil', value:'PR'}],
selected_status:{label:'Test', value:'PX'},
search_error_message: '',
dobs:[],
selected_dob:{},
dob: '',
testfavorite_name:'',
testfavorites: [],
total_testfavorites:0,
sexes:[],
selected_sex:{},
address:'',
tests: [],
test: {},
packets: [],
packet: {},
subareas: [],
subarea_address: {},
phone:'',
hp:'',
types:[],
selected_type:{},
religions:[],
selected_religion:{},
startdate:'',
enddate:'',
positions:[],
selected_position:{},
nik:'',
timework:'',
timeworksaturday:'',
blood:'',
study:'',
ispacket:'N',
total_testfavorite: 0,
selected_testfavorite: {},
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_delete_addr: false,
msg_confirmation_delete_addr: "",
autocomplete_status:0,
dialog_form_address: false,
errors:[]
},
mutations: {
update_x_addr_id(state, val) {
state.x_addr_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_addr(state, val) {
state.act_addr = val
},
update_get_data_status(state, val) {
state.get_data_status = val
},
update_search_error_message(state, patient) {
state.search_error_message = patient
},
update_search_testfavorite(state, testfavorite) {
state.search_testfavorite = testfavorite
},
update_testfavorite_name(state, val) {
state.testfavorite_name = val
},
update_testfavorites(state, data) {
state.testfavorites = data
},
update_selected_testfavorite(state, val) {
state.selected_testfavorite = val
},
update_dob(state, val) {
state.dob = val
},
update_sexes(state, val) {
state.sexes = val
},
update_selected_sex(state, val) {
state.selected_sex = val
},
update_address(state, val) {
state.address = val
},
update_tests(state, val) {
state.tests = val
},
update_test(state, val) {
state.test = val
},
update_packets(state, val) {
state.packets = val
},
update_packet(state, val) {
state.packet = val
},
update_subareas(state, val) {
state.subareas = val
},
update_subarea_address(state, val) {
state.subarea_address = val
},
update_phone(state, val) {
state.phone = val
},
update_hp(state, val) {
state.hp = val
},
update_religions(state, val) {
state.religions = val
},
update_selected_religion(state, val) {
state.selected_religion = val
},
update_types(state, val) {
state.types = val
},
update_selected_type(state, val) {
state.selected_type = val
},
update_startdate(state, val) {
state.startdate = val
},
update_enddate(state, val) {
state.enddate = val
},
update_positions(state, val) {
state.positions = val
},
update_selected_position(state, val) {
state.selected_position = val
},
update_nik(state, val) {
state.nik = val
},
update_timework(state, val) {
state.timework = val
},
update_timeworksaturday(state, val) {
state.timeworksaturday = val
},
update_blood(state, val) {
state.blood = val
},
update_study(state, val) {
state.study = val
},
update_ispacket(state, val) {
state.ispacket = 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_delete_addr(state, val) {
state.dialog_confirmation_delete_addr = val
},
update_msg_confirmation_delete_addr(state, val) {
state.msg_confirmation_delete_addr = val
},
update_addresses(state, val) {
state.addresses = val
},
update_autocomplete_status(state,val){
state.autocomplete_status = val
},
update_dialog_form_address(state, val) {
state.dialog_form_address = val
},
update_label_address(state, val) {
state.label_address = val
},
update_search_status(state, val) {
state.search_status = val
},
update_errors(state, val) {
state.errors = val
},
update_total_testfavorites(state, val) {
state.total_testfavorites = val
},
update_selected_status(state, val) {
state.selected_status = val
}
},
actions: {
async search(context, prm) {
context.commit("update_search_testfavorite", 1)
try {
let resp = await api.search(one_token(), prm.packetname, prm.testname, prm.status)
if (resp.status != "OK") {
context.commit("update_search_testfavorite", 3)
context.commit("update_search_error_message", resp.message)
} else {
context.commit("update_search_testfavorite", 2)
context.commit("update_search_error_message", "")
let data = {
records: resp.data.records,
total: resp.data.total
}
context.commit("update_testfavorites", data.records)
context.commit("update_total_testfavorites", data.total)
context.commit("update_no_save", 0)
if(prm.lastid === -1){
context.commit("update_selected_testfavorite", data.records[0])
var sta = data.records[0]
context.commit("update_selected_type",{T_FavoriteType:sta.T_FavoriteType,T_FavoriteTypeName:sta.T_FavoriteTypeName})
context.commit("update_tests",[{T_TestID:sta.T_FavoriteT_TestID,T_TestName:sta.T_TestName}])
context.commit("update_test",{T_TestID:sta.T_FavoriteT_TestID,T_TestName:sta.T_TestName})
context.commit("update_packets",[{T_PacketID:sta.T_FavoriteT_PacketID,T_PacketName:sta.T_PacketName}])
context.commit("update_packet",{T_PacketID:sta.T_FavoriteT_PacketID,T_PacketName:sta.T_PacketName})
context.commit("update_ispacket",sta.T_FavoriteIsPacket)
}
else{
context.commit("update_selected_testfavorite", data.records[prm.lastid])
var sta = data.records[prm.lastid]
context.commit("update_selected_type",{T_FavoriteType:sta.T_FavoriteType,T_FavoriteTypeName:sta.T_FavoriteTypeName})
context.commit("update_tests",[{T_TestID:sta.T_FavoriteT_TestID,T_TestName:sta.T_TestName}])
context.commit("update_test",{T_TestID:sta.T_FavoriteT_TestID,T_TestName:sta.T_TestName})
context.commit("update_packets",[{T_PacketID:sta.T_FavoriteT_PacketID,T_PacketName:sta.T_PacketName}])
context.commit("update_packet",{T_PacketID:sta.T_FavoriteT_PacketID,T_PacketName:sta.T_PacketName})
context.commit("update_ispacket",sta.T_FavoriteIsPacket)
}
}
} catch (e) {
context.commit("update_search_testfavorite", 3)
context.commit("update_search_error_message", e.message)
console.log(e)
}
},
async getsexreg(context) {
context.commit("update_get_data_status",1)
try {
let resp= await api.getsexreg(one_token())
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_sexes",data.records.sexes)
context.commit("update_religions",data.records.religions)
context.commit("update_types",data.records.types)
context.commit("update_positions",data.records.positions)
}
} catch(e) {
context.commit("update_get_data_status",3)
}
},
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)
} else {
context.commit("update_save_status",2)
context.commit("update_last_id", prm.T_FavoriteID)
context.commit("update_dialog_success", true)
var msg = "Data telah diubah"
context.commit("update_msg_success", msg)
}
} catch(e) {
context.commit("update_save_status",3)
}
},
async newtestfavorite(context,prm) {
context.commit("update_save_status",1)
try {
prm.token = one_token()
let resp= await api.newtestfavorite(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 telah tersimpan"
context.commit("update_msg_success", msg)
}
} 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 karyawan " + prm.T_FavoriteName + " sudah dihapus dong ..."
context.commit("update_msg_success", msg)
context.commit("update_selected_type", {})
context.commit("update_testfavorite_name", '')
context.commit("update_dob", '')
context.commit("update_selected_sex", {})
context.commit("update_address", '')
context.commit("update_test", {})
context.commit("update_subarea_address", {})
context.commit("update_phone", '')
context.commit("update_hp", '')
context.commit("update_selected_religion", {})
context.commit("update_startdate", '')
context.commit("update_enddate", '')
context.commit("update_selected_position", {})
context.commit("update_nik", '')
context.commit("update_timework", '')
context.commit("update_timeworksaturday", '')
context.commit("update_blood", '')
context.commit("update_study", '')
context.commit("update_ispacket",'N')
}
} catch(e) {
context.commit("update_save_status",3)
}
},
async getaddress(context,prm) {
context.commit("update_save_status",1)
try {
prm.token = one_token()
let resp= await api.getaddress(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_addresses",data.records)
}
} catch(e) {
context.commit("update_save_status",3)
}
},
async searchtest(context,prm) {
context.commit("update_autocomplete_status",1)
try {
let resp= await api.searchtest(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_tests",resp.data.records)
}
} catch(e) {
context.commit("update_autocomplete_status",3)
}
},
async searchpacket(context,prm) {
context.commit("update_autocomplete_status",1)
try {
let resp= await api.searchpacket(one_token(),prm.search,prm.tipe)
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_packets",resp.data.records)
}
} catch(e) {
context.commit("update_autocomplete_status",3)
}
},
async getsubarea(context,prm) {
context.commit("update_get_data_status",1)
try {
let resp= await api.getsubarea(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_subareas",resp.data.records)
}
} catch(e) {
context.commit("update_get_data_status",3)
}
},
async savenewaddress(context,prm) {
context.commit("update_save_status",1)
try {
prm.token = one_token()
let resp= await api.savenewaddress(prm)
if (resp.status != "OK") {
context.commit("update_save_status",3)
} else {
context.commit("update_save_status",2)
context.commit("update_dialog_form_address",false)
context.commit("update_last_id", prm.T_FavoriteAddressT_FavoriteID)
context.commit("update_dialog_success", true)
var msg = "Penambahan data alamat karyawan " + prm.T_FavoriteName + " sudah berhasil dong ..."
context.commit("update_msg_success", msg)
}
} catch(e) {
context.commit("update_save_status",3)
}
},
async saveeditaddress(context,prm) {
context.commit("update_save_status",1)
try {
prm.token = one_token()
let resp= await api.saveeditaddress(prm)
if (resp.status != "OK") {
context.commit("update_save_status",3)
} else {
context.commit("update_save_status",2)
context.commit("update_dialog_form_address",false)
context.commit("update_last_id", prm.T_FavoriteAddressT_FavoriteID)
context.commit("update_dialog_success", true)
var msg = "Perubahan data alamat karyawan " + prm.T_FavoriteName + " sudah berhasil dong ..."
context.commit("update_msg_success", msg)
}
} catch(e) {
context.commit("update_save_status",3)
}
},
async deleteaddress(context,prm) {
context.commit("update_save_status",1)
try {
prm.token = one_token()
let resp= await api.deleteaddress(prm)
if (resp.status != "OK") {
context.commit("update_save_status",3)
} else {
context.commit("update_save_status",2)
context.commit("update_dialog_confirmation_delete_addr",false)
context.commit("update_last_id", prm.T_FavoriteAddressT_FavoriteID)
context.commit("update_dialog_success", true)
var msg = "Penghapusan data alamat "+prm.T_FavoriteAddressNote+" dari karyawan " + prm.T_FavoriteName + " sudah berhasil dong ..."
context.commit("update_msg_success", msg)
}
} catch(e) {
context.commit("update_save_status",3)
}
}
}
}

View File

@@ -0,0 +1,98 @@
// 1 => LOADING
// 2 => DONE
// 3 => ERROR
import * as api from "../api/usergroup.js"
export default {
namespaced: true,
state: {
act:'new',
lookup_usergroup: 0,
lookup_error_message: '',
usergroups: [],
total_usergroups: 0,
total_filter_usergroups: 0,
selected_usergroup: { name: "[ Belum memilih Grup User ]" },
save_status: 0,
save_error_message: '',
dialog_form_usergroup: false,
dialog_edit_form_usergroup:false,
alert_success: false,
msg_success: "",
show_all:'N',
no_save:false,
open_alert_confirmation:false
},
mutations: {
update_act(state, val) {
state.act = val
},
update_show_all(state, val) {
state.show_all = val
},
update_lookup_error_message(state, status) {
state.lookup_error_message = status
},
update_lookup_usergroup(state, status) {
state.lookup_usergroup = status
},
update_usergroups(state, data) {
state.usergroups = data.records
state.total_usergroups = data.total
state.total_filter_usergroups = data.total_filter
},
update_selected_usergroup(state, val) {
state.selected_usergroup = val
},
update_save_status(state, val) {
state.save_status = val
},
update_save_error_message(state, val) {
state.save_error_message = val
},
update_dialog_form_usergroup(state, val) {
state.dialog_form_usergroup = val
},
update_dialog_edit_form_usergroup(state, val) {
state.dialog_edit_form_usergroup = val
},
update_alert_success(state, val) {
state.alert_success = val
},
update_msg_success(state, val) {
state.msg_success = val
},
update_no_save(state, val) {
state.no_save = val
},
update_open_alert_confirmation(state, val) {
state.open_alert_confirmation = val
}
},
actions: {
async lookup(context, prm) {
context.commit("update_lookup_usergroup", 1)
try {
let resp = await api.lookup(one_token(), prm.search, prm.all)
if (resp.status != "OK") {
context.commit("update_lookup_usergroup", 3)
context.commit("update_lookup_error_message", resp.message)
} else {
context.commit("update_lookup_usergroup", 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_usergroups", data)
context.commit("update_selected_usergroup", data.records[0])
context.dispatch("priviledge/lookup",{id:data.records[0].id}, { root: true })
}
} catch (e) {
context.commit("update_lookup_usergroup", 3)
context.commit("update_lookup_error_message", e.message)
}
}
}
}

View File

@@ -0,0 +1,25 @@
// State
// data ...
// Mutations
//
//
// Actions
import usergroup from "./modules/usergroup.js";
import priviledge from "./modules/priviledge.js";
import system from "../../../apps/modules/system/system.js";
export const store = new Vuex.Store({
modules: {
usergroup: usergroup,
priviledge:priviledge,
system: system
},
state: {
},
mutations: {
},
actions: {
}
});