创建合同与合同收款计划更改
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-card>
|
||||
<span>项目名称</span>
|
||||
<span>项目名称:</span>
|
||||
<el-select v-model="entryNameValue" filterable placeholder="项目名称" style="margin-right: 10px" size="small" clearable>
|
||||
<el-option
|
||||
v-for="item in entryName"
|
||||
@@ -9,10 +9,10 @@
|
||||
:label="item.label"
|
||||
:value="item.value"/>
|
||||
</el-select>
|
||||
<span style="margin-left: 10px">销售经理</span>
|
||||
<span style="margin-left: 10px">销售经理:</span>
|
||||
<el-input v-model="MarketingManagerValue" readonly clearable size="small" style="width:200px" placeholder="请双击选择营销经理" @dblclick.native="dialogFormVisiblePeople = true" @clear="clear()"/>
|
||||
<el-button type="success" icon="el-icon-search" size="small" style="margin-left: 10px" @click="pageSize = 10;PageCurrent = 1;tableData2=[];getTableData()">查询收款计划</el-button>
|
||||
<el-button type="primary" icon="el-icon-circle-plus-outline" size="small" style="margin-left: 10px" @click="ADD('form2')">新增收款计划</el-button>
|
||||
<el-button type="success" icon="el-icon-search" size="small" style="margin-left: 10px" @click="pageSize = 10;PageCurrent = 1;tableData2=[];getTableData()">查询</el-button>
|
||||
<el-button type="primary" icon="el-icon-circle-plus-outline" size="small" style="margin-left: 10px" @click="ADD('form2')">新增</el-button>
|
||||
<el-badge :value="value" :max="99" class="item">
|
||||
<el-button size="small" type="text" @click="AccountsReceivable">查看收款信息</el-button>
|
||||
</el-badge>
|
||||
@@ -27,19 +27,25 @@
|
||||
height="280"
|
||||
highlight-current-row
|
||||
border
|
||||
size="mini"
|
||||
@expand-change="selectMachine"
|
||||
@row-click="getTableData2">
|
||||
<el-table-column type="expand">
|
||||
<template slot-scope="scope">
|
||||
<el-table :data="tableData3" border style="width: 600px; text-align: center">
|
||||
<el-table-column label="设备型号" align="center">
|
||||
<el-table :data="tableData3" border style="width: 600px; text-align: center" size="mini">
|
||||
<el-table-column label="发货单号" align="center">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.机床图号 }}
|
||||
{{ scope.row.发货单号 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="设备名称" align="center">
|
||||
<el-table-column label="发货日期" align="center">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.机床名称 }}
|
||||
{{ scope.row.发货日期 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="运输状态" align="center">
|
||||
<template slot-scope="scope">
|
||||
{{ parseInt(scope.row.运输状态) === 0 ? '运输中' : '已签收' }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@@ -55,7 +61,7 @@
|
||||
{{ scope.row.项目名称 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="center" label="项目名称" width="200">
|
||||
<el-table-column align="center" label="付款方式" width="200">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.付款方式 }}
|
||||
</template>
|
||||
@@ -150,10 +156,11 @@
|
||||
height="350"
|
||||
highlight-current-row
|
||||
border
|
||||
size="mini"
|
||||
@expand-change="selectMachine1">
|
||||
<el-table-column type="expand">
|
||||
<template slot-scope="scope">
|
||||
<el-table :data="tableData4" border style="width: 600px; text-align: center">
|
||||
<el-table :data="tableData4" border style="width: 600px; text-align: center" size="mini">
|
||||
<el-table-column
|
||||
align="center"
|
||||
label="序号"
|
||||
@@ -759,7 +766,11 @@ export default {
|
||||
selectMachine(row) {
|
||||
this.projectCode = row.项目流水号
|
||||
selectMachine(this.projectCode).then(response => {
|
||||
this.tableData3 = response.data
|
||||
const data = response.data
|
||||
for (let i = 0; i < data.length; i++) {
|
||||
data[i].发货日期 = data[i].发货日期.substring(0, data[i].发货日期.length - 8)
|
||||
}
|
||||
this.tableData3 = data
|
||||
})
|
||||
if (this.a === 1) {
|
||||
this.expands.push(row.项目流水号)
|
||||
@@ -849,6 +860,9 @@ export default {
|
||||
for (let i = 0; i < data.length; i++) {
|
||||
data[i].未支付金额 === '0' ? data[i].是否禁用 = true : data[i].是否禁用 = false
|
||||
data[i].已支付 === '0' ? data[i].是否禁用编辑 = false : data[i].是否禁用编辑 = true
|
||||
if (parseFloat(data[i].付款百分比) >= 99.9) {
|
||||
data[i].付款百分比 = 100
|
||||
}
|
||||
}
|
||||
this.tableData1 = data
|
||||
this.total = response.data.total
|
||||
|
||||
Reference in New Issue
Block a user