446 lines
21 KiB
Vue
446 lines
21 KiB
Vue
<template>
|
|
<v-layout class="fill-height" column>
|
|
<v-dialog v-model="confirmdialogconfirmationconfirm" persistent max-width="290">
|
|
<v-card>
|
|
<v-card-title dark class="headline success pt-2 pb-2" primary-title style="color:white">
|
|
<h4 dark>Info</h4>
|
|
</v-card-title>
|
|
<v-card-text>
|
|
{{msgconfirmationconfirm}}
|
|
</v-card-text>
|
|
<v-card-actions>
|
|
<v-spacer></v-spacer>
|
|
<v-btn small color="success darken-1 text-sm-left" flat @click="doConfirmReference()">Konfirmasi</v-btn>
|
|
<v-btn small color="primary darken-1 text-sm-right" flat @click="confirmdialogconfirmationconfirm = false">Batal</v-btn>
|
|
</v-card-actions>
|
|
</v-card>
|
|
</v-dialog>
|
|
<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="xs4 ma-1" label="Kel. Pelanggan" placeholder="Cari..." outline v-model="name" hide-details></v-text-field>
|
|
<v-text-field class="xs4 ma-1" label="Nomor" placeholder="Cari..." outline v-model="snorm" hide-details></v-text-field>
|
|
<span @click="searchPatient" class="icon-medium-fill-base xs1 white--text success iconsearch-search"></span>
|
|
|
|
</v-layout>
|
|
</v-card>
|
|
<v-card>
|
|
<v-layout row>
|
|
<v-flex xs12 pl-2 pr-2 pt-2 pb-2>
|
|
<v-data-table :headers="headers" :items="receivereferenceconfirms" :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.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.M_MouName}}</td>
|
|
<td class="text-xs-left pa-2" v-bind:class="{'amber lighten-4':isSelected(props.item)}" @click="selectMe(props.item)">{{ props.item.T_ReceiveReferenceHeaderDate}}</td>
|
|
<td class="text-xs-center pa-2" v-bind:class="{'amber lighten-4':isSelected(props.item)}" @click="selectMe(props.item)">{{ props.item.T_ReceiveReferenceHeaderNumber}}</td>
|
|
<td class="text-xs-left pa-2" v-bind:class="{'amber lighten-4':isSelected(props.item)}" @click="selectMe(props.item)">{{ props.item.T_ReceiveReferenceHeaderNote}}</td>
|
|
<td class="text-xs-center pa-2" v-bind:class="{'amber lighten-4':isSelected(props.item)}" @click="selectMe(props.item)"><v-btn @click="confirmReference(props.item)" small :color="props.item.T_ReceiveReferenceHeaderIsConfirm == 'N' ? 'grey' : 'green'">{{ props.item.konfirmasi }}</v-btn>
|
|
</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>
|
|
|
|
|
|
|
|
<template>
|
|
<v-layout row justify-center>
|
|
<v-dialog v-model="dialogformorder" persistent max-width="600px">
|
|
<v-card>
|
|
<v-card-title>
|
|
<span class="headline">Form Perusahaan</span>
|
|
</v-card-title>
|
|
<v-card-text class="pt-0 pb-0">
|
|
<v-form ref="formcompany">
|
|
<v-layout row wrap>
|
|
<v-flex xs12 pa-2>
|
|
<v-layout row>
|
|
<v-flex xs12 pa-1>
|
|
<v-autocomplete label="Perusahaan*" v-model="xcompany" :items="xcompanies" :search-input.sync="search_company" auto-select-first
|
|
no-filter item-text="M_CompanyName" return-object :loading="isLoading" no-data-text="Pilih Perusahaan">
|
|
<template slot="item" slot-scope="{ item }">
|
|
<v-list-tile-content>
|
|
<v-list-tile-title v-text="item.M_CompanyName"></v-list-tile-title>
|
|
</v-list-tile-content>
|
|
</template>
|
|
</v-autocomplete>
|
|
</v-flex>
|
|
</v-layout>
|
|
<v-layout row>
|
|
<v-flex xs12 pa-1>
|
|
<v-select item-text="M_MouName" return-object :items="xmous" v-model="xmou" label="MOU"></v-select>
|
|
</v-flex>
|
|
</v-layout>
|
|
<v-layout row>
|
|
<v-flex xs12 pa-1>
|
|
<v-menu ref="menusdate" v-model="menusdate" :close-on-content-click="false" :nudge-right="0" lazy transition="scale-transition"
|
|
offset-y full-width max-width="290px" min-width="290px">
|
|
<template v-slot:activator="{ on }">
|
|
<v-text-field v-model="startComputedDateFormatted" label="Tgl. Order" readonly v-on="on" @blur="date = deFormatedDate(startComputedDateFormatted)"></v-text-field>
|
|
</template>
|
|
<v-date-picker v-model="xsdate" no-title @input="menusdate = false"></v-date-picker>
|
|
</v-flex>
|
|
</v-layout>
|
|
<v-layout row>
|
|
<v-flex xs12 pa-1>
|
|
<v-text-field v-model="xnote" label="Catatan"></v-text-field>
|
|
</v-flex>
|
|
</v-layout>
|
|
</v-flex>
|
|
</v-layout>
|
|
</v-card-text>
|
|
<v-card-actions>
|
|
<v-spacer></v-spacer>
|
|
<v-btn color="blue darken-1" flat @click="updateDialogFormOrder()">Tutup</v-btn>
|
|
<v-btn v-if="xact === 'new'" color="blue darken-1" flat @click="saveFormPerusahaan()">Simpan</v-btn>
|
|
<v-btn v-if="xact === 'edit'" color="blue darken-1" flat @click="updateFormPerusahaan()">Simpan Perubahan</v-btn>
|
|
</v-card-actions>
|
|
</v-form>
|
|
</v-card>
|
|
</v-dialog>
|
|
</v-layout>
|
|
</template>
|
|
|
|
</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("receivereferenceconfirm/getsexreg")
|
|
this.$store.dispatch("receivereferenceconfirm/search", {
|
|
name: this.name,
|
|
snorm: this.snorm,
|
|
lastid: -1
|
|
})
|
|
},
|
|
methods: {
|
|
isSelected(p) {
|
|
return p.T_ReceiveReferenceHeaderID == this.$store.state.receivereferenceconfirm.selected_receivereferenceconfirm
|
|
.T_ReceiveReferenceHeaderID
|
|
},
|
|
searchPatient() {
|
|
this.$store.dispatch("receivereferenceconfirm/search", {
|
|
name: this.name,
|
|
snorm: this.snorm,
|
|
lastid: -1
|
|
})
|
|
},
|
|
selectMe(pat) {
|
|
if (this.$store.state.receivereferenceconfirm.no_save == 0) {
|
|
this.$store.commit("receivereferenceconfirm/update_selected_receivereferenceconfirm", pat)
|
|
this.$store.commit("receivereferenceconfirm/update_act_comp", 'edit')
|
|
this.$store.dispatch("receivereferenceconfirm/getpatient", {
|
|
id: pat.T_ReceiveReferenceHeaderID
|
|
})
|
|
} else {
|
|
this.$store.commit("receivereferenceconfirm/update_open_alert_confirmation", true)
|
|
}
|
|
|
|
},
|
|
closeAlertConfirmation() {
|
|
this.$store.commit("receivereferenceconfirm/update_open_alert_confirmation", false)
|
|
},
|
|
forgetAlertConfirmation() {
|
|
this.$store.commit("receivereferenceconfirm/update_no_save", 0)
|
|
this.$store.commit("receivereferenceconfirm/update_open_alert_confirmation", false)
|
|
},
|
|
updateAlert_success(val) {
|
|
this.$store.commit("receivereferenceconfirm/update_alert_success", val)
|
|
},
|
|
updateDialogFormOrder() {
|
|
this.$store.commit("receivereferenceconfirm/update_dialog_form_order", false)
|
|
},
|
|
setNewOrder() {
|
|
this.$store.commit("receivereferenceconfirm/update_selected_receivereferenceconfirm", {})
|
|
this.$store.commit("receivereferenceconfirm/update_act_comp", 'new')
|
|
this.$store.commit("receivereferenceconfirm/update_dialog_form_order", true)
|
|
this.search_company = ''
|
|
},
|
|
saveFormPerusahaan() {
|
|
this.$store.dispatch("receivereferenceconfirm/newreceivereferenceconfirm", {
|
|
companyid: this.xcompany.M_CompanyID,
|
|
mouid: this.xmou.M_MouID,
|
|
sdate: this.xsdate,
|
|
note: this.xnote
|
|
})
|
|
},
|
|
confirmReference(value) {
|
|
this.$store.commit("receivereferenceconfirm/update_act_comp", 'confirm')
|
|
this.$store.commit("receivereferenceconfirm/update_errors", [])
|
|
var errors = this.$store.state.receivereferenceconfirm.errors
|
|
var msg = ''
|
|
msg = "Yakin, akan konfirmasi data nomor " + value.T_ReceiveReferenceHeaderNumber + " ?"
|
|
this.$store.commit("receivereferenceconfirm/update_msg_confirmation_confirm", msg)
|
|
if (value.T_ReceiveReferenceHeaderIsConfirm == 'Y') {
|
|
this.$store.commit("receivereferenceconfirm/update_dialog_confirmation_confirm", false)
|
|
} else {
|
|
this.$store.commit("receivereferenceconfirm/update_dialog_confirmation_confirm", true)
|
|
}
|
|
|
|
},
|
|
doConfirmReference() {
|
|
var prm = {}
|
|
prm.T_ReceiveReferenceHeaderID = this.$store.state.receivereferenceconfirm
|
|
.selected_receivereferenceconfirm
|
|
.T_ReceiveReferenceHeaderID
|
|
prm.T_ReceiveReferenceHeaderNumber = this.$store.state.receivereferenceconfirm
|
|
.selected_receivereferenceconfirm
|
|
.T_ReceiveReferenceHeaderNumber
|
|
prm.M_CompanyName = this.$store.state.receivereferenceconfirm.selected_receivereferenceconfirm.M_CompanyName
|
|
this.$store.dispatch("receivereferenceconfirm/confirmreference", prm)
|
|
},
|
|
thr_search_company: _.debounce(function () {
|
|
this.$store.dispatch("receivereferenceconfirm/searchcompany", this.search_company)
|
|
}, 2000),
|
|
closeDialogSuccess() {
|
|
let arrreceivereferenceconfirm = this.$store.state.receivereferenceconfirm.receivereferenceconfirms
|
|
var idx = _.findIndex(arrreceivereferenceconfirm, item => item.T_ReceiveReferenceHeaderID === this.$store
|
|
.state
|
|
.receivereferenceconfirm.last_id)
|
|
console.log(idx)
|
|
this.$store.dispatch("receivereferenceconfirm/search", {
|
|
name: this.name,
|
|
snorm: this.snorm,
|
|
lastid: idx
|
|
})
|
|
this.$store.commit("receivereferenceconfirm/update_dialog_success", false)
|
|
},
|
|
formatDate(date) {
|
|
if (!date) return null
|
|
|
|
const [year, month, day] = date.split('-')
|
|
return `${day}-${month}-${year}`
|
|
},
|
|
deFormatedDate(date) {
|
|
if (!date) return null
|
|
|
|
const [day, month, year] = date.split('-')
|
|
return `${year}-${month.padStart(2, '0')}-${day.padStart(2, '0')}`
|
|
}
|
|
},
|
|
computed: {
|
|
dialogsuccess: {
|
|
get() {
|
|
return this.$store.state.receivereferenceconfirm.dialog_success
|
|
},
|
|
set(val) {
|
|
this.$store.commit("receivereferenceconfirm/update_dialog_success", val)
|
|
}
|
|
},
|
|
msgsuccess() {
|
|
return this.$store.state.receivereferenceconfirm.msg_success
|
|
},
|
|
confirmdialogconfirmationconfirm: {
|
|
get() {
|
|
return this.$store.state.receivereferenceconfirm.dialog_confirmation_confirm
|
|
},
|
|
set(val) {
|
|
this.$store.commit("receivereferenceconfirm/update_dialog_confirmation_confirm", val)
|
|
}
|
|
},
|
|
msgconfirmationconfirm() {
|
|
return this.$store.state.receivereferenceconfirm.msg_confirmation_confirm
|
|
},
|
|
snackbar: {
|
|
get() {
|
|
return this.$store.state.receivereferenceconfirm.alert_success
|
|
},
|
|
set(val) {
|
|
this.$store.commit("receivereferenceconfirm/update_alert_success", val)
|
|
}
|
|
},
|
|
isLoading() {
|
|
return this.$store.state.receivereferenceconfirm.search_status == 1
|
|
},
|
|
xact() {
|
|
return this.$store.state.receivereferenceconfirm.act_comp
|
|
},
|
|
receivereferenceconfirms() {
|
|
return this.$store.state.receivereferenceconfirm.receivereferenceconfirms
|
|
},
|
|
openalertconfirmation: {
|
|
get() {
|
|
return this.$store.state.receivereferenceconfirm.open_alert_confirmation
|
|
},
|
|
set(val) {
|
|
this.$store.commit("receivereferenceconfirm/update_open_alert_confirmation", val)
|
|
}
|
|
},
|
|
dialogformorder() {
|
|
return this.$store.state.receivereferenceconfirm.dialog_form_order
|
|
},
|
|
|
|
xdate: {
|
|
get() {
|
|
return this.$store.state.receivereferenceconfirm.date
|
|
},
|
|
set(val) {
|
|
this.$store.commit("receivereferenceconfirm/update_date", val)
|
|
}
|
|
},
|
|
xnote: {
|
|
get() {
|
|
return this.$store.state.receivereferenceconfirm.note
|
|
},
|
|
set(val) {
|
|
this.$store.commit("receivereferenceconfirm/update_note", val)
|
|
}
|
|
},
|
|
xcompanies() {
|
|
return this.$store.state.receivereferenceconfirm.companies
|
|
},
|
|
xcompany: {
|
|
get() {
|
|
return this.$store.state.receivereferenceconfirm.company
|
|
},
|
|
set(val) {
|
|
this.$store.commit("receivereferenceconfirm/update_company", val)
|
|
this.$store.dispatch("receivereferenceconfirm/getmou", this.$store.state.receivereferenceconfirm
|
|
.company)
|
|
}
|
|
},
|
|
xmous() {
|
|
return this.$store.state.receivereferenceconfirm.mous
|
|
},
|
|
xmou: {
|
|
get() {
|
|
return this.$store.state.receivereferenceconfirm.mou
|
|
},
|
|
set(val) {
|
|
this.$store.commit("receivereferenceconfirm/update_mou", val)
|
|
}
|
|
},
|
|
startComputedDateFormatted() {
|
|
return this.formatDate(this.xsdate)
|
|
},
|
|
xsdate: {
|
|
get() {
|
|
return this.$store.state.receivereferenceconfirm.sdate
|
|
},
|
|
set(val) {
|
|
this.$store.commit("receivereferenceconfirm/update_sdate", val)
|
|
}
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
msgalertconfirmation: "Perubahan yang telah dilakukan belum disimpan dong !",
|
|
items: [],
|
|
name: '',
|
|
snorm: '',
|
|
search_company: '',
|
|
menusdate: false,
|
|
date: new Date().toISOString().substr(0, 10),
|
|
page: 1,
|
|
headers: [{
|
|
text: "KEL. PELANGGAN",
|
|
align: "left",
|
|
sortable: false,
|
|
value: "mr",
|
|
width: "15%",
|
|
class: "pa-2 blue lighten-3 white--text"
|
|
},
|
|
{
|
|
text: "MOU",
|
|
align: "left",
|
|
sortable: false,
|
|
value: "mr",
|
|
width: "10%",
|
|
class: "pa-2 blue lighten-3 white--text"
|
|
},
|
|
{
|
|
text: "TANGGAL",
|
|
align: "left",
|
|
sortable: false,
|
|
value: "mr",
|
|
width: "10%",
|
|
class: "pa-2 blue lighten-3 white--text"
|
|
},
|
|
{
|
|
text: "NOMOR",
|
|
align: "center",
|
|
sortable: false,
|
|
value: "lab",
|
|
width: "10%",
|
|
class: "pa-2 blue lighten-3 white--text"
|
|
},
|
|
{
|
|
text: "CATATAN",
|
|
align: "left",
|
|
sortable: false,
|
|
value: "name",
|
|
width: "25%",
|
|
class: "pa-2 blue lighten-3 white--text"
|
|
},
|
|
{
|
|
text: "STATUS",
|
|
align: "left",
|
|
sortable: false,
|
|
value: "name",
|
|
width: "15%",
|
|
class: "pa-2 blue lighten-3 white--text"
|
|
}
|
|
],
|
|
pagination: {
|
|
descending: true,
|
|
page: 1,
|
|
rowsPerPage: 5,
|
|
sortBy: 'T_ReceiveReferenceHeaderNumber',
|
|
totalItems: this.$store.state.receivereferenceconfirm.total_receivereferenceconfirms
|
|
}
|
|
};
|
|
},
|
|
watch: {
|
|
search_company(val, old) {
|
|
if (val == old) return
|
|
if (!val) return
|
|
if (val.length < 1) return
|
|
if (this.$store.state.receivereferenceconfirm.update_autocomplete_status == 1) return
|
|
this.thr_search_company()
|
|
}
|
|
}
|
|
}
|
|
</script> |