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,318 @@
const URL = "/one-api/one_mitra/masterdata/";
export async function lookup(prm) {
try {
var resp = await axios.post(URL + 'userv2/lookup', 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 lookupbymou(prm) {
try {
var resp = await axios.post(URL + 'userv2/lookupcompanybymou', 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 lookupbydistrict(prm) {
try {
var resp = await axios.post(URL + 'userv2/lookupcompanybydistrict', 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 lookupbykelurahan(prm) {
try {
var resp = await axios.post(URL + 'userv2/lookupcompanybykelurahan', 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 lookupbyname(prm) {
try {
var resp = await axios.post(URL + 'userv2/lookupcompanybyname', 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(prm) {
try {
var resp = await axios.post(URL + 'userv2/addnewuser', 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 + 'userv2/edituser', 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 + 'userv2/deleteuser', { 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 + 'userv2/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 searchdoctor(token,prm) {
try {
var resp = await axios.post(URL + 'userv2/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 + 'userv2/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 + 'userv2/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 + 'userv2/getdistrict',{id:prm.M_AntibioticID,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 + 'userv2/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
};
}
}
export async function searchcompany(prm) {
try {
var resp = await axios.post(URL + 'userv2/searchcompany',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 get_regional(prm) {
try {
var resp = await axios.post(URL + 'userv2/get_regional', 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 searchmou(prm) {
try {
var resp = await axios.post(URL + 'userv2/searchmou',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,186 @@
const URL = "/one-api/one_mitra/masterdata/";
export async function save(prm) {
try {
var resp = await axios.post(URL + 'userv2/addnewusermou', 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 + 'userv2/updateusermou', 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 + 'userv2/deletemou', { 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 searchcompany(prm) {
try {
var resp = await axios.post(URL + 'userv2/searchcompany',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 searchcity(prm) {
try {
var resp = await axios.post(URL + 'userv2/searchcity',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 searchdistrict(prm) {
try {
var resp = await axios.post(URL + 'userv2/searchdistrict',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 searchkelurahan(prm) {
try {
var resp = await axios.post(URL + 'userv2/searchkelurahan',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 lookupbyname(prm) {
try {
var resp = await axios.post(URL + 'userv2/lookupmoubyname', 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 lookupbyidname(prm) {
try {
var resp = await axios.post(URL + 'userv2/lookupmoubyidname', 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 searchmou(prm) {
try {
var resp = await axios.post(URL + 'userv2/searchmoualias',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,785 @@
<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="dialogcompany" persistent max-width="600px">
<v-card>
<v-card-title>
<span class="headline">FORM COMPANY</span></v-card-title>
<v-card-text class="pt-0 pb-0">
<v-form ref="formcompany" v-model="valid" lazy-validation>
<v-layout wrap>
<v-flex xs12>
<v-autocomplete label="Company*" v-model="xcompany" :items="vcompany"
:search-input.sync="search_company" auto-select-first no-filter
item-text="M_CompanyName" return-object no-data-text="Cari Company" small
:rules="companyRules" required>
<template slot="item" slot-scope="{ item }">
<v-list-tile-content>
<v-list-tile-title v-text="item.M_CompanyName"></v-list-tile-title>
</v-list-tile-content>
</template>
</v-autocomplete>
</v-flex>
<v-flex xs12>
<v-flex xs12>
<v-autocomplete v-if="xact === 'new'" label="Agreement*" v-model="vmou"
:items="xmoussearch" :search-input.sync="search_mou"
auto-select-first no-filter item-text="M_MouName" return-object
no-data-text="Pilih Company dulu" small :rules="mouRules" required>
<template slot="item" slot-scope="{ item }">
<v-list-tile-content>
<v-list-tile-title
v-text="item.M_MouName"></v-list-tile-title>
</v-list-tile-content>
</template>
</v-autocomplete>
</v-flex>
</v-flex>
<v-flex xs12>
<v-select v-model="xregional" :items="vregional" item-text="S_RegionalName"
item-value="S_RegionalID" return-object label="Regional*" :rules="regionalRules" required>
</v-select>
</v-flex>
<v-flex xs12>
<v-text-field v-model="xname" label="Username*" :rules="xnameRules"
required></v-text-field>
</v-flex>
<v-flex xs12>
<v-text-field v-if="xact === 'new'" type="password" v-model="xpassword" label="Password*"
:rules="xpasswordRules" required></v-text-field>
</v-flex>
<v-flex xs12>
<v-text-field v-if="xact === 'new'" type="password" v-model="xpasswordconfirm"
label="Konfirmasi Password*" :rules="xpasswordconfirmRules"
required></v-text-field>
</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="updateDialogFormCompany()">Tutup</v-btn>
<v-btn v-if="xact === 'new'" color="blue darken-1" flat
@click="saveFormCompany()">Simpan</v-btn>
<v-btn v-if="xact === 'edit'" color="blue darken-1" flat @click="updateFormCompany()">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>USER MITRA</v-toolbar-title>
<v-spacer></v-spacer>
<v-btn @click="openFormCompany(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="vcompanys" :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.M_UserUsername }}</td>
<td class="text-xs-left pa-2"
v-bind:class="{ 'amber lighten-4': isSelected(props.item) }"
@click="selectMe(props.item)">{{ props.item.M_CompanyName }}</td>
<td class="text-xs-left pa-2"
v-bind:class="{ 'amber lighten-4': isSelected(props.item) }"
@click="selectMe(props.item)">{{ props.item.S_RegionalName }}</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="editCompany(props.item)">edit</v-icon>
<v-icon small class="ml-3" color="error"
@click="deleteCompany(props.item)">clear</v-icon>
</td>
</template>
</v-data-table>
</v-flex>
</v-layout>
<v-divider></v-divider>
<v-pagination style="margin-top:10px;margin-bottom:10px" v-model="curr_page"
:length="xtotal_page"></v-pagination>
</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,
search_instrument: '',
items: [],
xname: '',
xpassword: '',
xpasswordconfirm: '',
xnameRules: [
v => !!v || 'User harus diisi'
],
xpasswordRules: [
v => !!v || 'Password harus diisi'
],
xpasswordconfirmRules: [
v => !!v || 'Konfirmasi Password harus diisi'
],
companyRules: [
v => !!v || 'Company harus dipilih'
],
regionalRules: [
v => !!v || 'Regional harus dipilih'
],
mouRules: [
v => !!v || 'Agreement harus dipilih'
],
name: '',
isdefault: false,
scode: '',
search_doctor: '',
search_testheader: '',
search_template: '',
page: 1,
search_company: '',
search_mou: '',
headers: [{
text: "USERNAME",
align: "left",
sortable: false,
value: "mr",
width: "30%",
class: "pa-2 blue lighten-3 white--text"
},
{
text: "COMPANY",
align: "left",
sortable: false,
value: "mr",
width: "30%",
class: "pa-2 blue lighten-3 white--text"
},
{
text: "REGIONAL",
align: "left",
sortable: false,
value: "mr",
width: "30%",
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: true,
page: 1,
rowsPerPage: 100,
sortBy: 'id DESC',
totalItems: this.$store.state.company.total_filter_companys
}
};
},
mounted() {
this.$store.dispatch("company/lookupbyname", {
search: this.xsearch,
current_page: 1,
lastid: -1
})
this.$store.dispatch("company/get_regional")
},
computed: {
xmoussearch() {
return this.$store.state.company.mous_search
},
xact() {
return this.$store.state.company.act
},
xerrors() {
return this.$store.state.company.errors
},
xshowall() {
return this.$store.state.company.show_all
},
vcompanys() {
return this.$store.state.company.companys
},
xtotalcompanys() {
return this.$store.state.company.total_companys
},
xtotalfiltercompanys() {
return this.$store.state.company.total_filter_companys
},
vmou: {
get() {
return this.$store.state.company.vmou
},
set(val) {
this.$store.commit("company/update_vmou", val)
}
},
xsearch: {
get() {
return this.$store.state.company.x_search
},
set(val) {
this.$store.commit("company/update_x_search", val)
}
},
curr_page: {
get() {
return this.$store.state.company.current_page
},
set(val) {
this.$store.commit("company/update_current_page", val)
this.$store.dispatch("company/lookupbyname", {
search: this.xsearch,
current_page: val,
lastid: -1
})
}
},
xtotal_page: {
get() {
return this.$store.state.company.total_companys
},
set(val) {
this.$store.commit("company/update_total_companys", val)
}
},
dialogcompany() {
return this.$store.state.company.dialog_form_company
},
snackbar: {
get() {
return this.$store.state.company.alert_success
},
set(val) {
this.$store.commit("company/update_alert_success", val)
}
},
msgsnackbar() {
return this.$store.state.company.msg_success
},
lookupstatus() {
return this.$store.state.company.lookup_company
},
vcompany() {
return this.$store.state.company.vcompany
},
xcompany: {
get() {
return this.$store.state.company.xcompany
},
set(val) {
this.$store.commit("company/update_xcompany", val)
}
},
vregional() {
return this.$store.state.company.vregional
},
xregional: {
get() {
return this.$store.state.company.xregional
},
set(val) {
this.$store.commit("company/update_xregional", val)
}
},
xcompanytypes() {
return this.$store.state.company.companytypes
},
xcompanytype: {
get() {
return this.$store.state.company.companytype
},
set(val) {
this.$store.commit("company/update_companytype", val)
}
},
isLoading() {
return this.$store.state.company.search_status == 1
},
xnonlabs() {
return this.$store.state.company.nonlabs
},
xnonlab: {
get() {
return this.$store.state.company.selected_nonlab
},
set(val) {
this.$store.commit("company/update_selected_nonlab", val)
}
},
xcities() {
return this.$store.state.company.cities
},
mouaddress: {
get() {
return this.$store.state.company.mou_address
},
set(val) {
this.$store.commit("company/update_mou_address", val)
this.$store.dispatch("company/getdistrict", this.$store.state.company.mou_address)
}
},
xdoctors() {
return this.$store.state.company.doctors
},
doctor: {
get() {
return this.$store.state.company.doctor
},
set(val) {
this.$store.commit("company/update_doctor", val)
}
},
xinstruments() {
return this.$store.state.company.instruments
},
xinstrument: {
get() {
return this.$store.state.company.instrument
},
set(val) {
this.$store.commit("company/update_instrument", val)
}
},
xautotemplates() {
return this.$store.state.company.autotemplates
},
xautotemplate: {
get() {
return this.$store.state.company.autotemplate
},
set(val) {
this.$store.commit("company/update_autotemplate", val)
}
},
xdistricts() {
return this.$store.state.company.districts
},
districtaddress: {
get() {
return this.$store.state.company.district_address
},
set(val) {
this.$store.commit("company/update_district_address", val)
this.$store.dispatch("company/getkelurahan", this.$store.state.company.district_address)
}
},
xkelurahans() {
return this.$store.state.company.kelurahans
},
kelurahanaddress: {
get() {
return this.$store.state.company.kelurahan_address
},
set(val) {
this.$store.commit("company/update_kelurahan_address", val)
}
}
},
methods: {
updateShowAll(val) {
this.$store.commit("company/update_show_all", val)
this.$store.dispatch("company/lookupbyname", {
search: this.xsearch,
current_page: this.curr_page,
lastid: -1
})
},
searchCompany() {
this.$store.dispatch("company/lookup", {
search: this.xsearch,
current_page: 1,
lastid: -1
})
},
isSelected(p) {
return p.id == this.$store.state.company.selected_company.id
},
subname(name) {
var xname = name
if (xname.length > 18) {
xname = xname.substring(0, 18) + '...'
}
return xname
},
selectMe(sc) {
this.$store.commit("mou/update_current_page", 1)
this.$store.commit("company/update_selected_company", sc)
this.$store.dispatch("mou/lookupbyidname", {
id: this.$store.state.company.selected_company.id,
search: '',
current_page: 1,
lastid: -1
})
this.$store.commit("company/update_vcompany", [{
M_CompanyID: this.$store.state.company.selected_company.M_CompanyID,
M_CompanyName: this.$store.state.company.selected_company.M_CompanyName
}])
this.$store.commit("company/update_xcompany", {
M_CompanyID: this.$store.state.company.selected_company.M_CompanyID,
M_CompanyName: this.$store.state.company.selected_company.M_CompanyName
})
},
updateDialogFormCompany() {
this.$store.commit("company/update_dialog_form_company", false)
this.$store.commit("company/update_errors", [])
},
openFormCompany() {
this.$refs.formcompany.reset()
this.$refs.formcompany.resetValidation()
this.$store.commit("company/update_act", 'new')
this.$store.commit("company/update_dialog_form_company", true)
},
thr_search_mou: _.debounce(function () {
this.$store.dispatch("company/searchmou", {
companyId: this.$store.state.company.xcompany.M_CompanyID,
search: this.search_mou
})
}, 2000),
thr_search_company: _.debounce(function () {
this.$store.dispatch("company/searchcompany", {
search: this.search_company
})
}, 2000),
thr_search_instrument: _.debounce(function () {
this.$store.dispatch("company/searchinstrument", {
tes: this.search_instrument
})
}, 2000),
saveFormCompany() {
if (this.$refs.formcompany.validate()) {
this.$store.dispatch("company/save", {
companyId: this.xcompany.M_CompanyID,
mouId: this.vmou.M_MouID,
regionalId: this.xregional.S_RegionalID,
username: this.xname,
password: this.xpassword,
confirm_password: this.xpasswordconfirm,
search: this.xsearch
})
}
},
updateFormCompany() {
if (this.$refs.formcompany.validate()) {
this.$store.dispatch("company/update", {
Id: this.xid,
companyId: this.xcompany.M_CompanyID,
mouId: this.vmou.M_MouID,
regionalId: this.xregional.S_RegionalID,
username: this.xname,
search: this.xsearch
})
}
},
updateAlert_success(val) {
this.$store.commit("company/update_alert_success", val)
},
editCompany(data) {
this.xid = data.id
this.$store.commit("company/update_xcompany", {
M_CompanyID: data.M_CompanyID,
M_CompanyName: data.M_CompanyName
})
this.$store.commit("company/update_vcompany", [{
M_CompanyID: data.M_CompanyID,
M_CompanyName: data.M_CompanyName
}])
// this.$store.commit("company/update_vmou", {
// M_MouID: data.M_MouID,
// M_MouName: data.M_MouName
// })
// this.$store.commit("company/update_mous_search", [{
// M_MouID: data.M_MouID,
// M_MouName: data.M_MouName
// }])
this.$store.commit("company/update_xregional", {
S_RegionalID: data.S_RegionalID,
S_RegionalName: data.S_RegionalName
})
this.$store.commit("company/update_vregional", [{
S_RegionalID: data.S_RegionalID,
S_RegionalName: data.S_RegionalName
}])
this.xname = data.M_UserUsername
this.$store.commit("company/update_act", 'edit')
this.$store.commit("company/update_dialog_form_company", true)
},
deleteCompany(data) {
this.xid = data.id
var xdata = {
id: data.id,
username: data.M_UserUsername,
}
this.$store.commit("company/update_selected_company", xdata)
this.msgalert = "Yakin, mau hapus user " + data.M_UserUsername + " ?"
this.dialogdeletealert = true
},
changeNewCompanyType(value) {
this.readonlytypecompany = value === true ? true : false
this.readonlytypecompanynew = value === true ? false : true
},
newCompanyType() {
readonlytypecompany: true
readonlytypecompanynew: false
},
closeDeleteAlert() {
this.$store.dispatch("company/delete", {
Id: this.$store.state.company.selected_company.id,
username: this.$store.state.company.selected_company.username,
search: this.xsearch
})
this.dialogdeletealert = false
},
thr_search: _.debounce(function () {
this.$store.dispatch("company/lookupbyname", {
search: this.xsearch,
current_page: 1,
lastid: -1
})
}, 1000)
},
watch: {
xsearch(val, old) {
this.xsearch = val
this.thr_search()
},
search_company(val, old) {
if (val == old) return
if (!val) return
if (val.length < 1) return
if (this.$store.state.company.update_autocomplete_status == 1) return
this.thr_search_company()
},
search_mou(val, old) {
if (val == old) return
if (!val) return
if (val.length < 1) return
if (this.$store.state.company.update_autocomplete_status == 1) return
this.thr_search_mou()
},
search_instrument(val, old) {
if (val == old) return
if (!val) return
if (val.length < 1) return
if (this.$store.state.company.update_autocomplete_status == 1) return
this.thr_search_instrument()
}
}
}
</script>

View File

@@ -0,0 +1,916 @@
<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>AGREEMENT [{{ xcompany.M_UserUsername }}]</v-toolbar-title>
<v-spacer></v-spacer>
<v-btn @click="openFormMou(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="mous" :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.M_MouName }}
<span v-if="props.item.M_UserMouIsDefault === 'Y'">
<!-- <v-chip outline color="primary">Default</v-chip> -->
<v-icon color="green">check_circle</v-icon>
</span>
</td>
<td class="text-xs-left pa-2"
v-bind:class="{ 'amber lighten-4': isSelected(props.item) }"
@click="selectMe(props.item)">
{{ props.item.M_UserMouAliasName }}
</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="editFormMou(props.item)">edit</v-icon>
<v-icon small class="ml-3" color="error"
@click="deleteFormMou(props.item)">clear</v-icon>
</td>
</template>
</v-data-table>
</v-flex>
</v-layout>
<v-divider></v-divider>
<v-pagination style="margin-top:10px;margin-bottom:10px" v-model="curr_page"
:length="xtotal_page"></v-pagination>
<template>
<v-layout row justify-center>
<v-dialog v-model="dialogmou" persistent max-width="850px">
<v-card>
<v-card-title>
<span class="headline">FORM AGREEMENT {{ this.$store.state.mou.selected_mou.M_MouName }} </span>
</v-card-title>
<v-card-text class="pt-0 pb-0">
<v-form ref="formcompanymou" v-model="validmou" lazy-validation>
<v-layout wrap>
<v-flex xs12>
<v-flex xs12>
<v-autocomplete v-if="xact === 'new'" label="Agreement*" v-model="vmou"
:items="xmoussearch" :search-input.sync="search_mou"
auto-select-first no-filter item-text="M_MouName" return-object
no-data-text="Cari Agreement" small :rules="mouRules" required>
<template slot="item" slot-scope="{ item }">
<v-list-tile-content>
<v-list-tile-title
v-text="item.M_MouName"></v-list-tile-title>
</v-list-tile-content>
</template>
</v-autocomplete>
</v-flex>
</v-flex>
<v-flex xs12>
<v-text-field v-model="xname" label="Agreement Alias*"
:rules="xnameRules" required></v-text-field>
</v-flex>
<v-flex xs12>
<v-checkbox v-if="xact === 'edit'" v-model="isdefault" label="IsDefault"></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="updateDialogFormMou()">Tutup</v-btn>
<v-btn v-if="xact === 'new'" color="blue darken-1" flat
@click="saveFormMou()">Simpan</v-btn>
<v-btn v-if="xact === 'edit'" color="blue darken-1" flat @click="updateFormMou()">Simpan
Perubahan</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="dialogdeletealertmou" 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>
{{ msgalertmou }}
</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="dialogdeletealertmou = false">
Tutup
</v-btn>
<v-btn color="primary" flat @click="closeDeleteAlertMou()">
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',
readonlydefault: true,
page: 1,
xphone: '',
xcode: '',
xaddress: '',
xipaddress: '',
xbasename: '',
isdefault: false,
search_company: '',
search_mou: '',
search_city: '',
search_district: '',
search_kelurahan: '',
mouRules: [
v => !!v || 'Agreement harus dipilih'
],
xnameRules: [
v => !!v || 'Nama harus diisi'
],
xcodeRules: [
v => !!v || 'Kode harus diisi'
],
addressRules: [
v => !!v || 'Alamat harus diisi'
],
xipaddressRules: [
v => !!v || 'Alamat IP harus diisi'
],
companyRules: [
v => !!v || 'Company harus dipilih'
],
cityRules: [
v => !!v || 'Kota harus dipilih'
],
districtRules: [
v => !!v || 'Kecamatan harus dipilih'
],
kelurahanRules: [
v => !!v || 'Kelurahan harus dipilih'
],
headers: [{
text: "AGREEMENT",
align: "left",
sortable: false,
value: "name",
width: "40%",
class: "blue lighten-3 white--text"
},
{
text: "AGREEMENT (ALIAS)",
align: "left",
sortable: false,
value: "name",
width: "40%",
class: "blue lighten-3 white--text"
},
{
text: "AKSI",
align: "left",
sortable: false,
value: "status",
width: "20%",
class: "blue lighten-3 white--text"
}
],
pagination: {
descending: false,
page: 1,
rowsPerPage: 100,
sortBy: 'T_MouName ASC',
totalItems: this.$store.state.mou.total_transactions
},
statuss: [{
waktu: '16-07-2019 10:00',
status: 'Order Dibuat',
mou: 'Nagita Slavina'
},
{
waktu: '16-07-2019 11:00',
status: 'Order Dikirim',
mou: 'Nagita Slavina'
},
{
waktu: '16-07-2019 12:00',
status: 'Order dikonfirmasi',
mou: 'Chacha Frederica'
},
{
waktu: '16-07-2019 13:00',
status: 'Telah dibuat Surat Jalan',
mou: 'Chacha Frederica'
},
{
waktu: '16-07-2019 14:00',
status: 'Kurir akan mengambil sampel',
mou: 'Satria Subiantoro'
}
],
color: "success",
validmou: false,
xid: 0,
isinput: "N",
countprice: 0,
moumouid: 0,
mouxname: "",
moulang: "",
moutext: "",
isadvance: "N",
mouformatadvance: "",
issenttocompany: "N",
menustartdate: false,
menuenddate: false,
date: new Date().toISOString().substr(0, 10),
dialogdeletealertmou: false,
dialogverifyalertmou: false,
dialogreleasealertmou: false,
alertverify: false,
dialogunreleasealertmou: false,
dialogunverifyalertmou: false,
msgalertmou: ""
};
},
mounted() { },
computed: {
mous() {
return this.$store.state.mou.mous
},
xmoussearch() {
return this.$store.state.mou.mous_search
},
xcompany() {
return this.$store.state.company.selected_company
},
dialogmou() {
return this.$store.state.mou.dialog_form_mou
},
xerrors() {
return this.$store.state.mou.errors
},
isLoading() {
return this.$store.state.mou.search_status == 1
},
startComputedDateFormatted() {
return this.formatDate(this.xstartdate)
},
xact() {
return this.$store.state.mou.act
},
xstartdate: {
get() {
return this.$store.state.mou.startdate
},
set(val) {
this.$store.commit("mou/update_startdate", val)
}
},
endComputedDateFormatted() {
return this.formatDate(this.xenddate)
},
xenddate: {
get() {
return this.$store.state.mou.enddate
},
set(val) {
this.$store.commit("mou/update_enddate", val)
}
},
xname: {
get() {
return this.$store.state.mou.name
},
set(val) {
this.$store.commit("mou/update_name", val)
}
},
xminvalueR: {
get() {
return this.$store.state.mou.minvalueR
},
set(val) {
this.$store.commit("mou/update_minvalueR", val)
}
},
xmaxvalueR: {
get() {
return this.$store.state.mou.maxvalueR
},
set(val) {
this.$store.commit("mou/update_maxvalueR", val)
}
},
isminvalueinclusiveR: {
get() {
return this.$store.state.mou.isminvalueinclusiveR
},
set(val) {
this.$store.commit("mou/update_isminvalueinclusiveR", val)
}
},
ismaxvalueinclusiveR: {
get() {
return this.$store.state.mou.ismaxvalueinclusiveR
},
set(val) {
this.$store.commit("mou/update_ismaxvalueinclusiveR", val)
}
},
xnoteR: {
get() {
return this.$store.state.mou.noteR
},
set(val) {
this.$store.commit("mou/update_noteR", val)
}
},
xminvalueS: {
get() {
return this.$store.state.mou.minvalueS
},
set(val) {
this.$store.commit("mou/update_minvalueS", val)
}
},
xmaxvalueS: {
get() {
return this.$store.state.mou.maxvalueS
},
set(val) {
this.$store.commit("mou/update_maxvalueS", val)
}
},
isminvalueinclusiveS: {
get() {
return this.$store.state.mou.isminvalueinclusiveS
},
set(val) {
this.$store.commit("mou/update_isminvalueinclusiveS", val)
}
},
ismaxvalueinclusiveS: {
get() {
return this.$store.state.mou.ismaxvalueinclusiveS
},
set(val) {
this.$store.commit("mou/update_ismaxvalueinclusiveS", val)
}
},
xnoteS: {
get() {
return this.$store.state.mou.noteS
},
set(val) {
this.$store.commit("mou/update_noteS", val)
}
},
xminvalueI: {
get() {
return this.$store.state.mou.minvalueI
},
set(val) {
this.$store.commit("mou/update_minvalueI", val)
}
},
xmaxvalueI: {
get() {
return this.$store.state.mou.maxvalueI
},
set(val) {
this.$store.commit("mou/update_maxvalueI", val)
}
},
isminvalueinclusiveI: {
get() {
return this.$store.state.mou.isminvalueinclusiveI
},
set(val) {
this.$store.commit("mou/update_isminvalueinclusiveI", val)
}
},
ismaxvalueinclusiveI: {
get() {
return this.$store.state.mou.ismaxvalueinclusiveI
},
set(val) {
this.$store.commit("mou/update_ismaxvalueinclusiveI", val)
}
},
xnoteI: {
get() {
return this.$store.state.mou.noteI
},
set(val) {
this.$store.commit("mou/update_noteI", val)
}
},
xmoutypes() {
return this.$store.state.mou.moutypes
},
xmoutype: {
get() {
return this.$store.state.mou.moutype
},
set(val) {
this.$store.commit("mou/update_moutype", val)
}
},
xagingtypes() {
return this.$store.state.mou.agingtypes
},
xagingtype: {
get() {
return this.$store.state.mou.agingtype
},
set(val) {
this.$store.commit("mou/update_agingtype", val)
}
},
xstatuss() {
return this.$store.state.mou.statuss
},
dialogstatusorder() {
return this.$store.state.mou.dialog_status_order
},
xautocompanys() {
return this.$store.state.mou.autocompanys
},
xautocompany: {
get() {
return this.$store.state.mou.autocompany
},
set(val) {
this.$store.commit("mou/update_autocompany", val)
}
},
xsearch: {
get() {
return this.$store.state.mou.x_search
},
set(val) {
this.$store.commit("mou/update_x_search", val)
}
},
curr_page: {
get() {
return this.$store.state.mou.current_page
},
set(val) {
this.$store.commit("mou/update_current_page", val)
this.$store.dispatch("mou/lookupbyidname", {
id: this.$store.state.company.selected_company.id,
search: this.xsearch,
current_page: val,
lastid: -1
})
}
},
xtotal_page: {
get() {
return this.$store.state.mou.total_data
},
set(val) {
this.$store.commit("mou/update_total_data", val)
}
},
vmou: {
get() {
return this.$store.state.mou.vmou
},
set(val) {
this.$store.commit("mou/update_vmou", val)
}
}
},
methods: {
isSelected(p) {
return p.id == this.$store.state.mou.selected_mou.id
},
selectMe(sc) {
this.$store.commit("mou/update_selected_mou", sc)
},
updateDialogFormMou() {
this.$store.commit("mou/update_dialog_form_mou", false)
},
updateDialogStatusOrder() {
this.$store.commit("mou/update_dialog_status_order", false)
},
setStatusOrder(val) {
this.$store.commit("mou/update_mous", {})
this.$store.commit("mou/update_dialog_status_order", true)
this.$store.commit("mou/update_statuss", val.statuss)
},
doPriceList(val) {
console.log(location)
var id = val.id
location.replace("/one-ui/company/vuex/one-md-price/" + "?id=" + id)
},
doPrice() {
console.log(location)
var id = this.xid
location.replace("/one-ui/company/vuex/one-md-price/" + "?id=" + id)
},
thr_search_company: _.debounce(function () {
this.$store.dispatch("mou/searchcompany", {
tes: this.search_company
})
}, 2000),
thr_search_mou: _.debounce(function () {
this.$store.dispatch("mou/searchmou", {
companyId: this.$store.state.company.selected_company.M_CompanyID,
muserId: this.$store.state.company.selected_company.id,
search: this.search_mou
})
}, 2000),
thr_search_city: _.debounce(function () {
this.$store.dispatch("mou/searchcity", {
search: this.search_city
})
}, 2000),
thr_search_district: _.debounce(function () {
this.$store.dispatch("mou/searchdistrict", {
search: this.search_district,
id: this.xautocity.M_CityID
})
}, 2000),
thr_search_kelurahan: _.debounce(function () {
this.$store.dispatch("mou/searchkelurahan", {
search: this.search_kelurahan,
id: this.xautodistrict.M_DistrictID
})
}, 2000),
thr_search: _.debounce(function () {
/* this.$store.dispatch("company/lookupbyname", {
company: this.$store.state.company.x_search,
mou: this.xsearch,
current_page: 1,
lastid: -1
})
this.$store.dispatch("mou/lookupbyname", {
company: this.$store.state.company.x_search,
mou: this.xsearch,
current_page: 1,
lastid: -1
})
*/
this.$store.dispatch("mou/lookupbyidname", {
id: this.$store.state.company.selected_company.id,
search: this.xsearch,
current_page: 1,
lastid: -1
})
}, 1000),
searchCompany() {
this.$store.dispatch("mou/lookup", {
id: this.xcompany.name === "" ? "0" : this.$store.state.company.selected_company
.id,
search: this.xsearch,
current_page: 1,
lastid: -1
})
},
doPrint() {
console.log('doprint')
this.printwidth = 1028
this.printtitle = ""
let mou = one_mou()
var id = this.xid
var d = new Date();
var n = d.getTime()
var rptname = 'company_price'
var formatrpt = this.formatreport
this.urlprint = "/birt/run?__report=report/one/md/" + rptname +
".rptdesign&__format=" +
formatrpt + "&PMouID=" + id + "&mouxname=" + mou.T_MouMouname +
"&tm=" + n
this.openprint = true
},
closePrint() {
this.openprint = false
},
openFormMou(val) {
this.xid = val
this.$refs.formcompanymou.reset()
this.$refs.formcompanymou.resetValidation()
this.$store.commit("mou/update_act", 'new')
this.$store.commit("mou/update_dialog_form_mou", true)
},
editFormMou(val) {
// console.log(val)
this.xid = val.id
this.$store.commit("mou/update_mous_search", [{
M_MouID: val.M_MouID,
M_MouName: val.M_MouName
}])
this.$store.commit("mou/update_vmou", {
M_MouID: val.M_MouID,
M_MouName: val.M_MouName
})
// this.vmou = val.M_MouID
this.xname = val.M_UserMouAliasName
this.isdefault = val.M_UserMouIsDefault === 'N' ? false : true
this.$store.commit("mou/update_act", 'edit')
this.$store.commit("mou/update_dialog_form_mou", true)
},
updateFormMou() {
if (this.$refs.formcompanymou.validate()) {
this.$store.dispatch("mou/update", {
isdefault: this.isdefault === true ? "Y" : "N",
muserId: this.$store.state.company.selected_company.id,
usermoId: this.$store.state.company.selected_company.M_UserM_MouID,
mouId: this.$store.state.mou.selected_mou.M_MouID,
id: this.xid,
name: this.xname,
search: this.xsearch
})
}
},
checkError(value) {
var errors = this.$store.state.mou.errors
if (errors.includes(value)) {
return true
} else {
return false
}
},
saveFormMou() {
if (this.$refs.formcompanymou.validate()) {
this.$store.dispatch("mou/save", {
id: this.xid,
muserId: this.$store.state.company.selected_company.id,
mouId: this.vmou.M_MouID,
name: this.xname,
search: this.xsearch
})
}
},
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("company/update_alert_success", val)
},
deleteFormMou(data) {
this.xid = data.id
this.msgalertmou = "Yakin, mau hapus mou ini?"
this.dialogdeletealertmou = true
},
closeDeleteAlertMou() {
this.$store.dispatch("mou/delete", {
muserId: this.$store.state.company.selected_company.id,
xid: this.xid,
name: this.xname,
search: this.xsearch
})
this.dialogdeletealertmou = false
}
},
watch: {
xsearch(val, old) {
console.log(val)
this.xsearch = val
this.thr_search()
},
search_company(val, old) {
if (val == old) return
if (!val) return
if (val.length < 1) return
if (this.$store.state.mou.update_autocomplete_status == 1) return
this.thr_search_company()
},
search_mou(val, old) {
if (val == old) return
if (!val) return
if (val.length < 1) return
if (this.$store.state.mou.update_autocomplete_status == 1) return
this.thr_search_mou()
},
search_city(val, old) {
if (val == old) return
if (!val) return
if (val.length < 1) return
if (this.$store.state.mou.update_autocomplete_status == 1) return
this.thr_search_city()
},
search_district(val, old) {
if (val == old) return
if (!val) return
if (val.length < 1) return
if (this.$store.state.mou.update_autocomplete_status == 1) return
this.thr_search_district()
},
search_kelurahan(val, old) {
if (val == old) return
if (!val) return
if (val.length < 1) return
if (this.$store.state.mou.update_autocomplete_status == 1) return
this.thr_search_kelurahan()
}
}
}
</script>

View File

@@ -0,0 +1,77 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>One</title>
<link rel="stylesheet" href="../../libs/vendor/css/google-fonts.css">
<link rel="stylesheet" href="../../libs/vendor/css/icomoon-fonts.css">
<link rel="stylesheet" href="../../libs/vendor/css/vuetify.min.css">
</head>
<body>
<div v-cloak id="app">
<v-app id="smartApp" >
<one-navbar></one-navbar>
<v-content 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-company-list></one-md-company-list>
</v-flex>
<v-flex xs6 class="left" fill-height pa-1>
<!-- komponen kiri -->
<one-md-mou-list></one-md-mou-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/oneNavbarComponentNoMenu.vue'),
'one-footer': httpVueLoader('../../apps/components/oneFooter.vue'),
'one-md-company-list': httpVueLoader('./components/oneMdCompanyList.vue'),
'one-md-mou-list' : httpVueLoader('./components/oneMdMouList.vue')
}
})
</script>
<style>
[v-cloak] {
display: none
}
.left {
}
.right {
}
</style>
</body>
</html>

View File

@@ -0,0 +1,603 @@
// 1 => LOADING
// 2 => DONE
// 3 => ERROR
import * as api from "../api/company.js"
export default {
namespaced: true,
state: {
last_id: -1,
act: 'new',
lookup_company: 0,
lookup_error_message: '',
companys: [],
total_companys: 0,
total_filter_companys: 0,
selected_company: {
name: "Belum Pilih Company"
},
save_status: 0,
save_error_message: '',
dialog_form_company: false,
dialog_edit_form_company: false,
alert_success: false,
msg_success: "",
show_all: 'N',
errors: [],
companytypes: [],
companytype: {},
doctors: [],
doctor: {},
get_data_status: 0,
get_data_error_message: '',
cities: [],
mou_address: {},
autocomplete_status: 0,
search_status: 0,
districts: [],
district_address: {},
kelurahans: [],
kelurahan_address: {},
instruments: [],
instrument: {},
autotemplates: [],
autotemplate: {},
nonlabs: [],
selected_nonlab: {},
current_page:1,
x_search: '',
vcompany: [],
xcompany: {},
vregional: [],
xregional: {},
mous_search: [],
vmou:{},
},
mutations: {
update_vmou(state, val) {
state.vmou = val
},
update_mous_search(state, val) {
state.mous_search = val
},
update_xcompany(state, val) {
state.xcompany = val
},
update_vcompany(state, val) {
state.vcompany = val
},
update_xregional(state, val) {
state.xregional = val
},
update_vregional(state, val) {
state.vregional = val
},
update_x_search(state, val) {
state.x_search = val
},
update_current_page(state, val) {
state.current_page = val
},
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_company(state, status) {
state.lookup_company = status
},
update_companys(state, data) {
state.companys = data.records
state.total_companys = data.total
state.total_filter_companys = data.total_filter
},
update_selected_company(state, val) {
state.selected_company = val
},
update_save_status(state, val) {
state.save_status = val
},
update_save_error_message(state, val) {
state.save_error_message = val
},
update_dialog_form_company(state, val) {
state.dialog_form_company = val
},
update_dialog_edit_form_company(state, val) {
state.dialog_edit_form_company = val
},
update_alert_success(state, val) {
state.alert_success = val
},
update_msg_success(state, val) {
state.msg_success = val
},
update_companytypes(state, data) {
state.companytypes = data
},
update_companytype(state, val) {
state.companytype = 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_mou_address(state, val) {
state.mou_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 searchmou(context, prm) {
context.commit("update_autocomplete_status", 1)
try {
prm.token = one_token()
let resp = await api.searchmou(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_mous_search", resp.data.records)
}
} catch (e) {
context.commit("update_autocomplete_status", 3)
}
},
async get_regional(context) {
context.commit("update_lookup_company", 1)
try {
var prm = {token: one_token()}
let resp = await api.get_regional(prm)
if (resp.status != "OK") {
context.commit("update_lookup_company", 3)
} else {
context.commit("update_lookup_company", 2)
let data = {
records: resp.data.records,
total: resp.data.total
}
context.commit("update_vregional", resp.data.records)
}
} catch (e) {
context.commit("update_lookup_company", 3)
}
},
async searchcompany(context,prm) {
context.commit("update_autocomplete_status",1)
try {
prm.token = one_token()
let resp= await api.searchcompany(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_vcompany",resp.data.records)
}
} catch(e) {
context.commit("update_autocomplete_status",3)
}
},
async lookup(context, prm) {
context.commit("update_lookup_company", 1)
try {
prm.token = one_token()
let resp = await api.lookup(prm)
if (resp.status != "OK") {
context.commit("update_lookup_company", 3)
context.commit("update_lookup_error_message", resp.message)
} else {
context.commit("update_lookup_company", 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_companys", data)
}
} catch (e) {
context.commit("update_lookup_company", 3)
context.commit("update_lookup_error_message", e.message)
}
},
async lookupbymou(context, prm) {
context.commit("update_lookup_company", 1)
try {
prm.token = one_token()
let resp = await api.lookupbymou(prm)
if (resp.status != "OK") {
context.commit("update_lookup_company", 3)
context.commit("update_lookup_error_message", resp.message)
} else {
context.commit("update_lookup_company", 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_companys", data)
}
} catch (e) {
context.commit("update_lookup_company", 3)
context.commit("update_lookup_error_message", e.message)
}
},
async lookupbydistrict(context, prm) {
context.commit("update_lookup_company", 1)
try {
prm.token = one_token()
let resp = await api.lookupbydistrict(prm)
if (resp.status != "OK") {
context.commit("update_lookup_company", 3)
context.commit("update_lookup_error_message", resp.message)
} else {
context.commit("update_lookup_company", 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_companys", data)
}
} catch (e) {
context.commit("update_lookup_company", 3)
context.commit("update_lookup_error_message", e.message)
}
},
async lookupbykelurahan(context, prm) {
context.commit("update_lookup_company", 1)
try {
prm.token = one_token()
let resp = await api.lookupbykelurahan(prm)
if (resp.status != "OK") {
context.commit("update_lookup_company", 3)
context.commit("update_lookup_error_message", resp.message)
} else {
context.commit("update_lookup_company", 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_companys", data)
}
} catch (e) {
context.commit("update_lookup_company", 3)
context.commit("update_lookup_error_message", e.message)
}
},
async lookupbyname(context, prm) {
context.commit("update_lookup_company", 1)
try {
prm.token = one_token()
let resp = await api.lookupbyname(prm)
if (resp.status != "OK") {
context.commit("update_lookup_company", 3)
context.commit("update_lookup_error_message", resp.message)
} else {
context.commit("update_lookup_company", 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_companys", data)
var pat = data.records[0]
if(prm.company != ""){
context.commit("mou/update_autocompanys", [{
S_BacteriaID: pat.S_BacteriaID,
S_BacteriaName: pat.S_BacteriaName
}], { root: true })
context.commit("mou/update_autocompany", {
S_BacteriaID: pat.S_BacteriaID,
S_BacteriaName: pat.S_BacteriaName
},{ root: true })
}
}
} catch (e) {
context.commit("update_lookup_company", 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_company", false)
var msg =" User " + prm.username + " sudah tersimpan dong ..."
context.commit("update_msg_success", msg)
context.dispatch("lookupbyname", {
search: prm.search,
current_page: 1,
lastid: -1
})
} 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_company", false)
var msg = " User " + prm.username + " sudah terupdate dong ..."
context.commit("update_msg_success", msg)
context.dispatch("lookupbyname", {
search: prm.search,
current_page: 1,
lastid: -1
})
}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.Id)
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 = " User " + prm.username + " sudah dihapus dong"
context.commit("update_msg_success", msg)
context.commit("update_alert_success", true)
context.commit("update_selected_company", {})
context.dispatch("lookupbyname", {
search: prm.search,
current_page: 1,
lastid: -1
})
}
} 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 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)
}
}
}
}

View File

@@ -0,0 +1,534 @@
// 1 => LOADING
// 2 => DONE
// 3 => ERROR
import * as api from "../api/mou.js"
export default {
namespaced: true,
state: {
mous: [],
save_status: 0,
save_error_message: '',
dialog_form_mou: false,
dialog_status_order: false,
lookup_mou: 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: {},
moutypes: [],
moutype: {},
agingtypes: [],
agingtype: {},
statuss: [],
autocompanys:[],
autocompany:{},
autocitys:[],
autocity:{},
autodistricts:[],
autodistrict:{},
autokelurahans:[],
autokelurahan:{},
name: '',
minvalueR: '',
maxvalueR: '',
isminvalueinclusiveR: false,
ismaxvalueinclusiveR: false,
noteR: '',
minvalueS: '',
maxvalueS: '',
isminvalueinclusiveS: true,
ismaxvalueinclusiveS: false,
noteS: '',
minvalueI: '',
maxvalueI: '',
isminvalueinclusiveI: true,
ismaxvalueinclusiveI: false,
noteI: '',
current_page:1,
x_search: '',
total_data: 0,
selected_mou: {
name: ""
},
mous_search: [],
vmou:{},
autocomplete_status: 0,
act: 'new'
},
mutations: {
update_act(state, val) {
state.act = val
},
update_autocomplete_status(state, val) {
state.autocomplete_status = val
},
update_mous_search(state, val) {
state.mous_search = val
},
update_selected_mou(state, val) {
state.selected_mou = val
},
update_vmou(state, val) {
state.vmou = val
},
update_x_search(state, val) {
state.x_search = val
},
update_current_page(state, val) {
state.current_page = val
},
update_total_data(state, val) {
state.total_data = val
},
update_autocompanys(state,data){
state.autocompanys = data
},
update_autocompany(state,val){
state.autocompany = val
},
update_autocitys(state,data){
state.autocitys = data
},
update_autocity(state,val){
state.autocity = val
},
update_autodistricts(state,data){
state.autodistricts = data
},
update_autodistrict(state,val){
state.autodistrict = val
},
update_autokelurahans(state,data){
state.autokelurahans = data
},
update_autokelurahan(state,val){
state.autokelurahan = val
},
update_name(state, val) {
state.name = val
},
update_minvalueR(state, val) {
state.minvalueR = val
},
update_maxvalueR(state, val) {
state.maxvalueR = val
},
update_isminvalueinclusiveR(state, val) {
state.isminvalueinclusiveR = val
},
update_ismaxvalueinclusiveR(state, val) {
state.ismaxvalueinclusiveR = val
},
update_noteR(state, val) {
state.noteR = val
},
update_minvalueS(state, val) {
state.minvalueS = val
},
update_maxvalueS(state, val) {
state.maxvalueS = val
},
update_isminvalueinclusiveS(state, val) {
state.isminvalueinclusiveS = val
},
update_ismaxvalueinclusiveS(state, val) {
state.ismaxvalueinclusiveS = val
},
update_noteS(state, val) {
state.noteS = val
},
update_minvalueI(state, val) {
state.minvalueI = val
},
update_maxvalueI(state, val) {
state.maxvalueI = val
},
update_isminvalueinclusiveI(state, val) {
state.isminvalueinclusiveI = val
},
update_ismaxvalueinclusiveI(state, val) {
state.ismaxvalueinclusiveI = val
},
update_noteI(state, val) {
state.noteI = val
},
update_errors(state, val) {
state.errors = val
},
update_mous(state, data) {
state.mous = data
},
update_save_status(state, val) {
state.save_status = val
},
update_save_error_message(state, val) {
state.save_error_message = val
},
update_dialog_form_mou(state, val) {
state.dialog_form_mou = val
},
update_lookup_mou(state, val) {
state.lookup_mou = 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_moutypes(state, data) {
state.moutypes = data
},
update_moutype(state, val) {
state.moutype = 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 searchmou(context, prm) {
context.commit("update_autocomplete_status", 1)
try {
prm.token = one_token()
let resp = await api.searchmou(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_mous_search", resp.data.records)
}
} catch (e) {
context.commit("update_autocomplete_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)
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("company/update_alert_success", true, {
root: true
})
context.commit("update_dialog_form_mou", false)
var msg = " Agreement alias " + prm.name + " sudah disimpan dong"
context.commit("company/update_msg_success", msg, {
root: true
})
context.commit("company/update_alert_success", true, {
root: true
})
context.dispatch("lookupbyidname", {
id: prm.muserId,
search: prm.search,
current_page: 1,
lastid: -1
})
} 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 {
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("company/update_alert_success", true, {
root: true
})
context.commit("update_dialog_form_mou", false)
var msg = " Agreement alias " + prm.name + " sudah update dong"
context.commit("company/update_msg_success", msg, {
root: true
})
context.commit("company/update_alert_success", true, {
root: true
})
context.dispatch("lookupbyidname", {
id: prm.muserId,
search: prm.search,
current_page: 1,
lastid: -1
})
} 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 lookupx(context, prm) {
context.commit("update_lookup_mou", 1)
try {
let resp = await api.lookupx(one_token(), prm.id)
if (resp.status != "OK") {
context.commit("update_lookup_mou", 3)
} else {
context.commit("update_lookup_mou", 2)
let data = {
records: resp.data.records,
total: resp.data.total
}
context.commit("update_mous", data.records)
}
} catch (e) {
context.commit("update_lookup_mou", 3)
}
},
async lookup(context, prm) {
context.commit("update_save_status", 1)
try {
prm.token = one_token()
let resp = await api.lookup(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_mous", data.records)
console.log('status')
console.log(data.records.statuss)
context.commit("update_statuss", data.records.statuss)
context.commit("update_total_data", data.total)
}
} catch (e) {
context.commit("update_save_status", 3)
}
},
async lookupbyname(context, prm) {
context.commit("update_save_status", 1)
try {
prm.token = one_token()
let resp = await api.lookupbyname(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_mous", data.records)
console.log(data.records)
context.commit("update_total_data", data.total)
}
} catch (e) {
context.commit("update_save_status", 3)
}
},
async lookupbyidname(context, prm) {
context.commit("update_save_status", 1)
try {
prm.token = one_token()
let resp = await api.lookupbyidname(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_mous", data.records)
console.log(data.records)
context.commit("update_total_data", data.total)
}
} 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("company/update_save_status", 3, {
root: true
})
context.commit("company/update_save_error_message", resp.message, {
root: true
})
} else {
context.commit("company/update_save_status", 2, {
root: true
})
context.commit("company/update_save_error_message", resp.message, {
root: true
})
context.commit("company/update_alert_success", true, {
root: true
})
//context.commit("update_dialog_form_schedule_promise", false)
var msg = "Mou " + prm.name + " sudah dihapus dong"
context.commit("company/update_msg_success", msg, {
root: true
})
context.commit("company/update_alert_success", true, {
root: true
})
context.dispatch("lookupbyidname", {
id: prm.muserId,
search: prm.search,
current_page: 1,
lastid: -1
})
}
} catch (e) {
context.commit("update_save_status", 3)
context.commit("update_save_error_message", e.message)
console.log(e)
}
},
async searchcompany(context,prm) {
context.commit("company/update_autocomplete_status",1,{root: true})
try {
prm.token = one_token()
let resp= await api.searchcompany(prm)
if (resp.status != "OK") {
context.commit("company/update_autocomplete_status",3,{root: true})
} else {
context.commit("company/update_autocomplete_status",2,{root: true})
let data = {
records : resp.data.records,
total: resp.data.total
}
context.commit("update_autocompanys",resp.data.records)
}
} catch(e) {
context.commit("company/update_autocomplete_status",3,{root: true})
}
},
async searchcity(context,prm) {
context.commit("company/update_autocomplete_status",1,{root: true})
try {
prm.token = one_token()
let resp= await api.searchcity(prm)
if (resp.status != "OK") {
context.commit("company/update_autocomplete_status",3,{root: true})
} else {
context.commit("company/update_autocomplete_status",2,{root: true})
let data = {
records : resp.data.records,
total: resp.data.total
}
context.commit("update_autocitys",resp.data.records)
}
} catch(e) {
context.commit("company/update_autocomplete_status",3,{root: true})
}
},
async searchdistrict(context,prm) {
context.commit("company/update_autocomplete_status",1,{root: true})
try {
prm.token = one_token()
let resp= await api.searchdistrict(prm)
if (resp.status != "OK") {
context.commit("company/update_autocomplete_status",3,{root: true})
} else {
context.commit("company/update_autocomplete_status",2,{root: true})
let data = {
records : resp.data.records,
total: resp.data.total
}
context.commit("update_autodistricts",resp.data.records)
}
} catch(e) {
context.commit("company/update_autocomplete_status",3,{root: true})
}
},
async searchkelurahan(context,prm) {
context.commit("company/update_autocomplete_status",1,{root: true})
try {
prm.token = one_token()
let resp= await api.searchkelurahan(prm)
if (resp.status != "OK") {
context.commit("company/update_autocomplete_status",3,{root: true})
} else {
context.commit("company/update_autocomplete_status",2,{root: true})
let data = {
records : resp.data.records,
total: resp.data.total
}
context.commit("update_autokelurahans",resp.data.records)
}
} catch(e) {
context.commit("company/update_autocomplete_status",3,{root: true})
}
}
}
}

View File

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