433 lines
16 KiB
Vue
433 lines
16 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-card>
|
|
<!--<h3 style="margin-top: 0">采购合同</h3>-->
|
|
<el-table v-loading="" :data="tableData1" border stripe style="width: 100%;height: 150px;" height="300px" size="mini" highlight-current-row @row-click="searchTable01">
|
|
<el-table-column label="供应商" align="center" min-width="170">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.供应商名称 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="请款时间" align="center" min-width="150">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.请款时间 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="请款人" align="center" min-width="100">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.姓名 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="请款金额(元)" align="center" min-width="100" prop="请款金额">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.请款金额 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="审核" align="center" width="200">
|
|
<template slot-scope="scope">
|
|
<el-button type="text" size="mini" icon="el-icon-check" @click="yesApproval(scope.row)">通过</el-button>
|
|
<el-button type="text" size="mini" icon="el-icon-close" @click="noApproval(scope.row)">不通过</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<div class="block" style="margin-top: 10px;">
|
|
<el-pagination
|
|
:current-page="pageCurrent1"
|
|
:page-sizes="[10, 20, 30, 40]"
|
|
:page-size="pageSize1"
|
|
:total="total1"
|
|
style="display:inline-block;width:50%"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
@size-change="handleSizeChange1"
|
|
@current-change="handleCurrentChange1"/>
|
|
</div>
|
|
</el-card>
|
|
<!--<h3 style="">合同明细</h3>-->
|
|
<el-row>
|
|
<el-col :span="10">
|
|
<el-table :data="gridData1" :summary-method="getSummaries2" border stripe highlight-current-row size="mini" show-summary @row-click="searchContactDetail">
|
|
<el-table-column min-width="150" align="center" label="合同编号">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.采购合同编号 ? scope.row.采购合同编号 : scope.row.离线合同编号 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column width="120" align="center" label="到货金额(元)" prop="到货金额">
|
|
<template slot-scope="scope">
|
|
{{ parseFloat(scope.row.到货金额).toFixed(2) }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column width="120" align="center" label="已付金额(元)" prop="已付金额">
|
|
<template slot-scope="scope">
|
|
{{ parseFloat(scope.row.已付金额).toFixed(2) }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column width="120" align="center" label="请款金额(元)" prop="请款金额">
|
|
<template slot-scope="scope">
|
|
{{ parseFloat(scope.row.请款金额).toFixed(2) }}
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-col>
|
|
<el-col :span="14">
|
|
<el-table :data="contractDetail2" :summary-method="getSummaries" border height="500px" size="mini" stripe show-summary>
|
|
<el-table-column label="物料名称" align="center" min-width="150">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.物料名称 ? scope.row.物料名称 : scope.row.零件名称 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="物料规格" align="center" min-width="260">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.物料规格 ? scope.row.物料规格 : scope.row.规格 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="物料型号" align="center" width="150">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.物料型号 ? scope.row.物料型号 : scope.row.零件图号 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="采购数量" align="center" width="80">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.数量 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="到货数量" align="center" width="80">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.合同类型 === 1 ? scope.row.已到货数量 : scope.row.到货数量 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="小计(元)" align="center" min-width="100" prop="合计">
|
|
<template slot-scope="scope">
|
|
{{ (parseFloat(scope.row.单价||0) * parseInt(scope.row.数量||0)).toFixed(2) }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="单价" align="center" min-width="100" prop="单价">
|
|
<template slot-scope="scope">
|
|
{{ parseFloat(scope.row.单价||0).toFixed(2) }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="交货期要求" align="center" min-width="100" prop="交货期要求">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.合同类型 === 1 ? scope.row.交货期.split(' ')[0] === '1900-01-01' ? '-' : scope.row.交货期.split(' ')[0] : scope.row.交货期要求 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="备注" align="center" min-width="150" prop="备注">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.备注 }}
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { initApproval, execApproval, initApprovalOffline, searchRequsetFundDetail1, searchRequsetFundDetail2, execApprovalOffline, searchContactDetail, searchMateriel } from '@/api/PurchasingCenter/FundApproval'
|
|
import { mapGetters } from 'vuex'
|
|
import $ from 'jquery'
|
|
|
|
export default {
|
|
name: '', // 管理审批
|
|
data() {
|
|
return {
|
|
contractDetail1: '',
|
|
contractDetail2: [],
|
|
tableData1: [],
|
|
pageSize1: 10,
|
|
pageCurrent1: 1,
|
|
total1: 0,
|
|
tableData2: [],
|
|
pageSize2: 10,
|
|
pageCurrent2: 1,
|
|
total2: 0,
|
|
gridData1: [],
|
|
gridData2: []
|
|
}
|
|
},
|
|
computed: {
|
|
...mapGetters([
|
|
'sidebar',
|
|
'avatar',
|
|
'name',
|
|
'id' // 人员编号
|
|
])
|
|
},
|
|
created() {
|
|
this.fetchData()
|
|
},
|
|
methods: {
|
|
getSummaries2(param) { // 合计
|
|
const { columns, data } = param
|
|
const sums = []
|
|
columns.forEach((column, index) => {
|
|
if (index === 0) {
|
|
sums[index] = '合计'
|
|
return
|
|
} else if (index === 2 || index === 3) {
|
|
const values = data.map(item => Number(item[column.property]))
|
|
if (!values.every(value => isNaN(value))) {
|
|
sums[index] = values.reduce((prev, curr) => {
|
|
const value = Number(curr)
|
|
if (!isNaN(value)) {
|
|
return prev + curr
|
|
} else {
|
|
return prev
|
|
}
|
|
}, 0)
|
|
sums[index] = sums[index].toFixed(2) + ' 元'
|
|
} else {
|
|
sums[index] = 'N/A'
|
|
}
|
|
}
|
|
})
|
|
return sums
|
|
},
|
|
showOffline(row) {
|
|
const children = document.getElementsByClassName('tableData')
|
|
const parent = document.getElementsByClassName('offlineContract')[0]
|
|
if (children.length !== 0) {
|
|
for (let i = children.length - 1; i >= 0; i--) {
|
|
parent.removeChild(children[i])
|
|
}
|
|
}
|
|
const tr = []
|
|
let length = 0
|
|
this.contractDetail2.length < 15 ? length = 15 : length = this.contractDetail2.length
|
|
for (let i = 0; i < length; i++) {
|
|
tr[i] = document.createElement('tr')
|
|
tr[i].setAttribute('class', 'tableData')
|
|
tr[i].innerHTML = `<td style="height: 40px"/><td colspan="2" style="height: 40px"/><td style="height: 40px"/><td colspan="2" style="height: 40px"/><td style="height: 40px"/><td colspan="2" style="height: 40px"/><td colspan="2" style="height: 40px"/><td style="height: 40px"/><td colspan="2" style="height: 40px"/>`
|
|
$('#tablehead').after(tr[i])
|
|
}
|
|
let total = 0
|
|
for (let j = 0; j < this.contractDetail2.length; j++) {
|
|
document.getElementsByClassName('tableData')[j].children[0].innerHTML = j + 1
|
|
document.getElementsByClassName('tableData')[j].children[1].innerHTML = this.contractDetail2[j].物料名称
|
|
document.getElementsByClassName('tableData')[j].children[2].innerHTML = this.contractDetail2[j].物料规格
|
|
document.getElementsByClassName('tableData')[j].children[3].innerHTML = this.contractDetail2[j].物料型号
|
|
document.getElementsByClassName('tableData')[j].children[4].innerHTML = this.contractDetail2[j].数量
|
|
document.getElementsByClassName('tableData')[j].children[5].innerHTML = this.contractDetail2[j].单价
|
|
document.getElementsByClassName('tableData')[j].children[6].innerHTML = (this.contractDetail2[j].数量 * this.contractDetail2[j].单价).toFixed(2)
|
|
document.getElementsByClassName('tableData')[j].children[7].innerHTML = this.contractDetail2[j].交货期要求
|
|
document.getElementsByClassName('tableData')[j].children[8].innerHTML = this.contractDetail2[j].备注
|
|
total += Number(this.contractDetail2[j].数量 * this.contractDetail2[j].单价)
|
|
}
|
|
total = total.toFixed(2)
|
|
document.getElementById('contractNum').innerHTML = row.离线合同编号
|
|
document.getElementById('contractName').innerHTML = row.离线合同名称
|
|
document.getElementById('supplier').innerHTML = row.供应商名称
|
|
document.getElementById('buyer').innerHTML = row.采购员
|
|
document.getElementById('total').innerHTML = total
|
|
document.getElementById('remark').innerHTML = row.离线合同备注
|
|
},
|
|
searchContactDetail(row) {
|
|
var check
|
|
row.采购合同流水号 ? check = 1 : check = 2
|
|
searchContactDetail(check, row.采购合同流水号, row.离线合同流水号).then(response => {
|
|
this.contractDetail2 = response.data
|
|
})
|
|
},
|
|
searchOfflineContactDetail(row) { // 查询离线合同明细
|
|
searchMateriel(row.离线合同流水号).then(response => {
|
|
this.contractDetail2 = response.data
|
|
this.showOffline(row)
|
|
})
|
|
},
|
|
getSummaries(param) { // 合计
|
|
const { columns, data } = param
|
|
const sums = []
|
|
columns.forEach((column, index) => {
|
|
if (index === 0) {
|
|
sums[index] = '总价'
|
|
} else if (index === 3) {
|
|
const values = data.map(item => Number(parseFloat(item['数量'])))
|
|
if (!values.every(value => isNaN(value))) {
|
|
sums[index] = values.reduce((prev, curr) => {
|
|
const value = Number(curr)
|
|
if (!isNaN(value)) {
|
|
return prev + curr
|
|
} else {
|
|
return prev
|
|
}
|
|
}, 0)
|
|
sums[index] = sums[index] + ' 件'
|
|
} else {
|
|
sums[index] = '0'
|
|
}
|
|
} else if (index === 4) {
|
|
for (let i = 0; i < data.length; i++) {
|
|
if (!data[i].到货数量) {
|
|
data[i].到货数量 = 0
|
|
}
|
|
if (!data[i].已到货数量) {
|
|
data[i].已到货数量 = 0
|
|
}
|
|
}
|
|
const values = data.map(item => Number(parseInt(item['到货数量'])) + Number(parseInt(item['已到货数量'])))
|
|
if (!values.every(value => isNaN(value))) {
|
|
sums[index] = values.reduce((prev, curr) => {
|
|
const value = Number(curr)
|
|
if (!isNaN(value)) {
|
|
return prev + curr
|
|
} else {
|
|
return prev
|
|
}
|
|
}, 0)
|
|
sums[index] = sums[index] + ' 件'
|
|
} else {
|
|
sums[index] = '0'
|
|
}
|
|
}
|
|
})
|
|
return sums
|
|
},
|
|
fetchData() {
|
|
this.searchTable1()
|
|
this.searchTable2()
|
|
},
|
|
searchTable1() {
|
|
this.tableData1 = []
|
|
this.gridData1 = []
|
|
this.contractDetail2 = []
|
|
initApproval(this.pageCurrent1, this.pageSize1, 1).then(response => {
|
|
this.tableData1 = response.data.rows
|
|
this.total1 = response.data.total
|
|
})
|
|
},
|
|
handleSizeChange1(val) {
|
|
this.pageSize1 = val
|
|
this.pageCurrent1 = 1
|
|
this.searchTable1()
|
|
},
|
|
handleCurrentChange1(val) {
|
|
this.pageCurrent1 = val
|
|
this.searchTable1()
|
|
},
|
|
searchTable2() {
|
|
initApprovalOffline(this.pageCurrent2, this.pageSize2, 1).then(response => {
|
|
this.tableData2 = response.data.rows
|
|
this.total2 = response.data.total
|
|
})
|
|
},
|
|
handleSizeChange2(val) {
|
|
this.pageSize2 = val
|
|
this.pageCurrent2 = 1
|
|
this.searchTable2()
|
|
},
|
|
handleCurrentChange2(val) {
|
|
this.pageCurrent2 = val
|
|
this.searchTable2()
|
|
},
|
|
searchTable01(row) { // 查看详情(请款信息包含的合同)
|
|
this.gridData1 = []
|
|
this.contractDetail2 = []
|
|
searchRequsetFundDetail1(row.采购合同请款流水号).then(response => {
|
|
console.log(typeof response.data)
|
|
this.gridData1 = response.data
|
|
})
|
|
},
|
|
searchTable02(row) { // 查看详情(请款信息包含的合同)
|
|
searchRequsetFundDetail2(row.离线合同请款流水号).then(response => {
|
|
this.gridData2 = response.data
|
|
})
|
|
},
|
|
yesApproval(row) { // 通过审批
|
|
this.$confirm('确定审批通过?', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
execApproval(row.采购合同请款流水号, 1, '通过', this.id, 1).then(response => {
|
|
if (response.data[0].result === '1') {
|
|
this.$message.success('执行成功')
|
|
this.searchTable1()
|
|
} else { this.$message.error('执行失败') }
|
|
})
|
|
}).catch(() => {
|
|
this.$message({
|
|
type: 'info',
|
|
message: '取消操作'
|
|
})
|
|
})
|
|
},
|
|
noApproval(row) { // 不通过审批
|
|
this.$prompt('请输入不通过原因', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消'
|
|
}).then(({ value }) => {
|
|
execApproval(row.采购合同请款流水号, 2, value, this.id, 1).then(response => {
|
|
if (response.data[0].result === '1') {
|
|
this.$message.success('执行成功')
|
|
this.searchTable1()
|
|
} else { this.$message.error('执行失败') }
|
|
})
|
|
}).catch(() => {
|
|
this.$message({
|
|
type: 'info',
|
|
message: '取消操作'
|
|
})
|
|
})
|
|
},
|
|
yesApprovalOffline(row) { // 通过审核
|
|
this.$confirm('确定审核通过?', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
execApprovalOffline(row.离线合同请款流水号, 1, '通过', this.id, 1).then(response => {
|
|
if (response.data[0].result === '1') {
|
|
this.$message.success('执行成功')
|
|
this.searchTable2()
|
|
} else { this.$message.error('执行失败') }
|
|
})
|
|
}).catch(() => {
|
|
this.$message({
|
|
type: 'info',
|
|
message: '取消操作'
|
|
})
|
|
})
|
|
},
|
|
noApprovalOffline(row) { // 不通过审核
|
|
this.$prompt('请输入不通过原因', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消'
|
|
}).then(({ value }) => {
|
|
execApprovalOffline(row.离线合同请款流水号, 2, value, this.id, 1).then(response => {
|
|
if (response.data[0].result === '1') {
|
|
this.$message.success('执行成功')
|
|
this.searchTable2()
|
|
} else { this.$message.error('执行失败') }
|
|
})
|
|
}).catch(() => {
|
|
this.$message({
|
|
type: 'info',
|
|
message: '取消操作'
|
|
})
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.el-card{
|
|
margin-bottom: 15px;
|
|
}
|
|
.el-select{
|
|
width:200px
|
|
}
|
|
.el-input{
|
|
width:200px
|
|
}
|
|
span{
|
|
margin: 10px 0 10px 10px;
|
|
}
|
|
.searchForm .el-form-item{
|
|
margin-bottom: 5px;
|
|
}
|
|
.el-tag{
|
|
margin: 0
|
|
}
|
|
</style>
|