Commit 62ec1e3b authored by youjie's avatar youjie

签证完结,票务尾款portTypeId=1

parent 01e204d0
...@@ -814,8 +814,11 @@ ...@@ -814,8 +814,11 @@
v-if="IsSupperOrderEdit"> v-if="IsSupperOrderEdit">
<span class="c059FF6">修改金额</span> <span class="c059FF6">修改金额</span>
</div> </div>
<div v-if="IsSupperOrderEdit&&pagesTitle!='销售'&&scope.row.isFinish!=1 <div v-if="IsSupperOrderEdit&&pagesTitle!='销售'&&((scope.row.isFinish!=1
&&scope.row.income>0&&scope.row.dueInMoney==0" &&scope.row.income>0&&scope.row.dueInMoney==0)||
(scope.row.totalPrice==0&&scope.row.income==0&&scope.row.costMoney==0&&
scope.row.refundMoney==0&&scope.row.platformTax==0&&scope.row.financeList
&&scope.row.financeList.length>0))"
class="row-c cursor-pointer radius5 change py5" @click='setCompleted(scope.row.id,scope.row)' class="row-c cursor-pointer radius5 change py5" @click='setCompleted(scope.row.id,scope.row)'
v-loading="scope.row.loading"> v-loading="scope.row.loading">
<span class="c059FF6">完结</span> <span class="c059FF6">完结</span>
...@@ -1290,8 +1293,11 @@ ...@@ -1290,8 +1293,11 @@
}); });
}, },
selectable(row, index) { selectable(row, index) {
if (this.OrderList[index].isFinish != 1 && this.OrderList[index].income > 0 && this.OrderList[index] if (((this.OrderList[index].isFinish != 1 && this.OrderList[index].income > 0 && this.OrderList[index]
.dueInMoney == 0) { .dueInMoney == 0)||(this.OrderList[index].totalPrice==0&&this.OrderList[index].income==0
&&this.OrderList[index].costMoney==0&&this.OrderList[index].refundMoney==0
&&this.OrderList[index].platformTax==0&&this.OrderList[index].financeList
&&this.OrderList[index].financeList.length>0))) {
return true; return true;
} else { } else {
return false; return false;
......
...@@ -564,6 +564,7 @@ ...@@ -564,6 +564,7 @@
name: 'ChoiceAddFinancialDocuments', name: 'ChoiceAddFinancialDocuments',
query: { query: {
"Type": 2, "Type": 2,
"portTypeId":1,
"path": "", "path": "",
'blank': 'y', 'blank': 'y',
'orderObj': JSON.stringify(orderObj) 'orderObj': JSON.stringify(orderObj)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment