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

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

parent efabe642
...@@ -385,7 +385,7 @@ ...@@ -385,7 +385,7 @@
<div style="margin-bottom: 30px;"> <div style="margin-bottom: 30px;">
<ul> <ul>
<li style="float: left; margin-right: 30px;" v-for="(qitem,qindex) in LeaderGuideDefault"> <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> </li>
</ul> </ul>
</div> </div>
...@@ -433,6 +433,14 @@ ...@@ -433,6 +433,14 @@
</div> </div>
</div> </div>
</el-form-item> </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-col>
</el-row> </el-row>
</el-form> </el-form>
...@@ -488,6 +496,7 @@ ...@@ -488,6 +496,7 @@
LeaderAccountList: [], LeaderAccountList: [],
GuideAccountList: [], GuideAccountList: [],
IsFee: 1, IsFee: 1,
IsJapan:0,
msg: { msg: {
pageIndex: 1, pageIndex: 1,
pageSize: 8, pageSize: 8,
...@@ -529,6 +538,7 @@ ...@@ -529,6 +538,7 @@
LeaderAccountId: 0, LeaderAccountId: 0,
GuideAccountId: 0, GuideAccountId: 0,
IsFee: 1, IsFee: 1,
IsHaveFee:2,
VoucherList: [], VoucherList: [],
IsBatch: 1 IsBatch: 1
}, },
...@@ -900,7 +910,11 @@ ...@@ -900,7 +910,11 @@
res => { res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.loading = false; 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=>{ this.LeaderGuideDefault.forEach(item=>{
if(item.IsAccount==0){ if(item.IsAccount==0){
this.IsLGCommissionAccount=false; 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