Commit 5ba3218b by Wuyuqiu

bftset交易bug修改临时提交

parent 0d530bbd
...@@ -664,7 +664,6 @@ export default { ...@@ -664,7 +664,6 @@ export default {
}, },
set(val) { set(val) {
this.model.advdisflg = val ? "X" : ""; this.model.advdisflg = val ? "X" : "";
this.model.trnmod.trndoc.addstr750 = "";
}, },
}, },
}, },
......
...@@ -448,6 +448,7 @@ ...@@ -448,6 +448,7 @@
v-model="model.setmod.redamt" v-model="model.setmod.redamt"
placeholder="请输入扣减金额" placeholder="请输入扣减金额"
:disabled="frepayflg" :disabled="frepayflg"
@change="selectOrCheckboxChangeExecuteRule('setmod.redamt')"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -880,10 +881,11 @@ export default { ...@@ -880,10 +881,11 @@ export default {
}, },
frepayflg: { frepayflg: {
get() { get() {
return this.model.bfdgrp.rec.frepayflg === "O"; return this.model.bfdgrp.rec.frepayflg === "X";
}, },
set(val) { set(val) {
this.model.bfdgrp.rec.frepayflg = val ? "C" : "O"; this.model.bfdgrp.rec.frepayflg = val ? "X" : "";
this.model.setmod.redamt = "";
}, },
}, },
flag() { flag() {
...@@ -910,6 +912,10 @@ export default { ...@@ -910,6 +912,10 @@ export default {
{ {
this.$notify.error({title: '错误',message: '服务请求失败!'}); this.$notify.error({title: '错误',message: '服务请求失败!'});
} }
}else{
// this.model.setmod.docamt = "";
// this.model.setmod.setamt = "";
// this.model.aamset.utlamt = "";
} }
}, },
}, },
......
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