Commit 130c0581 by liyixun

gitopn (bug802)

parent 98652f8e
......@@ -5389,6 +5389,12 @@ const CodeTable = {
{ label: "Seller", value: "SEL" },
{ label: "Ordering Institution", value: "ORI" },
],
gitopm_rolall:[
{label:"Appliant",value:"APL"},
{label:"1st Adv.thr.Bank",value:"ATB"},
{label:"Beneficiary",value:"BEN"},
{label:"Accountee",value:"CTR"},
],
rolchgflg: [
{ label: "Changes and deletion allowed if new", value: "" },
{ label: "Protected for changes and deletion", value: "P" },
......
......@@ -220,6 +220,7 @@ export default {
"gitp.lettername" :Utils.defaultFunction,
"gidgrp.blk.apprulc" :Utils.defaultFunction,
"gidgrp.rec.autrnwflg" :Utils.defaultFunction,
"gidgrp.rec.sndto" :Utils.defaultFunction,
"setmod.glemod.glepan" :Utils.defaultFunction,
"cfagit.cfap" :Utils.defaultFunction,
//
......
......@@ -50,7 +50,7 @@
v-model="model.gidgrp.rec.sndto"
style="width: 100%"
placeholder="请选择Undertaking Send to"
:code="codes.rolall"
:code="codes.gitopn_rolall"
>
</c-select>
</el-form-item>
......
......@@ -177,6 +177,7 @@
@keyup.enter.native="
showGridPromptDialog(`gidgrp.apl.pts.extkey`)
"
@change="benChange"
></c-input>
<template slot="footer">
<c-button
......@@ -257,6 +258,7 @@
@keyup.enter.native="
showGridPromptDialog(`gidgrp.ctr.pts.extkey`)
"
@change="benChange"
></c-input>
<template slot="footer">
<c-button
......@@ -331,6 +333,7 @@
@keyup.enter.native="
showGridPromptDialog(`gidgrp.apl.pts.extkey`)
"
@change="benChange"
></c-input>
<template slot="footer">
<c-button
......@@ -411,6 +414,7 @@
@keyup.enter.native="
showGridPromptDialog(`gidgrp.ctr.pts.extkey`)
"
@change="benChange"
></c-input>
<template slot="footer">
<c-button
......@@ -634,6 +638,7 @@
@keyup.enter.native="
showGridPromptDialog(`gidgrp.ben.pts.extkey`)
"
@change="benChange"
></c-input>
<template slot="footer">
<c-button
......@@ -697,6 +702,7 @@
@keyup.enter.native="
showGridPromptDialog(`gidgrp.atb.pts.extkey`)
"
@change="benChange"
></c-input>
<template slot="footer">
<c-button
......@@ -764,6 +770,7 @@ import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gitopn/Event";
import Ptap from "~/views/Public/Ptap";
import Utils from "~/utils";
export default {
components: { "c-ptap": Ptap },
......@@ -801,7 +808,17 @@ export default {
},
};
},
methods: { ...Event },
methods: {
...Event,
async benChange() {
let rtnmsg = await this.executeDefault("gidgrp.rec.sndto");
if (rtnmsg.respCode == SUCCESS) {
Utils.copyValueFromVO(this.model, rtnmsg.data);
}
},
},
watch:{
},
created: function () {},
};
</script>
......
......@@ -298,7 +298,7 @@
</el-table-column>
<el-table-column label="Account" prop="act" width="auto">
<template slot-scope="scope">
<el-form-item label="0" :prop="'setmod.setglg.setgll.' + scope.$index + '.act'" >
<el-form-item label-width="0" :prop="'setmod.setglg.setgll.' + scope.$index + '.act'" >
<c-select v-model="scope.row.act">
<el-option v-for="item in scope.act" :key="item.value" :label="item.label"
:value="item.value">
......
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