Commit 160202f5 authored by 吴春's avatar 吴春

购物店佣金批量制单可以生成手续费550

parent efabe642
......@@ -385,7 +385,7 @@
<div style="margin-bottom: 30px;">
<ul>
<li style="float: left; margin-right: 30px;" v-for="(qitem,qindex) in LeaderGuideDefault">
<span :style="qitem.IsAccount==0?'color:red':'color:black'">{{qitem.Name}} > {{(qitem.IsAccount==1?qitem.Bank:'请在付款对象管理界面配置佣金账户')}}</span>
<span :style="qitem.IsAccount==0?'color:red':'color:black'">{{qitem.Name}} > {{(qitem.IsAccount==1?qitem.Bank:'请在付款对象管理界面配置佣金账户')}} <span style="color:red;">{{qitem.IsJapan==1?'(日本账户)':''}}</span></span>
</li>
</ul>
</div>
......@@ -433,6 +433,14 @@
</div>
</div>
</el-form-item>
<template v-if="IsJapan==1">
<el-form-item label="生成550手续费">
<el-select v-model="nMsg.IsHaveFee">
<el-option label="是" :value="1" :key="1"></el-option>
<el-option label="否" :value="2" :key="2"></el-option>
</el-select>
</el-form-item></template>
</el-col>
</el-row>
</el-form>
......@@ -488,6 +496,7 @@
LeaderAccountList: [],
GuideAccountList: [],
IsFee: 1,
IsJapan:0,
msg: {
pageIndex: 1,
pageSize: 8,
......@@ -529,6 +538,7 @@
LeaderAccountId: 0,
GuideAccountId: 0,
IsFee: 1,
IsHaveFee:2,
VoucherList: [],
IsBatch: 1
},
......@@ -900,7 +910,11 @@
res => {
if (res.data.resultCode == 1) {
this.loading = false;
this.LeaderGuideDefault = res.data.data;
this.LeaderGuideDefault = res.data.data.BackAccountList;
this.IsJapan= res.data.data.IsJapan;
if(this.IsJapan==1){
this.nMsg.IsHaveFee=1;
}
this.LeaderGuideDefault.forEach(item=>{
if(item.IsAccount==0){
this.IsLGCommissionAccount=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