Commit 0b5e8dbc authored by youjie's avatar youjie

no message

parent ede1a29f
......@@ -242,6 +242,20 @@
@click="makeAdocument(item,index,3)"></i>
</el-tooltip>
</div>
<div class="column px15 bgf5 radius5 ml flex-g pa relative">
<div class="fz12">手配费单据</div>
<div class="row wrap orderNo fz12 py c3FC4FF">
<span class="cursor-pointer radius5 bgD9F3FF mr px5" v-for="(x,i) in item.HandFittingFinanceList"
@click="openDetails(x)">{{x.FrID}}</span>
<span v-if="item.HandFittingFinanceList.length==0" class="c9e fz12">
暂无手配费单据
</span>
</div>
<el-tooltip v-if="item.OrderStatus==2" class="item" effect="dark" content="制单" placement="top">
<i class="absolute right20 bottom20 el-icon-circle-plus cursor-pointer c059FF6"
@click="makeAdocument(item,index,1,'Hand')"></i>
</el-tooltip>
</div>
<div class="column justify-c px15 bgf5 radius5 ml flex-g pa20">
<div class="row-c justify-sb borderD pb5">
<span class="fz12 c9e">订单总金额</span>
......@@ -336,9 +350,14 @@
});
},
// 制作单据
makeAdocument(row, index, num){
makeAdocument(row, index, num, name){
this.BillMakingMsg.ReFinanceId = row.OrderId
this.BillMakingMsg.ReFinanceId2 = num
if(name=='Hand'){
this.BillMakingMsg.OtherType = 62
}else{
this.BillMakingMsg.OtherType = 61
}
let text = ''
let query = {}
if(num==1){
......
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