Files

149 lines
5.9 KiB
Vue

<template>
<div>
<v-toolbar color="primary" dark>
<v-toolbar-title class="white--text">RECEIVE ORDER ASET</v-toolbar-title>
<v-spacer></v-spacer>
<v-btn icon>
<v-icon large>add_box</v-icon>
</v-btn>
</v-toolbar>
<v-card class="pa-2">
<v-layout row align-center>
<v-flex xs3>
<v-menu v-model="menuStartdateFilter" offset-y lazy min-width="290px" transition="scale-transition" max-width="290px" full-width
:nudge-right="40" :close-on-content-click="false">
<template v-slot:activator="{ on }">
<v-text-field v-model="formattedStartdate" label="Tanggal Awal" hide-details readonly v-on="on" outline></v-text-field>
</template>
<v-date-picker v-model="filterasset.startdate" no-title
@input="menuStartdateFilter = false"></v-date-picker>
</v-menu>
</v-flex>
<v-flex xs3 pl-2>
<v-menu v-model="menuEnddateFilter" offset-y lazy min-width="290px" transition="scale-transition" max-width="290px" full-width
:nudge-right="40" :close-on-content-click="false">
<template v-slot:activator="{ on }">
<v-text-field v-model="formattedEnddate" label="Tanggal Akhir" hide-details readonly v-on="on" outline></v-text-field>
</template>
<v-date-picker v-model="filterasset.enddate" no-title
@input="menuEnddateFilter = false"></v-date-picker>
</v-menu>
</v-flex>
<v-flex xs3 pl-2>
<v-autocomplete :items="list_status" hide-details outline v-model="filterasset.status"
label="Status"></v-autocomplete>
</v-flex>
<v-flex xs3 pl-2>
<v-text-field v-model="filterasset.search" hide-details outline label="Cari"
placeholder="cari nomor po..."></v-text-field>
</v-flex>
</v-layout>
</v-card>
<v-card class="pa-2 mt-2">
<v-data-table :headers="headers" :items="list_roasset.records" class="elevation-1" hide-actions></v-data-table>
<v-divider class="my-1"></v-divider>
<div class="pa-2 mt-1 text-xs-center">
<v-pagination v-model="currpage" :length="pagelength" :total-visible="10"></v-pagination>
</div>
</v-card>
<v-snackbar v-model="snackbar.state" multi-line top :timeout="3000" :color="snackbar.color">
{{ snackbar.msg }}
<v-btn class="ml-2" round flat @click="snackbar.state = false">Tutup</v-btn>
</v-snackbar>
</div>
</template>
<script>
module.exports = {
data() {
return {
menuStartdateFilter: false,
menuEnddateFilter: false,
headers: [
{
text: "TANGGAL RO", align: "center", sortable: false,
value: "date", width: "10%", class: "pa-1 blue lighten-3 white--text",
},
{
text: "NOMOR RO", align: "center", sortable: false,
value: "noro", width: "15%", class: "pa-1 blue lighten-3 white--text",
},
{
text: "NOMOR PO", align: "center", sortable: false,
value: "nopo", width: "15%", class: "pa-1 blue lighten-3 white--text",
},
{
text: "SUPPLIER", align: "center", sortable: false,
value: "supp", width: "15%", class: "pa-1 blue lighten-3 white--text",
},
{
text: "CATATAN", align: "center", sortable: false,
value: "note", width: "20%", class: "pa-1 blue lighten-3 white--text",
},
{
text: "STATUS", align: "center", sortable: false,
value: "status", width: "10%", class: "pa-1 blue lighten-3 white--text",
},
{
text: "AKSI", align: "center", sortable: false,
value: "acts", width: "15%", class: "pa-1 blue lighten-3 white--text",
},
]
}
},
computed: {
snackbar: {
get() {
return this.$store.state.roasset.snackbar
},
set(val) {
this.$store.commit("roasset/update_snackbar", val)
}
},
filterasset: {
get() {
return this.$store.state.roasset.filterasset
},
set(val) {
this.$store.commit("roasset/update_filterasset", val)
}
},
currpage: {
get() {
return this.$store.state.roasset.currpage
},
set(val) {
this.$store.commit("roasset/update_currpage", val)
}
},
list_status() {
return this.$store.state.roasset.list_status
},
list_roasset() {
return this.$store.state.roasset.list_roasset
},
pagelength() {
let total = this.list_roasset.total
if (total === undefined || total < 1) return 1
return Math.ceil(total/10)
},
formattedStartdate() {
return this.formatDate(this.filterasset.startdate)
},
formattedEnddate() {
return this.formatDate(this.filterasset.enddate)
}
},
methods: {
formatDate(date) {
if (!date) return null;
const [year, month, day] = date.split('-');
return `${day}-${month}-${year}`;
}
}
}
</script>