Commit e839f389 by lixinyi

Merge branch 'settle-test-20230110' of http://114.115.138.98:8900/fukai/vue-gjjs…

Merge branch 'settle-test-20230110' of http://114.115.138.98:8900/fukai/vue-gjjs into settle-test-20230110
parents c8d4e9d5 3a4ed453
...@@ -165,6 +165,7 @@ export default { ...@@ -165,6 +165,7 @@ export default {
businessType: 'LC', businessType: 'LC',
tbl: 'LC', tbl: 'LC',
} }
} },
}, },
}; };
...@@ -56,9 +56,7 @@ export default { ...@@ -56,9 +56,7 @@ export default {
cur:model.brdgrp.cbs.opn1.cur, cur:model.brdgrp.cbs.opn1.cur,
ptytyp:model.brdgrp.prb.ptytyp, ptytyp:model.brdgrp.prb.ptytyp,
frepayflg:model.brdgrp.rec.frepayflg, frepayflg:model.brdgrp.rec.frepayflg,
payrol:model.brdgrp.rec.payrol,
dscbckamt:model.brdgrp.rec.dscbckamt, dscbckamt:model.brdgrp.rec.dscbckamt,
pclbckamt:model.brdgrp.rec.pclbckamt,
totdat:model.brdgrp.rec.totdat, totdat:model.brdgrp.rec.totdat,
// negate:model.brdgrp.rec.dscbckamt.negate, // negate:model.brdgrp.rec.dscbckamt.negate,
pclbckamt:model.brdgrp.rec.pclbckamt, pclbckamt:model.brdgrp.rec.pclbckamt,
......
...@@ -106,20 +106,20 @@ export default { ...@@ -106,20 +106,20 @@ export default {
queryFormData(key) { queryFormData(key) {
console.log(key); console.log(key);
}, },
// 业务信息=》基本信息=》保函编号-----获取保函编号 // 业务信息=》基本信息=》融资编号-----获取融资编号
async queryOwnref() { async getTrdgrpOwnRef() {
let params = { let params = {
ptainr: this.model.gidgrp.apl.pts.ptainr, trdgrp:{
businessType: 'LG', rec: this.model.trtcre.trdgrp.rec,
tbl: 'LG',
};
const loading = this.loading();
let res = await Api.post('/service/brtset/getOwnRef', params);
if (res.respCode == SUCCESS) {
loading.close();
this.model.gidgrp.rec.ownref = res.data;
} }
}, };
const loading = this.loading();
let res = await Api.post('/service/brtset/getTrdgrpOwnRef', params);
if (res.respCode == SUCCESS) {
loading.close();
this.model.trtcre.trdgrp.rec.ownref = res.data;
}
},
// 获取brtset弹框表格数据 // 获取brtset弹框表格数据
async queryGridEtyPromptDialogData(type, ptytyp) { async queryGridEtyPromptDialogData(type, ptytyp) {
let params = { let params = {
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -192,6 +192,9 @@ export default class Bctset { ...@@ -192,6 +192,9 @@ export default class Bctset {
trntyp: '', trntyp: '',
trdgrp: { trdgrp: {
rec: { rec: {
fincod:'',
ovdflg: '',
ownusr: window.sessionStorage.userId ? window.sessionStorage.userId : 'ZL',
stttendat: new Date(), stttendat: new Date(),
recaccount: '', recaccount: '',
pctfin: '100', pctfin: '100',
...@@ -211,6 +214,8 @@ export default class Bctset { ...@@ -211,6 +214,8 @@ export default class Bctset {
actrat: '0.000000', actrat: '0.000000',
pntref: '', pntref: '',
reccountrycode: '', reccountrycode: '',
opndat: new Date(),
branchinr: ''
}, },
cbs: { cbs: {
max: { max: {
...@@ -340,11 +345,6 @@ export default class Bctset { ...@@ -340,11 +345,6 @@ export default class Bctset {
basflg: '', basflg: '',
}, },
nar754: '', nar754: '',
trdgrp: {
rec: {
},
},
paypsb: '', paypsb: '',
dftcre: { dftcre: {
dftp: { dftp: {
......
...@@ -61,12 +61,7 @@ ...@@ -61,12 +61,7 @@
<c-button <c-button
size="small" size="small"
type="primary" type="primary"
:disabled=" @click="getTrdgrpOwnRef"
model.trtcre.trdgrp.rec.fintyp == '' ||
model.trtcre.trdgrp.fip.pts.adrblk == '' ||
// model.trdgrp.rec.branchinr == ''||
model.trtcre.trdgrp.rec.ownref != ''
"
> >
获取 获取
</c-button> </c-button>
...@@ -847,6 +842,7 @@ export default { ...@@ -847,6 +842,7 @@ export default {
computed:{ computed:{
trtcretrdgrprecpntref(){ trtcretrdgrprecpntref(){
this.model.trtcre.trtmod.finmod.fincod = this.model.brdgrp.rec.ownref this.model.trtcre.trtmod.finmod.fincod = this.model.brdgrp.rec.ownref
this.model.trtcre.trdgrp.rec.fincod = this.model.brdgrp.rec.ownref
this.model.trtcre.trdgrp.rec.pntref = this.model.brdgrp.rec.ownref this.model.trtcre.trdgrp.rec.pntref = this.model.brdgrp.rec.ownref
return this.model.trtcre.trdgrp.rec.pntref return this.model.trtcre.trdgrp.rec.pntref
}, },
......
...@@ -13,8 +13,8 @@ export default class Inftrd { ...@@ -13,8 +13,8 @@ export default class Inftrd {
}, },
infcon: { infcon: {
chksubcon: '', chksubcon: '',
opndatfrom: '', opndatfrom: new Date(),
opndatto: '', opndatto: new Date(),
seaownref: '', seaownref: '',
seaamtfr: '', seaamtfr: '',
seasta: '', seasta: '',
......
...@@ -307,17 +307,17 @@ ...@@ -307,17 +307,17 @@
</template> </template>
</c-list-search> </c-list-search>
<c-col :span="24" style="margin-top: 10px"> <!-- <c-col :span="24" style="margin-top: 10px">-->
<c-button <!-- <c-button-->
class="medium_bcs" <!-- class="medium_bcs"-->
size="medium" <!-- size="medium"-->
type="primary" <!-- type="primary"-->
style="margin-left: 0px" <!-- style="margin-left: 0px"-->
@click="toTrtopn" <!-- @click="toTrtopn"-->
>进口融资开立 <!-- >进口融资开立-->
</c-button <!-- </c-button-->
> <!-- >-->
</c-col> <!-- </c-col>-->
<div style="height: 90%"> <div style="height: 90%">
<c-col :span="24"> <c-col :span="24">
<el-table <el-table
......
...@@ -230,7 +230,7 @@ export default { ...@@ -230,7 +230,7 @@ export default {
{type: 'string', required: false, message: '输入正确的日期'} {type: 'string', required: false, message: '输入正确的日期'}
], ],
'lidgrp.rec.expplc':[ 'lidgrp.rec.expplc':[
{type: 'string', required: false, message: '必输项'}, {type: 'string', required: true, message: '必输项'},
{max: 29,message:'长度不能超过29'} {max: 29,message:'长度不能超过29'}
], ],
'lidgrp.ben.pts.ref':[ 'lidgrp.ben.pts.ref':[
...@@ -383,7 +383,7 @@ export default { ...@@ -383,7 +383,7 @@ export default {
], ],
'lidgrp.rec.tenmaxday':[ 'lidgrp.rec.tenmaxday':[
{ required: false, message: '必输项'}, { required: false, message: '必输项'},
{type: 'string', max: 999,message:'只能输入数字,长度不能超过3'} // {type: 'string', max: 999,message:'只能输入数字,长度不能超过3'}
], ],
'lidgrp.rec.porloa':[ 'lidgrp.rec.porloa':[
{type: 'string', required: false, message: '必输项'}, {type: 'string', required: false, message: '必输项'},
...@@ -793,12 +793,16 @@ export default { ...@@ -793,12 +793,16 @@ export default {
{type: 'string', required: false, message: '必输项'}, {type: 'string', required: false, message: '必输项'},
{max: 14,message:'长度不能超过14'} {max: 14,message:'长度不能超过14'}
], ],
'lidgrp.rec.stacty':[
{type: 'string', required: true, message: '必输项'},
{max: 2,message:'长度不能超过2'}
],
/** /**
* Litame Check规则 * Litame Check规则
*/ */
'lidgrp.rec.lcrtyp': null, 'lidgrp.rec.lcrtyp': null,
'lidgrp.rec.apprul': null, 'lidgrp.rec.apprul': null,
'lidgrp.rec.stacty': null, // 'lidgrp.rec.stacty': null,
'setmod.dspflg': null, 'setmod.dspflg': null,
'lidgrp.rec.shptrss18': null, 'lidgrp.rec.shptrss18': null,
'lidgrp.rec.cnfdet': null, 'lidgrp.rec.cnfdet': null,
......
...@@ -377,8 +377,6 @@ export default { ...@@ -377,8 +377,6 @@ export default {
this.flag4 = true; this.flag4 = true;
this.flag5 = true; this.flag5 = true;
this.flag6 = true; this.flag6 = true;
// this.model.lidgrp.avb.pts.adrblk = null
// this.model.lidgrp.avb.pts.extkey = null
} //Specified Bank 指定银行 } //Specified Bank 指定银行
else if (val == 'S') { else if (val == 'S') {
this.flag4 = true; this.flag4 = true;
......
...@@ -104,7 +104,9 @@ ...@@ -104,7 +104,9 @@
v-model="model.lidgrp.con.pts.extkey" v-model="model.lidgrp.con.pts.extkey"
maxlength="16" maxlength="16"
placeholder="请输入编号" placeholder="请输入编号"
@keyup.enter.native="showGridPromptDialog('lidgrp.con.pts.extkey')" @keyup.enter.native="
queryGridEtyPromptDialogData('CON', 'B')
"
></c-input> ></c-input>
<template slot="footer"> <template slot="footer">
<c-button <c-button
...@@ -161,7 +163,9 @@ ...@@ -161,7 +163,9 @@
<c-input <c-input
v-model="model.lidgrp.a2b.pts.extkey" v-model="model.lidgrp.a2b.pts.extkey"
maxlength="16" maxlength="16"
@keyup.enter.native="showGridPromptDialog('lidgrp.a2b.pts.extkey')" @keyup.enter.native="
queryGridEtyPromptDialogData('A2B', 'B')
"
placeholder="" placeholder=""
></c-input> ></c-input>
<template slot="footer"> <template slot="footer">
......
export default { export default {
buildPtspta (ptsptaObj) { buildPtspta(ptsptaObj) {
let pts = ptsptaObj.pts; let pts = ptsptaObj.pts;
let ptspta = { let ptspta = {
rol: pts.rol, rol: pts.rol,
...@@ -17,12 +17,12 @@ export default { ...@@ -17,12 +17,12 @@ export default {
}; };
return ptspta; return ptspta;
}, },
buildCommonData (model, trnName) { buildCommonData(model, trnName) {
let ptsptaList = []; let ptsptaList = [];
if (model.trdgrp.fip.pts.extkey) { if (model.trdgrp.fip.pts.extkey) {
ptsptaList.push(this.buildPtspta(model.trdgrp.fip)); ptsptaList.push(this.buildPtspta(model.trdgrp.fip));
} }
let dataObj = { let dataObj = {
rec: { rec: {
objtyp: 'trd', objtyp: 'trd',
...@@ -31,6 +31,18 @@ export default { ...@@ -31,6 +31,18 @@ export default {
opndat: model.trdgrp.rec.opndat, opndat: model.trdgrp.rec.opndat,
expdat: model.trdgrp.rec.expdat, expdat: model.trdgrp.rec.expdat,
branchInr: model.trdgrp.rec.branchinr, branchInr: model.trdgrp.rec.branchinr,
cbeAmt: model.trtmod.finmod.cbs.cbe.amt,
cbbAmt: model.trtmod.finmod.cbs.cbb.amt,
cbeIntamt1: model.trtmod.finmod.cbs.cbe.intamt1,
cbeIntamt2: model.trtmod.finmod.cbs.cbe.intamt2,
cbeIntamty1: model.trtmod.finmod.cbs.cbe.intamty1,
cbeIntamty2: model.trtmod.finmod.cbs.cbe.intamty2,
cbeIntamt: model.trtmod.finmod.cbs.cbe.intamt,
actflg: model.actflg,
clsflg: model.clsflg,
setact: model.setact,
cbsCalflg: model.trtmod.finmod.cbs.calflg,
doccur: model.setmod.doccur,
}, },
cbsMap: { cbsMap: {
MAX: model.trdgrp.cbs.max, MAX: model.trdgrp.cbs.max,
...@@ -47,7 +59,7 @@ export default { ...@@ -47,7 +59,7 @@ export default {
}; };
return dataObj return dataObj
}, },
buildSetfeg (model, trnName) { buildSetfeg(model, trnName) {
let params = { let params = {
...this.buildCommonData(model, trnName), ...this.buildCommonData(model, trnName),
liaall: model.liaall, liaall: model.liaall,
...@@ -56,7 +68,7 @@ export default { ...@@ -56,7 +68,7 @@ export default {
}; };
return params return params
}, },
buildSetglg (model, trnName) { buildSetglg(model, trnName) {
let params = { let params = {
...this.buildCommonData(model, trnName), ...this.buildCommonData(model, trnName),
setfeg: model.setmod.setfeg, setfeg: model.setmod.setfeg,
...@@ -65,7 +77,7 @@ export default { ...@@ -65,7 +77,7 @@ export default {
}; };
return params return params
}, },
buildGlentry (model, trnName) { buildGlentry(model, trnName) {
let params = { let params = {
...this.buildCommonData(model, trnName), ...this.buildCommonData(model, trnName),
liaallg: model.liaall.liaallg, liaallg: model.liaall.liaallg,
...@@ -75,20 +87,20 @@ export default { ...@@ -75,20 +87,20 @@ export default {
}; };
return params return params
}, },
buildEngp (model, trnName) { buildEngp(model, trnName) {
let params = { let params = {
...this.buildCommonData(model, trnName), ...this.buildCommonData(model, trnName),
liaallg: model.liaall.liaallg, liaallg: model.liaall.liaallg,
}; };
return params return params
}, },
buildDocpan (model, trnName) { buildDocpan(model, trnName) {
let params = { let params = {
...this.buildCommonData(model, trnName), ...this.buildCommonData(model, trnName),
}; };
return params return params
}, },
buildCcvpan (model, trnName) { buildCcvpan(model, trnName) {
let params = { let params = {
...this.buildCommonData(model, trnName), ...this.buildCommonData(model, trnName),
liaccvg: model.liaccv.liaccvg, liaccvg: model.liaccv.liaccvg,
...@@ -98,7 +110,7 @@ export default { ...@@ -98,7 +110,7 @@ export default {
}; };
return params return params
}, },
buildLimitbody (model, trnName) { buildLimitbody(model, trnName) {
let params = { let params = {
...this.buildCommonData(model, trnName), ...this.buildCommonData(model, trnName),
rec: { rec: {
...@@ -109,7 +121,7 @@ export default { ...@@ -109,7 +121,7 @@ export default {
}; };
return params return params
}, },
buildDoctre (model, trnName) { buildDoctre(model, trnName) {
let params = { let params = {
...this.buildCommonData(model, trnName), ...this.buildCommonData(model, trnName),
rec: { rec: {
...@@ -122,7 +134,7 @@ export default { ...@@ -122,7 +134,7 @@ export default {
return params return params
}, },
// 公共组件setmod中dsp字段改变,触发联动时候的入参 // 公共组件setmod中dsp字段改变,触发联动时候的入参
buildSetgllAccts (model, trnName, setglg) { buildSetgllAccts(model, trnName, setglg) {
let params = { let params = {
...this.buildCommonData(model, trnName), ...this.buildCommonData(model, trnName),
setglg setglg
......
...@@ -98,6 +98,7 @@ export default class Trtset { ...@@ -98,6 +98,7 @@ export default class Trtset {
intprd: "", // 计息周期 .trtmod.finmod.intprd intprd: "", // 计息周期 .trtmod.finmod.intprd
}, },
}, },
actflg: "",
setamt: "", // Settlement Amount .setamt setamt: "", // Settlement Amount .setamt
setact: "", // Settlement Account .setact setact: "", // Settlement Account .setact
clsflg: "", // 抹�'� .clsflg clsflg: "", // 抹�'� .clsflg
......
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