|
@@ -34,7 +34,7 @@
|
|
|
" @click="carryover">补货结转</ws-button>
|
|
|
<ws-button type="primary" v-hasPermission="
|
|
|
`report.procurementInReport.view`
|
|
|
- " @click="handleAudit()">审核</ws-button> -->
|
|
|
+ " @click="handleAudit()">审核</ws-button>
|
|
|
<ws-button type="primary" v-hasPermission="
|
|
|
`report.procurementInReport.view`
|
|
|
" @click="handlepass1()">通过</ws-button>
|
|
@@ -113,7 +113,9 @@
|
|
|
class="table_td"
|
|
|
prop="carNo"
|
|
|
label="车牌号"
|
|
|
- ></el-table-column>
|
|
|
+ ><template slot-scope="scope">
|
|
|
+ {{scope.row.carNo}}({{scope.row.tranCarNo}})
|
|
|
+ </template></el-table-column>
|
|
|
<el-table-column
|
|
|
class="table_td"
|
|
|
prop="warehousingDate"
|
|
@@ -997,14 +999,14 @@ export default {
|
|
|
postreplanishent({
|
|
|
customerConfirmationStatusFlag:
|
|
|
this.modification[0].customerConfirmationStatusFlag,
|
|
|
- purchaseReceiptReport: {
|
|
|
+ id:this.modification[0].id,
|
|
|
contractNo: this.carryoverlist.contractNo,
|
|
|
carryOverWeight: this.carryoverlist.carryOverWeight,
|
|
|
- },
|
|
|
amountNotPayable: this.modification[0].amountNotPayable,
|
|
|
})
|
|
|
.toPromise()
|
|
|
.then((response) => {
|
|
|
+ this.dialogFormVisible11=false
|
|
|
this.$message.success('结转成功')
|
|
|
this.getList()
|
|
|
})
|
|
@@ -1041,11 +1043,11 @@ export default {
|
|
|
this.$message.warning('请选择一条要结转的条目')
|
|
|
} else {
|
|
|
this.dialogFormVisible11 = true
|
|
|
- this.carryovercontractnolist = this.contractNoList.records.filter(
|
|
|
- (item) => {
|
|
|
- return this.modification[0].id != item.id
|
|
|
- }
|
|
|
- )
|
|
|
+ // this.carryovercontractnolist = this.contractNoList.records.filter(
|
|
|
+ // (item) => {
|
|
|
+ // return this.modification[0].id != item.id
|
|
|
+ // }
|
|
|
+ // )
|
|
|
}
|
|
|
},
|
|
|
handleSelectionChange(val) {
|