Commit e7710c73 authored by youjie's avatar youjie

车行财务单据详情

parent c0953915
......@@ -825,8 +825,10 @@
</div>
<div class="_conten">
<!-- 付款单据详情 -->
<my-Bill v-if="GetDetail.Type===2 && GetDetail.Type!==5" :isPrintPage="false" :ID="GetDetail.FrID"
:width="widthSon" :color="colorSon"></my-Bill>
<!-- 收款单据详情 -->
<my-RVB-Bill v-else-if="GetDetail.Type===1" :ID="GetDetail.FrID" :isPrintPage="false" :width="widthSon"
:color="colorSon"></my-RVB-Bill>
<my-GZ-Bill v-else-if="GetDetail.Type===7" :ID="GetDetail.FrID" :width="widthSon" :color="colorSon">
......@@ -926,6 +928,9 @@
<div v-if="GetDetail.OtherType==67||GetDetail.OtherType==68" class="illustrate-right fygsbumen-box-right"
@click="ImpressionSingleDetails(isOrderOP?'CharterOrderListOP':'CharterOrderList')">
{{'单项车订单:'+GetDetail.ReFinanceId}}</div>
<div v-if="GetDetail.OtherType==80" class="illustrate-right fygsbumen-box-right"
@click="ImpressionSingleDetails(isOrderOP?'CarDealerOrderListOP':'CarDealerOrderList')">
{{'车行订单:'+GetDetail.ReFinanceId}}</div>
<!-- <div v-if="GetDetail.OtherType==63" class="illustrate-right fygsbumen-box-right"
@click="ImpressionSingleCommissionDetails('ServiceCommissiondetails',1)">{{'单项销售提成详情'}}</div>
<div v-if="GetDetail.OtherType==64" class="illustrate-right fygsbumen-box-right"
......@@ -1668,7 +1673,8 @@
isReceivablesAccount: false,
isClientBankAccount:false,
ClientBankAccountTop:0,
ActionMenuCode: ''
ActionMenuCode: '',
typeSystem: 0,
}
},
components: {
......@@ -1833,6 +1839,25 @@
67) {
this.GetCarList(path)
} else {
if(this.GetDetail.OtherType == 80){
if(this.typeSystem>0){
let href = this.domainManager().CarUrl
window.parent.postMessage({
event_id: 'CarDealerOrder',
data: {
OrderId: this.GetDetail.ReFinanceId,
}}, `${href}`)
}else{
return
this.$router.push({
path: path,
query: {
OrderId: this.GetDetail.ReFinanceId,
blank: 'y'
}
});
}
}else{
this.$router.push({
path: path,
query: {
......@@ -1844,6 +1869,8 @@
});
}
}
},
// 印象票务制单详情
ImpressionTicketDetails(path) {
......@@ -2834,6 +2861,14 @@
}
},
mounted() {
if(localStorage.crmuserInfo){
let crmuserInfo = JSON.parse(localStorage.crmuserInfo)
if(crmuserInfo
&&crmuserInfo.parameter
&&crmuserInfo.parameter.typeSystem) {
this.typeSystem = crmuserInfo.parameter.typeSystem
}
}
// document.onkeydown = this.KeyDown
// document.onkeyup = this.KeyUp
// document.oncontextmenu = function(){return false;}
......
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