763 lines
28 KiB
Vue
763 lines
28 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
|
|
<el-card>
|
|
<el-row>
|
|
<span>表单号:</span>
|
|
<el-input v-model="FormNumber" placeholder="表单号" clearable size="small" style="width:190px;margin:10px;"/>
|
|
<span>任务下达时间段:</span>
|
|
<el-date-picker
|
|
v-model="date1"
|
|
style="width:190px;margin:10px;"
|
|
size="small"
|
|
type="date"
|
|
value-format="yyyy-MM-dd"
|
|
format="yyyy-MM-dd"
|
|
placeholder="选择日期"/>
|
|
<span>~</span>
|
|
<el-date-picker
|
|
v-model="date2"
|
|
style="width:190px;margin:10px;"
|
|
size="small"
|
|
type="date"
|
|
value-format="yyyy-MM-dd"
|
|
format="yyyy-MM-dd"
|
|
placeholder="选择日期"/>
|
|
</el-row>
|
|
<el-row>
|
|
<span>厂家名:</span>
|
|
<el-select v-model="ManufacturerNameValue" placeholder="选择外协厂家" filterable clearable size="small" style="width:190px;margin:10px;">
|
|
<el-option
|
|
v-for="item in ManufacturerName"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value"/>
|
|
</el-select>
|
|
<span>实际付款时间段:</span>
|
|
<el-date-picker
|
|
v-model="date3"
|
|
style="width:190px;margin:10px;"
|
|
size="small"
|
|
type="date"
|
|
value-format="yyyy-MM-dd"
|
|
format="yyyy-MM-dd"
|
|
placeholder="选择日期"/>
|
|
<span>~</span>
|
|
<el-date-picker
|
|
v-model="date4"
|
|
style="width:190px;margin:10px;"
|
|
size="small"
|
|
type="date"
|
|
value-format="yyyy-MM-dd"
|
|
format="yyyy-MM-dd"
|
|
placeholder="选择日期"/>
|
|
<el-button type="success" class="el-icon-search" size="small" @click="pageCurrent=1;pageSize=10;total=null;pageCurrent2=1;pageSize2=10;total2=null;searchTable()">查询</el-button>
|
|
</el-row>
|
|
</el-card>
|
|
<el-card>
|
|
<el-table v-loading="loading" :data="tableData" height="580" size="mini" stripe style="width: 100%;" border highlight-current-row element-loading-text="拼命加载中" @row-click="getParts">
|
|
<el-table-column
|
|
label="序号"
|
|
type="index"
|
|
align="center"
|
|
fixed="left"
|
|
width="50"/>
|
|
<el-table-column label="付款状态" prop="实际付款时间" width="100" align="center" fixed="left">
|
|
<template slot-scope="scope">
|
|
<el-tag v-if="scope.row.实际付款时间!==''" type="success" size="small">已付</el-tag>
|
|
<el-tag v-else type="info" size="small">未付</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="到货状态" prop="单据状态" width="100" align="center" fixed="left">
|
|
<template slot-scope="scope">
|
|
<el-tag v-if="scope.row.单据状态==='3'" type="success" size="small">已到</el-tag>
|
|
<el-tag v-else type="info" size="small">未到</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="表单号" prop="表单号" align="center" min-width="200px" fixed="left">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.表单号 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="外协厂家" prop="外协厂家名称" align="center" min-width="200px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.外协厂家名称 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="任务下达日期" prop="任务下达日期" align="center" min-width="125px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.任务下达日期 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="外协员" prop="外协员姓名" align="center" width="90px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.外协员姓名 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="加工价格" align="center">
|
|
<el-table-column label="预算总价" align="center" width="85px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.加工价格_预算_总价 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="成交总价" align="center" width="85px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.加工价格_成交_总价 }}
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="材料费" align="center" min-width="70px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.材料价格_价格_总价 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="运费" align="center" min-width="70px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.运费 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="其他费用" align="center" min-width="70px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.其他价格_总价 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="总价" align="center" min-width="70px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.总价 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="扣款" align="center">
|
|
<el-table-column label="质量" align="center" min-width="70px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.扣款_质量 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="计划" align="center" min-width="70px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.扣款_计划 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="其他" align="center" min-width="70px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.扣款_其他 }}
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="应付金额" align="center" min-width="70px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.应付总额 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="付款日期" align="center" width="240px">
|
|
<el-table-column label="入库" align="center" min-width="70px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.入库时间 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="计划" align="center" min-width="70px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.计划付款时间 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="实际" align="center" min-width="70px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.实际付款时间 }}
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="扣款说明" align="center" min-width="120px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.扣款说明 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" align="center" width="280px" fixed="right">
|
|
<template slot-scope="scope">
|
|
<el-tooltip :open-delay="1200" effect="dark" content="记录外协付款到票信息" placement="top">
|
|
<el-button
|
|
:disabled="scope.row.实际付款时间!==''"
|
|
size="mini"
|
|
type="primary"
|
|
plain
|
|
class="el-icon-check"
|
|
@click="editType1(scope.row, 'form');param = 0">到票</el-button>
|
|
</el-tooltip>
|
|
<el-tooltip :open-delay="1200" effect="dark" content="记录外协扣款信息" placement="top">
|
|
<el-button
|
|
:disabled="scope.row.实际付款时间!==''"
|
|
size="mini"
|
|
type="primary"
|
|
plain
|
|
class="el-icon-edit"
|
|
@click="Withdrawing(scope.$index, scope.row, 'form2')">扣款</el-button>
|
|
</el-tooltip>
|
|
<el-tooltip :open-delay="1200" effect="dark" content="付款信息" placement="top">
|
|
<el-button
|
|
:disabled="scope.row.实际付款时间!==''||scope.row.单据状态!=='3'"
|
|
size="mini"
|
|
type="success"
|
|
class="el-icon-check"
|
|
@click="payment(scope.$index, scope.row)">付款</el-button>
|
|
</el-tooltip>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<div class="block">
|
|
<el-pagination
|
|
v-if="!loading"
|
|
:current-page="pageCurrent"
|
|
:page-sizes="[10, 20, 30, 40]"
|
|
:page-size="pageSize"
|
|
:total="total"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
@size-change="handleSizeChange"
|
|
@current-change="handleCurrentChange"/>
|
|
</div>
|
|
</el-card>
|
|
|
|
<el-card>
|
|
<el-table v-loading="loading2" :data="tableData2" :summary-method="getSummaries" size="mini" stripe height="370" show-summary style="width: 100%;" border element-loading-text="拼命加载中">
|
|
<el-table-column label="发票号" prop="发票号" align="center" width="230px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.发票号 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="接收人" prop="接收人" align="center" width="180px">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.接收人 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="开户行" align="center">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.开户行 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="开票金额" align="center" width="150px" prop="开票金额">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.开票金额 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="开票日期" align="center">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.开票时间 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="接收日期" align="center">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.接收时间 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="备注" align="center">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.备注 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" align="center" width="200px" fixed="right">
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
:disabled="fukuanshijian!==''"
|
|
size="mini"
|
|
type="primary"
|
|
plain
|
|
class="el-icon-edit"
|
|
@click="handleChange1(scope.$index, scope.row, 'form');param = 1">编辑</el-button>
|
|
<el-button
|
|
:disabled="fukuanshijian!==''"
|
|
size="mini"
|
|
type="danger"
|
|
plain
|
|
class="el-icon-delete"
|
|
@click="handleDelete(scope.$index, scope.row)">删除</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<div class="block">
|
|
<el-pagination
|
|
v-if="!loading2"
|
|
:current-page="pageCurrent2"
|
|
:page-sizes="[10, 20, 30, 40]"
|
|
:page-size="pageSize2"
|
|
:total="total2"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
@size-change="handleSizeChange2"
|
|
@current-change="handleCurrentChange2"/>
|
|
</div>
|
|
</el-card>
|
|
|
|
<el-dialog v-el-drag-dialog :visible.sync="dialogFormVisible2" title="扣款" center style="min-height: 300px" width="800px">
|
|
<el-form ref="form2" :model="form2" :rules="rules" label-position="left" label-width="110px" class="demo-ruleForm">
|
|
<el-form-item label="质量" style="margin-left: 200px">
|
|
<el-input v-model="form2.质量" placeholder="质量" size="small" style="width:200px"/>
|
|
</el-form-item>
|
|
<el-form-item label="计划" style="margin-left: 200px">
|
|
<el-input v-model="form2.计划" placeholder="计划" size="small" style="width:200px"/>
|
|
</el-form-item>
|
|
<el-form-item label="其他" style="margin-left: 200px">
|
|
<el-input v-model="form2.其他" placeholder="其他" size="small" style="width:200px"/>
|
|
</el-form-item>
|
|
<el-form-item label="扣款说明" prop="扣款说明" style="margin-left: 200px">
|
|
<el-input v-model="form2.扣款说明" placeholder="扣款说明" size="small" style="width:200px"/>
|
|
</el-form-item>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button @click="callOff2('form2')">取消</el-button>
|
|
<el-button type="primary" @click="submit2('form2')">确定</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
|
|
<el-dialog v-el-drag-dialog :title="title1" :visible.sync="dialogFormVisible" center style="min-height: 300px" width="700px">
|
|
<el-form ref="form" :model="form" :rules="rules" label-position="left" label-width="90px" class="demo-ruleForm">
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="发票号" prop="发票号" >
|
|
<el-input v-model="form.发票号" placeholder="发票号" style="width:200px" clearable size="small"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="开票金额" prop="开票金额">
|
|
<el-input v-model="form.开票金额" placeholder="开票金额" style="width:200px" clearable size="small"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="开票时间" prop="开票时间">
|
|
<el-date-picker
|
|
v-model="form.开票时间"
|
|
style="width:200px"
|
|
size="small"
|
|
type="date"
|
|
value-format="yyyy-MM-dd"
|
|
format="yyyy-MM-dd"
|
|
clearable
|
|
placeholder="开票时间"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="开户行" prop="开户行">
|
|
<el-input v-model="form.开户行" placeholder="开户行" style="width:200px" clearable size="small" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="接收人" prop="接收人">
|
|
<el-input v-model="form.接收人" placeholder="接收人" style="width:200px" clearable size="small"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="接收时间" prop="接收时间">
|
|
<el-date-picker
|
|
v-model="form.接收时间"
|
|
style="width:200px"
|
|
size="small"
|
|
type="date"
|
|
value-format="yyyy-MM-dd"
|
|
format="yyyy-MM-dd"
|
|
clearable
|
|
placeholder="接收时间"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="24">
|
|
<el-form-item label="备注" prop="备注">
|
|
<el-input v-model="form.备注" :rows="2" placeholder="备注" type="textarea" style="width:527px" clearable size="small"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button @click="callOff('form')">取消</el-button>
|
|
<el-button type="primary" @click="submit('form')" >确定</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { initOutHelp, searchtable, payTime, WithdrawingEdit, getParts, edittype, handlechange, handledelete } from '@/api/Outsourcing/OutsourcingPaymentPlanManagement'
|
|
export default {
|
|
data() {
|
|
return {
|
|
fukuanshijian: '',
|
|
title1: '',
|
|
dialogFormVisible: false,
|
|
renwudan: '',
|
|
count1: 0,
|
|
count2: 0,
|
|
form: {
|
|
发票号: '',
|
|
开户行: '',
|
|
开票时间: '',
|
|
开票金额: '',
|
|
接收人: '',
|
|
接收时间: '',
|
|
备注: ''
|
|
},
|
|
实际付款时间: '',
|
|
loading: false,
|
|
loading2: false,
|
|
zhongjianbianliang: '',
|
|
dialogFormVisible2: false,
|
|
form2: {
|
|
质量: '',
|
|
计划: '',
|
|
其他: '',
|
|
扣款说明: ''
|
|
},
|
|
rules: {
|
|
发票号: [{ required: true, message: '请输入发票号', trigger: 'blur' }],
|
|
开票金额: [{ required: true, message: '请输入开票金额', trigger: 'blur' }],
|
|
扣款说明: [{ required: true, message: '请输入扣款说明', trigger: 'blur' }]
|
|
},
|
|
date1: '',
|
|
date2: '',
|
|
date3: '',
|
|
date4: '',
|
|
FormNumber: '',
|
|
ManufacturerNameValue: '',
|
|
ManufacturerName: [], // 厂家名称
|
|
FormNumber_check: false,
|
|
ManufacturerNameValue_check: false,
|
|
date1_check: false,
|
|
date3_check: false,
|
|
tableData: [], // 表格数据
|
|
total: null, // 总条数
|
|
pageSize: 10, // 每页显示条数
|
|
pageCurrent: 1, // 后台获取页
|
|
tableData2: [], // 表格数据
|
|
total2: null, // 总条数
|
|
pageSize2: 10, // 每页显示条数
|
|
pageCurrent2: 1 // 后台获取页
|
|
}
|
|
},
|
|
created() {
|
|
this.fetchData()
|
|
this.searchTable()
|
|
},
|
|
methods: {
|
|
getSummaries(param) {
|
|
const { columns, data } = param
|
|
const sums = []
|
|
columns.forEach((column, index) => {
|
|
if (index === 0) {
|
|
sums[index] = '总金额'
|
|
return
|
|
}
|
|
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] += ' 元'
|
|
} else {
|
|
sums[index] = ''
|
|
}
|
|
})
|
|
return sums
|
|
},
|
|
// 初始化外协厂家
|
|
fetchData() {
|
|
this.ManufacturerName = []
|
|
initOutHelp().then(response => {
|
|
for (let i = 0; i < response.data.length; i++) {
|
|
this.ManufacturerName.push({
|
|
label: response.data[i].外协厂家名称,
|
|
value: response.data[i].外协厂家流水号
|
|
})
|
|
}
|
|
})
|
|
},
|
|
// 查询表格数据
|
|
searchTable() {
|
|
this.loading = true
|
|
if (this.FormNumber === '' || this.FormNumber === null) {
|
|
this.FormNumber_check = false
|
|
} else {
|
|
this.FormNumber_check = true
|
|
}
|
|
if (this.ManufacturerNameValue === '' || this.ManufacturerNameValue === null) {
|
|
this.ManufacturerNameValue_check = false
|
|
} else {
|
|
this.ManufacturerNameValue_check = true
|
|
}
|
|
if (this.date1 === '' || this.date1 === null) {
|
|
this.date1_check = false
|
|
} else {
|
|
this.date1_check = true
|
|
}
|
|
if (this.date3 === '' || this.date3 === null) {
|
|
this.date3_check = false
|
|
} else {
|
|
this.date3_check = true
|
|
}
|
|
this.tableData = []
|
|
this.tableData2 = []
|
|
searchtable(this.FormNumber_check, this.FormNumber, this.ManufacturerNameValue_check, this.ManufacturerNameValue, this.date1_check, this.date1, this.date2, this.date3_check, this.date3, this.date4, this.pageCurrent, this.pageSize).then(response => {
|
|
for (let i = 0; i < response.data.rows.length; i++) {
|
|
response.data.rows[i].任务下达日期 = response.data.rows[i].任务下达日期.substring(0, response.data.rows[i].任务下达日期.indexOf(' '))
|
|
response.data.rows[i].实际付款时间 = response.data.rows[i].实际付款时间.substring(0, response.data.rows[i].实际付款时间.indexOf(' '))
|
|
}
|
|
this.tableData = response.data.rows
|
|
this.total = response.data.total
|
|
}).then(() => {
|
|
this.loading = false
|
|
})
|
|
},
|
|
// 付款
|
|
payment(index, row) {
|
|
this.$confirm('请仔细核对信息,确定后不可更改, 是否继续?', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'success'
|
|
}).then(() => {
|
|
var time = new Date()
|
|
var month = time.getMonth() + 1
|
|
var day = time.getDate()
|
|
if (month >= 1 && month <= 9) {
|
|
month = '0' + month
|
|
}
|
|
if (day >= 1 && day <= 9) {
|
|
day = '0' + day
|
|
}
|
|
this.实际付款时间 = time.getFullYear() + '/' + month + '/' + day
|
|
payTime(row.外协加工任务单流水号, this.实际付款时间).then(response => {
|
|
if (response.data[0].result === '1') {
|
|
this.$message.success('付款成功')
|
|
this.searchTable()
|
|
} else {
|
|
this.$message.error('付款失败')
|
|
}
|
|
})
|
|
}).catch(() => {
|
|
this.$message({
|
|
type: 'info',
|
|
message: '已取消付款'
|
|
})
|
|
})
|
|
},
|
|
// 打开扣款编辑
|
|
Withdrawing(index, row) {
|
|
if (this.$refs['form2'] !== undefined) {
|
|
this.$refs['form2'].resetFields()
|
|
}
|
|
this.form2.质量 = row.扣款_质量
|
|
this.form2.计划 = row.扣款_计划
|
|
this.form2.其他 = row.扣款_其他
|
|
this.form2.扣款说明 = row.扣款说明
|
|
this.liushuihao = row.外协加工任务单流水号
|
|
this.dialogFormVisible2 = true
|
|
},
|
|
// 扣款编辑确定
|
|
submit2(formName) {
|
|
this.$refs[formName].validate((valid) => {
|
|
if (valid) {
|
|
this.WithdrawingEdit()
|
|
}
|
|
})
|
|
},
|
|
// 扣款编辑
|
|
WithdrawingEdit() {
|
|
WithdrawingEdit(this.liushuihao, this.form2.质量, this.form2.计划, this.form2.其他, this.form2.扣款说明).then(response => {
|
|
if (response.data[0].result === '1') {
|
|
this.$message.success('修改成功')
|
|
this.searchTable()
|
|
} else {
|
|
this.$message.error('修改失败')
|
|
}
|
|
this.dialogFormVisible2 = false
|
|
})
|
|
},
|
|
// 关闭扣款编辑
|
|
callOff2(formName) {
|
|
this.dialogFormVisible2 = false
|
|
this.$refs[formName].resetFields()
|
|
},
|
|
// 获取表格2数据
|
|
getParts(row) {
|
|
this.loading2 = true
|
|
this.tableData2 = []
|
|
this.zhongjianbianliang = row.外协加工任务单流水号
|
|
this.fukuanshijian = row.实际付款时间
|
|
getParts(row.外协加工任务单流水号, this.pageCurrent2, this.pageSize2).then(response => {
|
|
if (response.data.rows.length === 0) {
|
|
this.loading2 = false
|
|
} else {
|
|
for (let i = 0; i < response.data.rows.length; i++) {
|
|
response.data.rows[i].开票时间 = response.data.rows[i].开票时间.substring(0, response.data.rows[i].开票时间.indexOf(' '))
|
|
response.data.rows[i].接收时间 = response.data.rows[i].接收时间.substring(0, response.data.rows[i].接收时间.indexOf(' '))
|
|
}
|
|
this.tableData2 = response.data.rows
|
|
this.total2 = response.data.total
|
|
}
|
|
}).then(() => {
|
|
this.loading2 = false
|
|
})
|
|
},
|
|
getParts2() {
|
|
this.loading2 = true
|
|
this.tableData2 = []
|
|
getParts(this.zhongjianbianliang, this.pageCurrent2, this.pageSize2).then(response => {
|
|
for (let i = 0; i < response.data.rows.length; i++) {
|
|
response.data.rows[i].开票时间 = response.data.rows[i].开票时间.substring(0, response.data.rows[i].开票时间.indexOf(' '))
|
|
response.data.rows[i].接收时间 = response.data.rows[i].接收时间.substring(0, response.data.rows[i].接收时间.indexOf(' '))
|
|
}
|
|
this.tableData2 = response.data.rows
|
|
this.total2 = response.data.total
|
|
}).then(() => {
|
|
this.loading2 = false
|
|
})
|
|
},
|
|
// 点击增加
|
|
editType1(row, formName) {
|
|
this.count1 = this.count1 + 1
|
|
if (this.count1 !== 1) {
|
|
this.$refs[formName].resetFields()
|
|
}
|
|
this.title1 = '到票'
|
|
this.renwudan = row.外协加工任务单流水号
|
|
this.form.发票号 = ''
|
|
this.form.开户行 = ''
|
|
this.form.开票时间 = ''
|
|
this.form.开票金额 = ''
|
|
this.form.接收人 = ''
|
|
this.form.接收时间 = ''
|
|
this.form.备注 = ''
|
|
this.dialogFormVisible = true
|
|
},
|
|
// 增加确定
|
|
editType() {
|
|
edittype(this.renwudan, this.form.发票号, this.form.开户行, this.form.开票时间, this.form.开票金额, this.form.接收人, this.form.接收时间, this.form.备注).then(response => {
|
|
if (response.data[0].result === '1') {
|
|
this.$notify({
|
|
title: '成功',
|
|
message: '信息增加成功',
|
|
type: 'success'
|
|
})
|
|
this.getParts2()
|
|
} else {
|
|
this.$message.error('信息增加失败')
|
|
}
|
|
})
|
|
this.dialogFormVisible = false
|
|
},
|
|
// 编辑打开
|
|
handleChange1(index, row, formName) {
|
|
this.count2 = this.count2 + 1
|
|
if (this.count2 !== 1) {
|
|
this.$refs[formName].resetFields()
|
|
}
|
|
this.form.发票号 = row.发票号
|
|
this.form.开户行 = row.开户行
|
|
this.form.开票时间 = row.开票时间
|
|
this.form.开票金额 = row.开票金额
|
|
this.form.接收人 = row.接收人
|
|
this.form.接收时间 = row.接收时间
|
|
this.form.备注 = row.备注
|
|
this.dialogFormVisible = true
|
|
this.title1 = '编辑'
|
|
this.CoManufacturerFlowNumber1 = row.id
|
|
},
|
|
// 编辑确定
|
|
handleChange() {
|
|
handlechange(this.CoManufacturerFlowNumber1, this.form.发票号, this.form.开户行, this.form.开票时间, this.form.开票金额, this.form.接收人, this.form.接收时间, this.form.备注).then(response => {
|
|
if (response.data[0].result === '1') {
|
|
this.$notify({
|
|
title: '成功',
|
|
message: '信息修改成功',
|
|
type: 'success'
|
|
})
|
|
this.getParts2()
|
|
} else {
|
|
this.$message.error('信息修改失败')
|
|
}
|
|
})
|
|
this.dialogFormVisible = false
|
|
},
|
|
// 提交添加或者修改
|
|
submit(formName) {
|
|
this.$refs[formName].validate((valid) => {
|
|
if (valid) {
|
|
if (this.param === 0) {
|
|
this.editType()
|
|
} else {
|
|
this.handleChange()
|
|
}
|
|
} else {
|
|
return false
|
|
}
|
|
})
|
|
},
|
|
// 重置表单
|
|
callOff(formName) {
|
|
this.dialogFormVisible = false
|
|
this.$refs[formName].resetFields()
|
|
},
|
|
// 删除
|
|
handleDelete(index, row) {
|
|
this.$confirm('此操作将永久删除该行, 是否继续?', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
handledelete(row.id).then(response => {
|
|
if (this.tableData2 && this.tableData2.length === 1 && this.pageCurrent2 > 1) {
|
|
this.pageCurrent2--
|
|
}
|
|
if (response.data[0].result === '1') {
|
|
this.$notify({
|
|
title: '成功',
|
|
message: '信息删除成功',
|
|
type: 'success'
|
|
})
|
|
this.getParts2()
|
|
} else {
|
|
this.$message.error('信息删除失败')
|
|
}
|
|
})
|
|
}).catch(() => {
|
|
this.$message({
|
|
type: 'info',
|
|
message: '已取消删除'
|
|
})
|
|
})
|
|
},
|
|
// 分页
|
|
handleSizeChange(val) {
|
|
this.pageCurrent = 1
|
|
this.pageSize = val
|
|
this.searchTable()
|
|
},
|
|
handleCurrentChange(val) {
|
|
this.pageCurrent = val
|
|
this.searchTable()
|
|
},
|
|
handleSizeChange2(val) {
|
|
this.pageCurrent2 = 1
|
|
this.pageSize2 = val
|
|
this.getParts2()
|
|
},
|
|
handleCurrentChange2(val) {
|
|
this.pageCurrent2 = val
|
|
this.tableData2 = []
|
|
this.getParts2()
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.el-card{
|
|
margin: 0px;
|
|
}
|
|
.el-table .fukuan {
|
|
background: #AEF199;
|
|
}
|
|
</style>
|
|
|