|
@@ -48,6 +48,13 @@
|
|
@click="handleninvoice"
|
|
@click="handleninvoice"
|
|
>开发票</ws-button
|
|
>开发票</ws-button
|
|
>
|
|
>
|
|
|
|
+ <ws-button
|
|
|
|
+ type="primary"
|
|
|
|
+
|
|
|
|
+ @click="editRecord"
|
|
|
|
+ >记录</ws-button
|
|
|
|
+ >
|
|
|
|
+ <!-- v-hasPermission="`report.transportationReport.payment`" -->
|
|
</el-col>
|
|
</el-col>
|
|
<el-col
|
|
<el-col
|
|
style="text-align: right; line-height: 60px; padding-right: 10px"
|
|
style="text-align: right; line-height: 60px; padding-right: 10px"
|
|
@@ -386,6 +393,23 @@
|
|
:total="deptBudgetTotal"
|
|
:total="deptBudgetTotal"
|
|
></el-pagination>
|
|
></el-pagination>
|
|
</el-scrollbar>
|
|
</el-scrollbar>
|
|
|
|
+ <!-- 修改结算重量记录 -->
|
|
|
|
+ <el-dialog
|
|
|
|
+ width="40%"
|
|
|
|
+ title="结算重量修改记录"
|
|
|
|
+ :visible.sync="dialogFormVisible16"
|
|
|
|
+ :append-to-body="true"
|
|
|
|
+ >
|
|
|
|
+ <el-table :data="tranPriceApproveList">
|
|
|
|
+ <el-table-column prop="tranPrice" label="单价(元)">
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column prop="result" label="车牌号"> </el-table-column>
|
|
|
|
+ <el-table-column prop="beforeModification" label="修改前重量(吨)"> </el-table-column>
|
|
|
|
+ <el-table-column prop="afterModification" label="修改后重量(吨)"> </el-table-column>
|
|
|
|
+ <el-table-column prop="reviewer" label="修改人"> </el-table-column>
|
|
|
|
+ <el-table-column prop="createDate" label="修改日期"> </el-table-column>
|
|
|
|
+ </el-table>
|
|
|
|
+ </el-dialog>
|
|
<!-- 付款 -->
|
|
<!-- 付款 -->
|
|
<el-dialog
|
|
<el-dialog
|
|
width="25%"
|
|
width="25%"
|
|
@@ -611,6 +635,7 @@ export default {
|
|
dialogFormVisible7: false,
|
|
dialogFormVisible7: false,
|
|
dialogFormVisible8: false,
|
|
dialogFormVisible8: false,
|
|
dialogFormVisible11: false,
|
|
dialogFormVisible11: false,
|
|
|
|
+ dialogFormVisible16:false,
|
|
dialogVisible: false,
|
|
dialogVisible: false,
|
|
|
|
|
|
form: {
|
|
form: {
|
|
@@ -670,6 +695,7 @@ export default {
|
|
deptCircularPage: {},
|
|
deptCircularPage: {},
|
|
warehouseList: [],
|
|
warehouseList: [],
|
|
orderList: {},
|
|
orderList: {},
|
|
|
|
+ tranPriceApproveList:[],
|
|
deptBudgetList: {},
|
|
deptBudgetList: {},
|
|
id: '',
|
|
id: '',
|
|
|
|
|
|
@@ -1020,9 +1046,11 @@ export default {
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
+ this.reviewer = sessionStorage.getItem('ws-pf_roleName') +sessionStorage.getItem('ws-pf_staffName')
|
|
editauto({
|
|
editauto({
|
|
settlementWeight: Math.abs(this.settlementWeight),
|
|
settlementWeight: Math.abs(this.settlementWeight),
|
|
id: item.id,
|
|
id: item.id,
|
|
|
|
+ reviewer:this.reviewer,
|
|
flag: 0,
|
|
flag: 0,
|
|
})
|
|
})
|
|
.toPromise()
|
|
.toPromise()
|
|
@@ -1188,6 +1216,11 @@ export default {
|
|
this.options = this.contractNoList
|
|
this.options = this.contractNoList
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ //查看修改结算重量记录
|
|
|
|
+ editRecord(item) {
|
|
|
|
+ this.dialogFormVisible16 = true
|
|
|
|
+ this.tranPriceApproveList = item.tranPriceApproveList
|
|
|
|
+ },
|
|
handlepass() {
|
|
handlepass() {
|
|
var that = this
|
|
var that = this
|
|
if (this.modification.length == 0) {
|
|
if (this.modification.length == 0) {
|