You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
486 lines
16 KiB
Vue
486 lines
16 KiB
Vue
|
2 years ago
|
<template>
|
||
|
|
<div>
|
||
|
|
<transition appear enter-active-class="animated fadeIn">
|
||
|
|
<q-table
|
||
|
|
class="my-sticky-header-table shadow-24"
|
||
|
|
:data="table_list"
|
||
|
|
row-key="id"
|
||
|
|
:separator="separator"
|
||
|
|
:loading="loading"
|
||
|
|
:filter="filter"
|
||
|
|
:columns="columns"
|
||
|
|
hide-bottom
|
||
|
|
:pagination.sync="pagination"
|
||
|
|
no-data-label="No data"
|
||
|
|
no-results-label="No data you want"
|
||
|
|
:table-style="{ height: height }"
|
||
|
|
flat
|
||
|
|
bordered
|
||
|
|
>
|
||
|
|
<template v-slot:top>
|
||
|
|
<q-btn-group>
|
||
|
|
<q-btn :label="$t('refresh')" @click="reFresh()">
|
||
|
|
<q-tooltip content-class="bg-amber text-black shadow-4" :offset="[10, 10]" content-style="font-size: 12px">
|
||
|
|
{{ $t('refreshtip') }}
|
||
|
|
</q-tooltip>
|
||
|
|
</q-btn>
|
||
|
|
</q-btn-group>
|
||
|
|
<q-space />
|
||
|
|
<q-input outlined rounded dense debounce="300" color="primary" v-model="filter" :placeholder="$t('search')" @blur="getSearchList()" @keyup.enter="getSearchList()">
|
||
|
|
</q-input>
|
||
|
|
</template>
|
||
|
|
<template v-slot:body="props">
|
||
|
|
<q-tr :props="props">
|
||
|
|
<template v-if="props.row.id === editid">
|
||
|
|
<q-td key="supplier_name" :props="props">
|
||
|
|
<q-input dense
|
||
|
|
outlined
|
||
|
|
square
|
||
|
|
v-model="editFormData.supplier_name"
|
||
|
|
:label="$t('baseinfo.view_supplier.supplier_name')"
|
||
|
|
autofocus
|
||
|
|
:rules="[ val => val && val.length > 0 || 'Please Enter the Supplier Name']"
|
||
|
|
/>
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-else-if="props.row.id !== editid">
|
||
|
|
<q-td key="supplier_name" :props="props">
|
||
|
|
{{ props.row.supplier_name }}
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-if="props.row.id === editid">
|
||
|
|
<q-td key="supplier_city" :props="props">
|
||
|
|
<q-input dense
|
||
|
|
outlined
|
||
|
|
square
|
||
|
|
v-model="editFormData.supplier_city"
|
||
|
|
:label="$t('baseinfo.view_supplier.supplier_city')"
|
||
|
|
:rules="[ val => val && val.length > 0 || 'Please Enter the Supplier City']"
|
||
|
|
/>
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-else-if="props.row.id !== editid">
|
||
|
|
<q-td key="supplier_city" :props="props">
|
||
|
|
{{ props.row.supplier_city }}
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-if="props.row.id === editid">
|
||
|
|
<q-td key="supplier_address" :props="props">
|
||
|
|
<q-input dense
|
||
|
|
outlined
|
||
|
|
square
|
||
|
|
v-model="editFormData.supplier_address"
|
||
|
|
:label="$t('baseinfo.view_supplier.supplier_address')"
|
||
|
|
:rules="[ val => val && val.length > 0 || 'Please Enter the Supplier Address']"
|
||
|
|
/>
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-else-if="props.row.id !== editid">
|
||
|
|
<q-td key="supplier_address" :props="props">
|
||
|
|
{{ props.row.supplier_address }}
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-if="props.row.id === editid">
|
||
|
|
<q-td key="supplier_contact" :props="props">
|
||
|
|
<q-input dense
|
||
|
|
outlined
|
||
|
|
square
|
||
|
|
v-model="editFormData.supplier_contact"
|
||
|
|
:label="$t('baseinfo.view_supplier.supplier_contact')"
|
||
|
|
:rules="[ val => val && val > 0 || 'Please Enter the Supplier Contact']"
|
||
|
|
/>
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-else-if="props.row.id !== editid">
|
||
|
|
<q-td key="supplier_contact" :props="props">
|
||
|
|
{{ props.row.supplier_contact }}
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-if="props.row.id === editid">
|
||
|
|
<q-td key="supplier_manager" :props="props">
|
||
|
|
<q-input dense
|
||
|
|
outlined
|
||
|
|
square
|
||
|
|
v-model="editFormData.supplier_manager"
|
||
|
|
:label="$t('baseinfo.view_supplier.supplier_manager')"
|
||
|
|
:rules="[ val => val && val > 0 || 'Please Enter the Supplier Manager']"
|
||
|
|
/>
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-else-if="props.row.id !== editid">
|
||
|
|
<q-td key="supplier_manager" :props="props">
|
||
|
|
{{ props.row.supplier_manager }}
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-if="props.row.id === editid">
|
||
|
|
<q-td key="supplier_level" :props="props">
|
||
|
|
<q-input dense
|
||
|
|
outlined
|
||
|
|
square
|
||
|
|
v-model.number="editFormData.supplier_level"
|
||
|
|
type="number"
|
||
|
|
:label="$t('baseinfo.view_supplier.supplier_level')"
|
||
|
|
:rules="[ val => val && val > 0 || 'Please Enter the Supplier Level']"
|
||
|
|
/>
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-else-if="props.row.id !== editid">
|
||
|
|
<q-td key="supplier_level" :props="props">
|
||
|
|
{{ props.row.supplier_level }}
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<q-td key="creater" :props="props">
|
||
|
|
{{ props.row.creater }}
|
||
|
|
</q-td>
|
||
|
|
<q-td key="create_time" :props="props">
|
||
|
|
{{ props.row.create_time }}
|
||
|
|
</q-td>
|
||
|
|
<q-td key="update_time" :props="props">
|
||
|
|
{{ props.row.update_time }}
|
||
|
|
</q-td>
|
||
|
|
</q-tr>
|
||
|
|
</template>
|
||
|
|
</q-table>
|
||
|
|
</transition>
|
||
|
|
<template>
|
||
|
|
<div class="q-pa-lg flex flex-center">
|
||
|
|
<q-btn v-show="pathname_previous" flat push color="purple" :label="$t('previous')" icon="navigate_before" @click="getListPrevious()">
|
||
|
|
<q-tooltip content-class="bg-amber text-black shadow-4" :offset="[10, 10]" content-style="font-size: 12px">
|
||
|
|
{{ $t('previous') }}
|
||
|
|
</q-tooltip>
|
||
|
|
</q-btn>
|
||
|
|
<q-btn v-show="pathname_next" flat push color="purple" :label="$t('next')" icon-right="navigate_next" @click="getListNext()">
|
||
|
|
<q-tooltip content-class="bg-amber text-black shadow-4" :offset="[10, 10]" content-style="font-size: 12px">
|
||
|
|
{{ $t('next') }}
|
||
|
|
</q-tooltip>
|
||
|
|
</q-btn>
|
||
|
|
<q-btn v-show="!pathname_previous && !pathname_next" flat push color="dark" :label="$t('no_data')"></q-btn>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<router-view />
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import { getauth, postauth, putauth, deleteauth, getfile } from 'boot/axios_request'
|
||
|
|
import { date, exportFile, LocalStorage } from 'quasar'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: 'Pagesupplier',
|
||
|
|
data () {
|
||
|
|
return {
|
||
|
|
openid: '',
|
||
|
|
login_name: '',
|
||
|
|
authin: '0',
|
||
|
|
pathname: 'supplier/',
|
||
|
|
pathname_previous: '',
|
||
|
|
pathname_next: '',
|
||
|
|
separator: 'cell',
|
||
|
|
loading: false,
|
||
|
|
height: '',
|
||
|
|
table_list: [],
|
||
|
|
columns: [
|
||
|
|
{ name: 'supplier_name', required: true, label: this.$t('baseinfo.view_supplier.supplier_name'), align: 'left', field: 'supplier_name' },
|
||
|
|
{ name: 'supplier_city', label: this.$t('baseinfo.view_supplier.supplier_city'), field: 'supplier_city', align: 'center' },
|
||
|
|
{ name: 'supplier_address', label: this.$t('baseinfo.view_supplier.supplier_address'), field: 'supplier_address', align: 'center' },
|
||
|
|
{ name: 'supplier_contact', label: this.$t('baseinfo.view_supplier.supplier_contact'), field: 'supplier_contact', align: 'center' },
|
||
|
|
{ name: 'supplier_manager', label: this.$t('baseinfo.view_supplier.supplier_manager'), field: 'supplier_manager', align: 'center' },
|
||
|
|
{ name: 'supplier_level', label: this.$t('baseinfo.view_supplier.supplier_level'), field: 'supplier_level', align: 'center' },
|
||
|
|
{ name: 'creater', label: this.$t('creater'), field: 'creater', align: 'center' },
|
||
|
|
{ name: 'create_time', label: this.$t('createtime'), field: 'create_time', align: 'center' },
|
||
|
|
{ name: 'update_time', label: this.$t('updatetime'), field: 'update_time', align: 'center' }
|
||
|
|
],
|
||
|
|
filter: '',
|
||
|
|
pagination: {
|
||
|
|
page: 1,
|
||
|
|
rowsPerPage: '30'
|
||
|
|
},
|
||
|
|
newForm: false,
|
||
|
|
newFormData: {
|
||
|
|
supplier_name: '',
|
||
|
|
supplier_city: '',
|
||
|
|
supplier_address: '',
|
||
|
|
supplier_contact: '',
|
||
|
|
supplier_manager: '',
|
||
|
|
supplier_level: '',
|
||
|
|
creater: ''
|
||
|
|
},
|
||
|
|
editid: 0,
|
||
|
|
editFormData: {},
|
||
|
|
editMode: false,
|
||
|
|
deleteForm: false,
|
||
|
|
deleteid: 0,
|
||
|
|
error1: this.$t('baseinfo.view_supplier.error1'),
|
||
|
|
error2: this.$t('baseinfo.view_supplier.error2'),
|
||
|
|
error3: this.$t('baseinfo.view_supplier.error3'),
|
||
|
|
error4: this.$t('baseinfo.view_supplier.error4'),
|
||
|
|
error5: this.$t('baseinfo.view_supplier.error5'),
|
||
|
|
error6: this.$t('baseinfo.view_supplier.error6')
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
getList () {
|
||
|
|
var _this = this
|
||
|
|
if (LocalStorage.has('auth')) {
|
||
|
|
getauth(_this.pathname, {
|
||
|
|
}).then(res => {
|
||
|
|
_this.table_list = res.results
|
||
|
|
_this.pathname_previous = res.previous
|
||
|
|
_this.pathname_next = res.next
|
||
|
|
}).catch(err => {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: err.detail,
|
||
|
|
icon: 'close',
|
||
|
|
color: 'negative'
|
||
|
|
})
|
||
|
|
})
|
||
|
|
} else {
|
||
|
|
}
|
||
|
|
},
|
||
|
|
getSearchList () {
|
||
|
|
var _this = this
|
||
|
|
if (LocalStorage.has('auth')) {
|
||
|
|
getauth(_this.pathname + '?supplier_name__icontains=' + _this.filter, {
|
||
|
|
}).then(res => {
|
||
|
|
_this.table_list = res.results
|
||
|
|
_this.pathname_previous = res.previous
|
||
|
|
_this.pathname_next = res.next
|
||
|
|
}).catch(err => {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: err.detail,
|
||
|
|
icon: 'close',
|
||
|
|
color: 'negative'
|
||
|
|
})
|
||
|
|
})
|
||
|
|
} else {
|
||
|
|
}
|
||
|
|
},
|
||
|
|
getListPrevious () {
|
||
|
|
var _this = this
|
||
|
|
if (LocalStorage.has('auth')) {
|
||
|
|
getauth(_this.pathname_previous, {
|
||
|
|
}).then(res => {
|
||
|
|
_this.table_list = res.results
|
||
|
|
_this.pathname_previous = res.previous
|
||
|
|
_this.pathname_next = res.next
|
||
|
|
}).catch(err => {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: err.detail,
|
||
|
|
icon: 'close',
|
||
|
|
color: 'negative'
|
||
|
|
})
|
||
|
|
})
|
||
|
|
} else {
|
||
|
|
}
|
||
|
|
},
|
||
|
|
getListNext () {
|
||
|
|
var _this = this
|
||
|
|
if (LocalStorage.has('auth')) {
|
||
|
|
getauth(_this.pathname_next, {
|
||
|
|
}).then(res => {
|
||
|
|
_this.table_list = res.results
|
||
|
|
_this.pathname_previous = res.previous
|
||
|
|
_this.pathname_next = res.next
|
||
|
|
}).catch(err => {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: err.detail,
|
||
|
|
icon: 'close',
|
||
|
|
color: 'negative'
|
||
|
|
})
|
||
|
|
})
|
||
|
|
} else {
|
||
|
|
}
|
||
|
|
},
|
||
|
|
reFresh () {
|
||
|
|
var _this = this
|
||
|
|
_this.getList()
|
||
|
|
},
|
||
|
|
newDataSubmit () {
|
||
|
|
var _this = this
|
||
|
|
var suppliers = []
|
||
|
|
_this.table_list.forEach(i => {
|
||
|
|
suppliers.push(i.supplier_name)
|
||
|
|
})
|
||
|
|
if (suppliers.indexOf(_this.newFormData.supplier_name) === -1 && _this.newFormData.supplier_name.length !==0) {
|
||
|
|
_this.newFormData.creater = _this.login_name
|
||
|
|
postauth(_this.pathname, _this.newFormData).then(res => {
|
||
|
|
_this.getList()
|
||
|
|
_this.newDataCancel()
|
||
|
|
_this.$q.notify({
|
||
|
|
message: 'Success Create',
|
||
|
|
icon: 'check',
|
||
|
|
color: 'green'
|
||
|
|
})
|
||
|
|
}).catch(err => {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: err.detail,
|
||
|
|
icon: 'close',
|
||
|
|
color: 'negative'
|
||
|
|
})
|
||
|
|
})
|
||
|
|
} else if (suppliers.indexOf(_this.newFormData.supplier_name) !== -1) {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: _this.$t('notice.baseinfoerror.suppliererror'),
|
||
|
|
icon: 'close',
|
||
|
|
color: 'negative'
|
||
|
|
})
|
||
|
|
} else if (_this.newFormData.supplier_name.length === 0) {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: _this.$t('baseinfo.view_supplier.error1'),
|
||
|
|
icon: 'close',
|
||
|
|
color: 'negative'
|
||
|
|
})
|
||
|
|
}
|
||
|
|
suppliers = []
|
||
|
|
},
|
||
|
|
newDataCancel () {
|
||
|
|
var _this = this
|
||
|
|
_this.newForm = false
|
||
|
|
_this.newFormData = {
|
||
|
|
supplier_name: '',
|
||
|
|
supplier_city: '',
|
||
|
|
supplier_address: '',
|
||
|
|
supplier_contact: '',
|
||
|
|
supplier_manager: '',
|
||
|
|
supplier_level: '',
|
||
|
|
creater: ''
|
||
|
|
}
|
||
|
|
},
|
||
|
|
editData (e) {
|
||
|
|
var _this = this
|
||
|
|
_this.editMode = true
|
||
|
|
_this.editid = e.id
|
||
|
|
_this.editFormData = {
|
||
|
|
supplier_name: e.supplier_name,
|
||
|
|
supplier_city: e.supplier_city,
|
||
|
|
supplier_address: e.supplier_address,
|
||
|
|
supplier_contact: e.supplier_contact,
|
||
|
|
supplier_manager: e.supplier_manager,
|
||
|
|
supplier_level: e.supplier_level,
|
||
|
|
creater: _this.login_name
|
||
|
|
}
|
||
|
|
},
|
||
|
|
editDataSubmit () {
|
||
|
|
var _this = this
|
||
|
|
putauth(_this.pathname + _this.editid + '/', _this.editFormData).then(res => {
|
||
|
|
_this.editDataCancel()
|
||
|
|
_this.getList()
|
||
|
|
_this.$q.notify({
|
||
|
|
message: 'Success Edit Data',
|
||
|
|
icon: 'check',
|
||
|
|
color: 'green'
|
||
|
|
})
|
||
|
|
}).catch(err => {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: err.detail,
|
||
|
|
icon: 'close',
|
||
|
|
color: 'negative'
|
||
|
|
})
|
||
|
|
})
|
||
|
|
},
|
||
|
|
editDataCancel () {
|
||
|
|
var _this = this
|
||
|
|
_this.editMode = false
|
||
|
|
_this.editid = 0
|
||
|
|
_this.editFormData = {
|
||
|
|
supplier_name: '',
|
||
|
|
supplier_city: '',
|
||
|
|
supplier_address: '',
|
||
|
|
supplier_contact: '',
|
||
|
|
supplier_manager: '',
|
||
|
|
supplier_level: '',
|
||
|
|
creater: ''
|
||
|
|
}
|
||
|
|
},
|
||
|
|
deleteData (e) {
|
||
|
|
var _this = this
|
||
|
|
_this.deleteForm = true
|
||
|
|
_this.deleteid = e
|
||
|
|
},
|
||
|
|
deleteDataSubmit () {
|
||
|
|
var _this = this
|
||
|
|
deleteauth(_this.pathname + _this.deleteid + '/').then(res => {
|
||
|
|
_this.deleteDataCancel()
|
||
|
|
_this.getList()
|
||
|
|
_this.$q.notify({
|
||
|
|
message: 'Success Edit Data',
|
||
|
|
icon: 'check',
|
||
|
|
color: 'green'
|
||
|
|
})
|
||
|
|
}).catch(err => {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: err.detail,
|
||
|
|
icon: 'close',
|
||
|
|
color: 'negative'
|
||
|
|
})
|
||
|
|
})
|
||
|
|
},
|
||
|
|
deleteDataCancel () {
|
||
|
|
var _this = this
|
||
|
|
_this.deleteForm = false
|
||
|
|
_this.deleteid = 0
|
||
|
|
},
|
||
|
|
downloadData () {
|
||
|
|
var _this = this
|
||
|
|
if (LocalStorage.has('auth')) {
|
||
|
|
getfile(_this.pathname + 'file/?lang=' + LocalStorage.getItem('lang')).then(res => {
|
||
|
|
var timeStamp = Date.now()
|
||
|
|
var formattedString = date.formatDate(timeStamp, 'YYYYMMDDHHmmssSSS')
|
||
|
|
const status = exportFile(
|
||
|
|
_this.pathname + formattedString + '.csv',
|
||
|
|
'\uFEFF' + res.data,
|
||
|
|
'text/csv'
|
||
|
|
)
|
||
|
|
if (status !== true) {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: 'Browser denied file download...',
|
||
|
|
color: 'negative',
|
||
|
|
icon: 'warning'
|
||
|
|
})
|
||
|
|
}
|
||
|
|
})
|
||
|
|
} else {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: _this.$t('notice.loginerror'),
|
||
|
|
color: 'negative',
|
||
|
|
icon: 'warning'
|
||
|
|
})
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
created () {
|
||
|
|
var _this = this
|
||
|
|
if (LocalStorage.has('openid')) {
|
||
|
|
_this.openid = LocalStorage.getItem('openid')
|
||
|
|
} else {
|
||
|
|
_this.openid = ''
|
||
|
|
LocalStorage.set('openid', '')
|
||
|
|
}
|
||
|
|
if (LocalStorage.has('login_name')) {
|
||
|
|
_this.login_name = LocalStorage.getItem('login_name')
|
||
|
|
} else {
|
||
|
|
_this.login_name = ''
|
||
|
|
LocalStorage.set('login_name', '')
|
||
|
|
}
|
||
|
|
if (LocalStorage.has('auth')) {
|
||
|
|
_this.authin = '1'
|
||
|
|
_this.getList()
|
||
|
|
} else {
|
||
|
|
_this.authin = '0'
|
||
|
|
}
|
||
|
|
},
|
||
|
|
mounted () {
|
||
|
|
var _this = this
|
||
|
|
if (_this.$q.platform.is.electron) {
|
||
|
|
_this.height = String(_this.$q.screen.height - 290) + 'px'
|
||
|
|
} else {
|
||
|
|
_this.height = _this.$q.screen.height - 290 + '' + 'px'
|
||
|
|
}
|
||
|
|
},
|
||
|
|
updated () {
|
||
|
|
},
|
||
|
|
destroyed () {
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|