product
Vayne 2 years ago
parent 9df566b190
commit b40b72d026

@ -103,7 +103,7 @@
{{ scope.row.currency | dynamicText(currencyOptions) }}
</template>
</el-table-column>
<el-table-column label="是否付款" sortable width="100" prop="isPayment" align="center" >
<el-table-column label="是否付款申请" sortable width="100" prop="isPayment" align="center" >
<template slot-scope="scope">
{{ scope.row.isPayment | dynamicText(isPaymentOptions) }}
</template>
@ -707,7 +707,7 @@
}
var flag = true;
this.multipleSelectionItem[0].poundlistEntityList.forEach((item,index) => {
if (item.salesStatus > 0){
if (item.salesStatus == 1 || item.salesStatus == 2 || item.salesStatus == 3){
flag = false;
}
})
@ -787,6 +787,15 @@
});
return
}
if(row.isPayment == '1'){
debugger
this.$message({
type: 'error',
message: '付款申请中,无法编辑',
duration: 2500
});
return
}
}
this.formVisible = true
this.$nextTick(() => {

Loading…
Cancel
Save