Commit 44f1dd19 authored by liudong1993's avatar liudong1993

1

parent 40b534ac
...@@ -133,6 +133,17 @@ ...@@ -133,6 +133,17 @@
||((userInfo.EmployeeId==1||userInfo.RB_Department_Id==2)&&item.ManagerExamineName))"> ||((userInfo.EmployeeId==1||userInfo.RB_Department_Id==2)&&item.ManagerExamineName))">
<div style="padding:10px;"> <div style="padding:10px;">
<div> <div>
<p style="font-size: 13px;" v-if="item.FinanceList && item.FinanceList.length>0">
<span>制单金额:</span>
<span style="color: blue;" v-for="fitem in item.FinanceList">
<template v-if="fitem.Type==1">
<span @click="openDetails(fitem.FrId)">{{(fitem.Type==1?'收入':'退') + fitem.FrId+'单'}} </span>=> {{(fitem.Fee!=0? '(':'')+fitem.OriginalMoney+fitem.CurrencyName+(fitem.Fee!=0?'-'+fitem.Fee+'手续费) *':' *')+fitem.Rate+'='+fitem.Money}} &nbsp;&nbsp;&nbsp;
</template>
</span>
<span style="color: red;" v-for="fitem in item.FinanceList" v-if="fitem.Type==2">
<span @click="openDetails(fitem.FrId)">{{(fitem.Type==1?'收':'退') + fitem.FrId}}</span> => {{fitem.OriginalMoney+fitem.CurrencyName+' *'+fitem.Rate+'='+fitem.Money}} &nbsp;&nbsp;&nbsp;
</span>
</p>
<p style="font-size: 13px;" v-if="item.SaleRemarks"> <p style="font-size: 13px;" v-if="item.SaleRemarks">
<span>销售备注:</span> <span>销售备注:</span>
<span style="color: red;">{{ <span style="color: red;">{{
...@@ -709,7 +720,7 @@ ...@@ -709,7 +720,7 @@
}, },
OrderList: { OrderList: {
handler(val, oldVal) { handler(val, oldVal) {
if ((this.pagesTitle == '申请' || this.pagesTitle == '审核' || _this.pagesTitle == '查看') && this.msgObj.OrderId != if ((this.pagesTitle == '申请' || this.pagesTitle == '审核' || this.pagesTitle == '查看') && this.msgObj.OrderId !=
0 && this.$route.query.OrderId && 0 && this.$route.query.OrderId &&
this.$route.query.OrderType && this.$route.query.OrderType &&
this.$route.query.DepartSTime && this.$route.query.DepartSTime &&
...@@ -1060,7 +1071,19 @@ ...@@ -1060,7 +1071,19 @@
}); });
} }
}); });
} },
// 单据详情
openDetails(FrID) {
console.log(FrID);
let query = {
id: FrID,
blank: "y",
};
this.$router.push({
name: "FinancialDocumentsDetail",
query
});
},
}, },
mounted() { mounted() {
let userInfo = this.getLocalStorage(); let userInfo = this.getLocalStorage();
......
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