Commit ab1a652e authored by 黄奎's avatar 黄奎
parents f6ce0f1d 442d19b7
...@@ -31,7 +31,14 @@ ...@@ -31,7 +31,14 @@
||objNew.CreateTime?DetailsOfRoyalty():''"> ||objNew.CreateTime?DetailsOfRoyalty():''">
<span class="fz15 fbold"> <span class="fz15 fbold">
<!-- {{objNew.commissionCurrency?objNew.commissionCurrency:objNew.CurrencyName!='人民币'?objNew.CurrencyName:'¥'}} --> <!-- {{objNew.commissionCurrency?objNew.commissionCurrency:objNew.CurrencyName!='人民币'?objNew.CurrencyName:'¥'}} -->
<template v-if="OP">{{ moneyFormat(objNew.OPCommission) }} </template> <template v-if="OP">
<template v-if="objNew.OPCommission">
{{ moneyFormat(objNew.OPCommission) }}
</template>
<template v-if="objNew.opCommission">
{{ moneyFormat(objNew.opCommission) }}
</template>
</template>
<template v-else>{{ objNew.commissionMoney?moneyFormat(objNew.commissionMoney):objNew.SellCommission }}</template> <template v-else>{{ objNew.commissionMoney?moneyFormat(objNew.commissionMoney):objNew.SellCommission }}</template>
</span> </span>
</span> </span>
......
...@@ -649,7 +649,7 @@ ...@@ -649,7 +649,7 @@
.VisaProductTable tr td { .VisaProductTable tr td {
height: 60px; height: 60px;
padding-left: 25px; padding-left: 5px;
border: 1px solid #cccccc; border: 1px solid #cccccc;
font-size: 14px; font-size: 14px;
color: #333; color: #333;
...@@ -1456,6 +1456,12 @@ ...@@ -1456,6 +1456,12 @@
}, },
}, },
mounted() { mounted() {
let userInfo = this.getLocalStorage()
let ActionMenuCode = userInfo.ActionMenuCode;
// 判断是否销售
if (ActionMenuCode.indexOf('isEditAmount') != -1) {
this.IsSupperOrderEdit = true
}
this.GetSupperOrderEditAuth(); this.GetSupperOrderEditAuth();
let userinfo = this.getLocalStorage(); let userinfo = this.getLocalStorage();
this.EmployeeId = userinfo.EmployeeId; this.EmployeeId = userinfo.EmployeeId;
......
...@@ -535,7 +535,7 @@ ...@@ -535,7 +535,7 @@
</div> </div>
<div class="cblack fz14 mr" :class="{ cF1416C: scope.row.isFinish == 0,c20C997: scope.row.isFinish == 1 }"> <div class="cblack fz14 mr" :class="{ cF1416C: scope.row.isFinish == 0,c20C997: scope.row.isFinish == 1 }">
<template v-if="scope.row.isFinish == 1"> <template v-if="scope.row.isFinish == 1">
已完结 / {{scope.row.finishTime}} 已完结 <template v-if="scope.row.finishTime">/ {{scope.row.finishTime}}</template>
</template> </template>
<template v-else> <template v-else>
未完结 未完结
...@@ -654,7 +654,7 @@ ...@@ -654,7 +654,7 @@
<span class="float-l">销售:<span class="cF1416C"></span></span> <span class="float-l">销售:<span class="cF1416C"></span></span>
<commissionDialog :objNew="scope.row" :OP="0"></commissionDialog> <commissionDialog :objNew="scope.row" :OP="0"></commissionDialog>
</div> </div>
<div class="width100-float-l" v-if="scope.row.opCommission&&item.opCommission>0"> <div class="width100-float-l" v-if="scope.row.opCommission&&scope.row.opCommission>0">
<span class="float-l">OP:<span class="cF1416C"></span></span> <span class="float-l">OP:<span class="cF1416C"></span></span>
<commissionDialog :objNew="scope.row" :OP="1"></commissionDialog> <commissionDialog :objNew="scope.row" :OP="1"></commissionDialog>
</div> </div>
......
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