Commit cd112514 by liaoxing

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 a4958b0d 46acbc6d
...@@ -28,6 +28,15 @@ export default { ...@@ -28,6 +28,15 @@ export default {
if (model.lidgrp.ben.pts.extkey) { if (model.lidgrp.ben.pts.extkey) {
ptsptaList.push(this.buildPtspta(model.lidgrp.ben)); ptsptaList.push(this.buildPtspta(model.lidgrp.ben));
} }
if (model.lidgrp.rmb.pts.extkey) {
ptsptaList.push(this.buildPtspta(model.lidgrp.rmb));
}
if (model.lidgrp.acb.pts.extkey) {
ptsptaList.push(this.buildPtspta(model.lidgrp.acb));
}
if (model.lidgrp.beb.pts.extkey) {
ptsptaList.push(this.buildPtspta(model.lidgrp.beb));
}
let dataObj = { let dataObj = {
rec: { rec: {
objtyp: 'BRD', objtyp: 'BRD',
......
...@@ -5,6 +5,7 @@ export default { ...@@ -5,6 +5,7 @@ export default {
"liaall.limmod.limpts.nonrevflg1" :null, "liaall.limmod.limpts.nonrevflg1" :null,
"brdgrp.rec.docprbrol" :null, "brdgrp.rec.docprbrol" :null,
"brdgrp.rec.totamt" :null, "brdgrp.rec.totamt" :null,
"brdgrp.cbs.max2.amt":null,
"brtp.lidget.sdamod.dadsnd":[ "brtp.lidget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
...@@ -291,17 +292,23 @@ export default { ...@@ -291,17 +292,23 @@ export default {
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"} {max: 3,message:"长度不能超过3"}
], ],
// "brdgrp.cbs.max.amt":[
// {type: "number", required: false, message: "必输项"}, "brdgrp.cbs.max.amt":[
// {max: 18,message:"整数位不能超过14位"}, { type: 'string', required: true, message: '必输项' },
// {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" } { max: 15, message: '整数位不能超过15位' },
// ], {
pattern: /(^\d+$)|(^\.\d{1,2}$)|(^\d+\.\d{1,2}$)/,
// "brdgrp.cbs.max2.amt":[ message: '小数位不能超过2位',
// {type: "number", required: false, message: "必输项"}, },
// {max: 18,message:"整数位不能超过14位"}, ],
// {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" } "brdgrp.cbs.max2.amt":[
// ], { type: 'string', required: false, message: '必输项' },
{ max: 15, message: '整数位不能超过15位' },
{
pattern: /(^\d+$)|(^\.\d{1,2}$)|(^\d+\.\d{1,2}$)/,
message: '小数位不能超过2位',
},
],
"brdgrp.blk.chaded":[ "brdgrp.blk.chaded":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 200,message:"长度不能超过200"} {max: 200,message:"长度不能超过200"}
......
...@@ -30,6 +30,7 @@ export default class Litdav { ...@@ -30,6 +30,7 @@ export default class Litdav {
docsta: '', docsta: '',
orddat: '', orddat: '',
disdat: '', disdat: '',
advdat: '',
invref: '', invref: '',
rptref: '', rptref: '',
shpdat: '', shpdat: '',
...@@ -47,7 +48,7 @@ export default class Litdav { ...@@ -47,7 +48,7 @@ export default class Litdav {
branchinr: '', branchinr: '',
invtyp: '', invtyp: '',
bchkeyinr: '', bchkeyinr: '',
totamt: '0', totamt: '0.00',
totcur: '', totcur: '',
rtoaplflg: '', rtoaplflg: '',
inr: '', inr: '',
...@@ -62,11 +63,11 @@ export default class Litdav { ...@@ -62,11 +63,11 @@ export default class Litdav {
}, },
max: { max: {
cur: '', cur: '',
amt: '0' amt: '0.00'
}, },
max2: { max2: {
cur: '', cur: '',
amt: '0' amt: '0.00'
} }
}, },
rmb: { rmb: {
......
...@@ -119,7 +119,12 @@ ...@@ -119,7 +119,12 @@
<c-col :span="24"> <c-col :span="24">
<el-form-item label="通知类型" prop="brdgrp.rec.advtyp"> <el-form-item label="通知类型" prop="brdgrp.rec.advtyp">
<c-select :code="codes.advtyp" v-model="model.brdgrp.rec.advtyp" style="width:100%" placeholder="请选择通知类型"> <c-select
:code="codes.advtyp"
v-model="model.brdgrp.rec.advtyp"
style="width:100%"
placeholder="请选择通知类型"
>
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -127,16 +132,26 @@ ...@@ -127,16 +132,26 @@
<c-col :span="12"> <c-col :span="12">
<el-form-item label="建议付款日期" prop="brdgrp.rec.advdat"> <el-form-item label="建议付款日期" prop="brdgrp.rec.advdat">
<c-date-picker <c-date-picker
:disabled=" (this.model.brdgrp.rec.advtyp == '750' || this.model.brdgrp.rec.advtyp == 'OTH') " :disabled=" (this.model.brdgrp.rec.advtyp == '750' || this.model.brdgrp.rec.advtyp == 'oth') "
type="date" v-model="model.brdgrp.rec.advdat" style="width:100%" placeholder="请选择建议付款日期"></c-date-picker> type="date"
v-model="model.brdgrp.rec.advdat"
style="width:100%"
placeholder="请选择建议付款日期"
value-format="yyyy-MM-dd"
></c-date-picker>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="12"> <c-col :span="12">
<el-form-item label="不符点通知日期" prop="brdgrp.rec.disdat"> <el-form-item label="不符点通知日期" prop="brdgrp.rec.disdat">
<c-date-picker <c-date-picker
:disabled=" (this.model.brdgrp.rec.advtyp == '754' || this.model.brdgrp.rec.advtyp == 'OTH') " :disabled=" (this.model.brdgrp.rec.advtyp == '754' || this.model.brdgrp.rec.advtyp == 'oth') "
type="date" v-model="model.brdgrp.rec.disdat" style="width:100%" placeholder="请选择不符点通知日期"></c-date-picker> type="date"
v-model="model.brdgrp.rec.disdat"
style="width:100%"
placeholder="请选择不符点通知日期"
value-format="yyyy-MM-dd"
></c-date-picker>
</el-form-item> </el-form-item>
</c-col> </c-col>
</el-col> </el-col>
...@@ -176,19 +191,24 @@ ...@@ -176,19 +191,24 @@
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="单行参考号" prop="brdgrp.prb.pts.ref"> <el-form-item label="单行参考号" prop="brdgrp.prb.pts.ref">
<c-input :disabled="true" v-model="model.brdgrp.prb.pts.ref" maxlength="16" placeholder="请输入编号"></c-input> <c-input :disabled="true" v-model="model.brdgrp.prb.pts.ref" maxlength="16" placeholder="请输入编号"></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item prop="brdgrp.prb.pts.nam" label="单行名称"> <el-form-item prop="brdgrp.prb.pts.nam" label="单行名称">
<c-input :disabled="true" v-model="model.brdgrp.prb.pts.nam" maxlength="40" placeholder="请输入名称"></c-input> <c-input :disabled="true" v-model="model.brdgrp.prb.pts.nam" maxlength="40" placeholder="请输入名称"></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="简略信息" prop="brdgrp.rec.nam"> <el-form-item label="简略信息" prop="brdgrp.rec.nam">
<c-input :disabled="true" v-model="model.brdgrp.rec.nam" maxlength="40" placeholder="请输入简略信息"></c-input> <c-input
:disabled="true"
v-model="model.brdgrp.rec.nam"
maxlength="40"
placeholder="请输入简略信息"
></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
...@@ -270,18 +290,27 @@ export default { ...@@ -270,18 +290,27 @@ export default {
immediate:true, immediate:true,
handler(){ handler(){
if(this.model.brdgrp.rec.advtyp == '750' ){ if(this.model.brdgrp.rec.advtyp == '750' ){
this.model.brdgrp.rec.advdat = ' ' this.model.brdgrp.rec.advdat = ""
this.model.brdgrp.blk.docdisflg= 'X' this.model.brdgrp.blk.docdisflg= 'X'
}else if(this.model.brdgrp.rec.advtyp == '754'){ }else if(this.model.brdgrp.rec.advtyp == '754'){
this.model.brdgrp.rec.disdat = ' ' this.model.brdgrp.rec.disdat = ""
}else if( this.model.brdgrp.rec.advtyp == 'OTH'){ }else if( this.model.brdgrp.rec.advtyp == 'oth'){
this.model.brdgrp.rec.advdat = ' ' this.model.brdgrp.rec.advdat = ""
this.model.brdgrp.rec.disdat = ' ' this.model.brdgrp.rec.disdat = ""
} }
} }
} },
"model.brdgrp":{
immediate: true,
deep: true,
handler(val,oldval){
const res = this.model.brdgrp
if(res.cbs.max.cur !== "" || res.cbs.max.amt !== "" || this.model.lidgrp.apl.pts.adrblk !== ""){
this.model.brdgrp.cbs.max.cur=this.model.lidgrp.cbs.nom1.cur;
this.model.brdgrp.rec.nam = `${res.cbs.max.cur} ${res.cbs.max.amt} ${this.model.lidgrp.apl.pts.adrblk.substring(0,16)}`
}
}
},
}, },
methods: {}, methods: {},
created: function() {} created: function() {}
......
...@@ -68,12 +68,14 @@ ...@@ -68,12 +68,14 @@
<c-col :span="24"> <c-col :span="24">
<c-col :span="12"> <c-col :span="12">
<el-form-item label="账户号地址编号" prop="brdgrp.acb.pts.extkey"> <el-form-item label="账户" prop="brdgrp.acb.pts.extkey">
<c-fullbox> <c-fullbox>
<c-input <c-input
v-model="model.brdgrp.acb.pts.extkey" v-model="model.brdgrp.acb.pts.extkey"
maxlength="16" maxlength="16"
placeholder="请输入地址编码" placeholder="请输入地址编码"
@keyup.enter.native="
queryGridEtyPromptDialogData('ACB', 'B')"
></c-input> ></c-input>
<template slot="footer"> <template slot="footer">
<c-button size="small" type="primary"> <c-button size="small" type="primary">
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<el-form-item label="单据金额" prop="brdgrp.cbs.max.cur"> <el-form-item label="单据金额" prop="brdgrp.cbs.max.cur">
<c-input <c-input
disabled disabled
v-model="model.brdgrp.cbs.max.cur" v-model="maxcur"
maxlength="3" maxlength="3"
placeholder="请输入单据金额" placeholder="请输入单据金额"
></c-input> ></c-input>
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
<el-form-item label="提取附加金额" prop="brdgrp.cbs.opn2.cur"> <el-form-item label="提取附加金额" prop="brdgrp.cbs.opn2.cur">
<c-select <c-select
disabled disabled
v-model="model.brdgrp.cbs.opn2.cur" v-model="opn2cur"
style="width: 100%" style="width: 100%"
placeholder="请选择附加金额" placeholder="请选择附加金额"
> >
...@@ -72,7 +72,7 @@ ...@@ -72,7 +72,7 @@
<el-form-item label="待支付金额" prop="brdgrp.rec.totcur"> <el-form-item label="待支付金额" prop="brdgrp.rec.totcur">
<c-input <c-input
disabled disabled
v-model="model.brdgrp.rec.totcur" v-model="rectotcur"
maxlength="3" maxlength="3"
placeholder="请选择币种" placeholder="请选择币种"
></c-input> ></c-input>
...@@ -82,7 +82,7 @@ ...@@ -82,7 +82,7 @@
<c-col :span="12"> <c-col :span="12">
<el-form-item label="" label-width="10px" prop="brdgrp.rec.totamt"> <el-form-item label="" label-width="10px" prop="brdgrp.rec.totamt">
<c-input <c-input
v-model="model.brdgrp.rec.totamt" v-model="totamt"
placeholder="请输入金额" placeholder="请输入金额"
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -94,6 +94,8 @@ ...@@ -94,6 +94,8 @@
v-model="model.brdgrp.rmb.pts.extkey" v-model="model.brdgrp.rmb.pts.extkey"
maxlength="16" maxlength="16"
placeholder="请输入地址编号" placeholder="请输入地址编号"
@keyup.enter.native="
queryGridEtyPromptDialogData('RMB', 'B')"
></c-input> ></c-input>
<template slot="footer"> <template slot="footer">
...@@ -124,6 +126,8 @@ ...@@ -124,6 +126,8 @@
v-model="model.brdgrp.acb.pts.extkey" v-model="model.brdgrp.acb.pts.extkey"
maxlength="16" maxlength="16"
placeholder="请输入地址编号" placeholder="请输入地址编号"
@keyup.enter.native="
queryGridEtyPromptDialogData('ACB', 'B')"
></c-input> ></c-input>
<template slot="footer"> <template slot="footer">
...@@ -182,6 +186,8 @@ ...@@ -182,6 +186,8 @@
v-model="model.brdgrp.beb.pts.extkey" v-model="model.brdgrp.beb.pts.extkey"
maxlength="16" maxlength="16"
placeholder="请输入地址编号" placeholder="请输入地址编号"
@keyup.enter.native="
queryGridEtyPromptDialogData('BEB', 'B')"
></c-input> ></c-input>
<template slot="footer"> <template slot="footer">
...@@ -221,6 +227,28 @@ export default { ...@@ -221,6 +227,28 @@ export default {
}, },
methods: {}, methods: {},
created: function () {}, created: function () {},
computed: {
totamt(){
const maxAmt = this.model.brdgrp.cbs.max.amt
const max2Amt = this.model.brdgrp.cbs.max2.amt
this.model.brdgrp.rec.totamt =
parseFloat(isNaN(maxAmt) || !maxAmt ? 0 : maxAmt) +
parseFloat(isNaN(max2Amt) || !max2Amt ? 0 : max2Amt)
return this.model.brdgrp.rec.totamt
} ,
maxcur(){
this.model.brdgrp.cbs.max.cur = this.model.lidgrp.cbs.nom1.cur
return this.model.brdgrp.cbs.max.cur
},
opn2cur(){
this.model.brdgrp.cbs.opn2.cur = this.model.lidgrp.cbs.nom1.cur
return this.model.brdgrp.cbs.opn2.cur
},
rectotcur(){
this.model.brdgrp.rec.totcur = this.model.lidgrp.cbs.nom1.cur
return this.model.brdgrp.rec.totcur
}
}
}; };
</script> </script>
<style></style> <style></style>
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<el-form-item label="单据金额" prop="brdgrp.cbs.max.cur"> <el-form-item label="单据金额" prop="brdgrp.cbs.max.cur">
<c-input <c-input
disabled disabled
v-model="model.brdgrp.cbs.max.cur" v-model="maxcur"
maxlength="3" maxlength="3"
placeholder="请输入单据金额" placeholder="请输入单据金额"
></c-input> ></c-input>
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
<el-form-item label="提取附加金额" prop="brdgrp.cbs.opn2.cur"> <el-form-item label="提取附加金额" prop="brdgrp.cbs.opn2.cur">
<c-select <c-select
disabled disabled
v-model="model.brdgrp.cbs.opn2.cur" v-model="opn2cur"
style="width: 100%" style="width: 100%"
placeholder="请选择附加金额" placeholder="请选择附加金额"
> >
...@@ -69,7 +69,7 @@ ...@@ -69,7 +69,7 @@
<el-form-item label="待支付总额" prop="brdgrp.rec.totcur"> <el-form-item label="待支付总额" prop="brdgrp.rec.totcur">
<c-input <c-input
disabled disabled
v-model="model.brdgrp.rec.totcur" v-model="rectotcur"
maxlength="3" maxlength="3"
placeholder="请输入待支付总额" placeholder="请输入待支付总额"
></c-input> ></c-input>
...@@ -79,7 +79,7 @@ ...@@ -79,7 +79,7 @@
<c-col :span="12"> <c-col :span="12">
<el-form-item label="" label-width="10px" prop="brdgrp.rec.totamt"> <el-form-item label="" label-width="10px" prop="brdgrp.rec.totamt">
<c-input <c-input
v-model="model.brdgrp.rec.totamt" v-model="totamt"
placeholder="请输入待支付总额" placeholder="请输入待支付总额"
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -87,12 +87,14 @@ ...@@ -87,12 +87,14 @@
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="账户行" prop="brdgrp.acb.pts.extkey"> <el-form-item label="账户行" prop="brdgrp.acb.pts.extkey">
<c-fullbox> <c-fullbox>
<c-input <c-input
v-model="model.brdgrp.acb.pts.extkey" v-model="model.brdgrp.acb.pts.extkey"
maxlength="16" maxlength="16"
placeholder="请输入账户银行" placeholder="请输入账户银行"
@keyup.enter.native="
queryGridEtyPromptDialogData('ACB', 'B')"
></c-input> ></c-input>
<template slot="footer"> <template slot="footer">
...@@ -124,6 +126,8 @@ ...@@ -124,6 +126,8 @@
v-model="model.brdgrp.beb.pts.extkey" v-model="model.brdgrp.beb.pts.extkey"
maxlength="16" maxlength="16"
placeholder="请输入受益人银行" placeholder="请输入受益人银行"
@keyup.enter.native="
queryGridEtyPromptDialogData('BEB', 'B')"
></c-input> ></c-input>
<template slot="footer"> <template slot="footer">
...@@ -162,6 +166,28 @@ export default { ...@@ -162,6 +166,28 @@ export default {
}, },
methods: {}, methods: {},
created: function () {}, created: function () {},
computed: {
totamt(){
const maxAmt = this.model.brdgrp.cbs.max.amt
const max2Amt = this.model.brdgrp.cbs.max2.amt
this.model.brdgrp.rec.totamt =
parseFloat(isNaN(maxAmt) || !maxAmt ? 0 : maxAmt) +
parseFloat(isNaN(max2Amt) || !max2Amt ? 0 : max2Amt)
return this.model.brdgrp.rec.totamt
} ,
maxcur(){
this.model.brdgrp.cbs.max.cur = this.model.lidgrp.cbs.nom1.cur
return this.model.brdgrp.cbs.max.cur
},
opn2cur(){
this.model.brdgrp.cbs.opn2.cur = this.model.lidgrp.cbs.nom1.cur
return this.model.brdgrp.cbs.opn2.cur
},
rectotcur(){
this.model.brdgrp.rec.totcur = this.model.lidgrp.cbs.nom1.cur
return this.model.brdgrp.rec.totcur
}
}
}; };
</script> </script>
<style> <style>
......
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,7 +17,7 @@ export default { ...@@ -17,7 +17,7 @@ export default {
}; };
return ptspta; return ptspta;
}, },
buildCommonData (model, trnName) { buildCommonData(model, trnName) {
let ptsptaList = []; let ptsptaList = [];
if (model.lidgrp.apl.pts.extkey) { if (model.lidgrp.apl.pts.extkey) {
ptsptaList.push(this.buildPtspta(model.lidgrp.avb)); ptsptaList.push(this.buildPtspta(model.lidgrp.avb));
...@@ -86,7 +86,7 @@ export default { ...@@ -86,7 +86,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,
...@@ -95,7 +95,7 @@ export default { ...@@ -95,7 +95,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,
...@@ -104,7 +104,7 @@ export default { ...@@ -104,7 +104,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,
...@@ -114,20 +114,20 @@ export default { ...@@ -114,20 +114,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,
...@@ -137,7 +137,7 @@ export default { ...@@ -137,7 +137,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: {
...@@ -148,7 +148,7 @@ export default { ...@@ -148,7 +148,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: {
...@@ -161,7 +161,7 @@ export default { ...@@ -161,7 +161,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
......
...@@ -20,22 +20,22 @@ export default { ...@@ -20,22 +20,22 @@ export default {
...ccvpan, ...ccvpan,
...limitbody, ...limitbody,
...doctre, ...doctre,
async init () { async init() {
const params = { const params = {
spt: JSON.parse(localStorage.getItem('row_' + this.trnName)), spt: JSON.parse(localStorage.getItem('row_' + this.trnName)),
trninr: this.$route.query.trninr, trninr: this.$route.query.trninr,
} }
if ( typeof(this.$route.query.inr) == 'string' ){ if (typeof (this.$route.query.inr) == 'string') {
params.spt = null params.spt = null
} }
const res = await Api.post('/service/litdla/init', { const res = await Api.post('/service/litdla/init', {
...params, ...params,
transName: this.trnName, transName: this.trnName,
userId: window.sessionStorage.userId || 'ZL', userId: window.sessionStorage.userId || 'ZL',
lidgrp:{ lidgrp: {
rec:{ rec: {
inr:this.$route.query.inr inr: this.$route.query.inr
} }
} }
}); });
...@@ -49,7 +49,7 @@ export default { ...@@ -49,7 +49,7 @@ export default {
}, },
// 兼容处理在前端model中定义了字段,后端返回的数据中不存在字段的问题 // 兼容处理在前端model中定义了字段,后端返回的数据中不存在字段的问题
copyValueFromVoData (model, data) { copyValueFromVoData(model, data) {
let keysList = Object.keys(model) let keysList = Object.keys(model)
keysList.map((key) => { keysList.map((key) => {
if (data[key]) { if (data[key]) {
...@@ -148,7 +148,7 @@ export default { ...@@ -148,7 +148,7 @@ export default {
purposChange(key, value) { purposChange(key, value) {
this.handleChangeForm(key, value); this.handleChangeForm(key, value);
}, },
buildLiaccv () { buildLiaccv() {
let params = { let params = {
...buildFn.buildCommonData(this.model, this.trnName), ...buildFn.buildCommonData(this.model, this.trnName),
liaccvg: this.model.liaccv.liaccvg, liaccvg: this.model.liaccv.liaccvg,
...@@ -156,11 +156,11 @@ export default { ...@@ -156,11 +156,11 @@ export default {
chgamt: this.model.liaccv.chgamt, chgamt: this.model.liaccv.chgamt,
concur: this.model.liaccv.concur, concur: this.model.liaccv.concur,
}; };
return params return params
}, },
// 公共组件setmod处理方式改变触发联动 // 公共组件setmod处理方式改变触发联动
changeSetmodModel (emitParams) { changeSetmodModel(emitParams) {
let reqParams = {} let reqParams = {}
switch (emitParams.code) { switch (emitParams.code) {
case 'processMethods': case 'processMethods':
...@@ -170,29 +170,29 @@ export default { ...@@ -170,29 +170,29 @@ export default {
case 'changeDsp': case 'changeDsp':
let index = emitParams.index; let index = emitParams.index;
let setglgRequest = buildFn.buildSetglg(this.model, this.trnName); let setglgRequest = buildFn.buildSetglg(this.model, this.trnName);
setglgRequest.setglg = {setgll: emitParams.list}; setglgRequest.setglg = { setgll: emitParams.list };
this.setgllAccts(setglgRequest, index); this.setgllAccts(setglgRequest, index);
break break
default: default:
return return
} }
}, },
onSeainf() {}, onSeainf() { },
max2Amt(){ max2Amt() {
this.executeDefault("max2.amt").then( this.executeDefault("max2.amt").then(
(res) => { (res) => {
if (res.respCode == SUCCESS){ if (res.respCode == SUCCESS) {
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
} }
); );
}, },
choose(row){ choose(row) {
this.model.amenbr = row.srcStr.split('\t')[0] this.model.amenbr = row.srcStr.split('\t')[0]
this.model.amecur = row.srcStr.split('\t')[2] this.model.amecur = row.srcStr.split('\t')[2]
this.model.reduceamt = row.srcStr.split('\t')[3] this.model.reduceamt = row.srcStr.split('\t')[3]
this.model.amedat = row.srcStr.split('\t')[4] this.model.amedat = row.srcStr.split('\t')[4]
this.model.ameflg = 'Y' this.model.ameflg = 'Y'
}, },
open(val) { open(val) {
......
export default { export default {
"lidgrp.rec.ownref":[ "lidgrp.rec.ownref": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"lidgrp.rec.nam":[ "lidgrp.rec.nam": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 40,message:"长度不能超过40"} { max: 40, message: "长度不能超过40" }
], ],
"lidgrp.apl.pts.ref":[ "lidgrp.apl.pts.ref": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
// "lidgrp.cbs.nom1.amt":[ "lidgrp.cbs.nom1.amt":[
// {type: "number", required: false, message: "必输项"},
// {max: 18,message:"整数位不能超过14位"},
// {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
// ],
"lidgrp.apl.pts.nam":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"} {max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
], ],
// "lidgrp.cbs.opn1.amt":[ "lidgrp.apl.pts.nam": [
// {type: "number", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
// {max: 18,message:"整数位不能超过14位"}, { max: 40, message: "长度不能超过40" }
// {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
// ],
"lidgrp.avbnam":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
], ],
"lidgrp.ben.pts.ref":[
"lidgrp.cbs.opn1.amt":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"} {max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"lidgrp.avbnam": [
{ type: "string", required: false, message: "必输项" },
{ max: 40, message: "长度不能超过40" }
],
"lidgrp.ben.pts.ref": [
{ type: "string", required: false, message: "必输项" },
{ max: 16, message: "长度不能超过16" }
], ],
"lidgrp.ben.pts.nam":[ "lidgrp.ben.pts.nam": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 40,message:"长度不能超过40"} { max: 40, message: "长度不能超过40" }
], ],
"lidgrp.rec.opndat":[ "lidgrp.rec.opndat": [
{type: "string", required: true, message: "输入正确的日期"} { type: "string", required: true, message: "输入正确的日期" }
], ],
"lidgrp.rec.shpdat":[ "lidgrp.rec.shpdat": [
{type: "string", required: false, message: "输入正确的日期"} { type: "string", required: false, message: "输入正确的日期" }
], ],
"lidgrp.adv.pts.ref":[ "lidgrp.adv.pts.ref": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"lidgrp.rec.expdat":[ "lidgrp.rec.expdat": [
{type: "string", required: false, message: "输入正确的日期"} { type: "string", required: false, message: "输入正确的日期" }
], ],
"lidgrp.rec.expplc":[ "lidgrp.rec.expplc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 29,message:"长度不能超过29"} { max: 29, message: "长度不能超过29" }
], ],
"lidgrp.adv.pts.nam":[ "lidgrp.adv.pts.nam": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 40,message:"长度不能超过40"} { max: 40, message: "长度不能超过40" }
], ],
...@@ -75,47 +75,47 @@ export default { ...@@ -75,47 +75,47 @@ export default {
"decstm":[ "decstm": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 1,message:"长度不能超过1"} { max: 1, message: "长度不能超过1" }
], ],
"amenbr":[ "amenbr": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 3,message:"长度不能超过3"} { max: 3, message: "长度不能超过3" }
], ],
"reduceamt":[ "reduceamt": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 18,message:"长度不能超过18"} { max: 18, message: "长度不能超过18" }
], ],
"amedat":[ "amedat": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 12,message:"长度不能超过12"} { max: 12, message: "长度不能超过12" }
], ],
"litamep.recget.sdamod.dadsnd":[ "litamep.recget.sdamod.dadsnd": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"lidgrp.rec.ownref":[ "lidgrp.rec.ownref": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"litamep.recget.sdamod.seainf":[ "litamep.recget.sdamod.seainf": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 3,message:"长度不能超过3"} { max: 3, message: "长度不能超过3" }
], ],
"lidgrp.rec.nam":[ "lidgrp.rec.nam": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 40,message:"长度不能超过40"} { max: 40, message: "长度不能超过40" }
], ],
"trnmod.swiadd.amedat":[ "trnmod.swiadd.amedat": [
{type: "string", required: false, message: "输入正确的日期"} { type: "string", required: false, message: "输入正确的日期" }
], ],
// "trnmod.swiadd.amenbr":[ // "trnmod.swiadd.amenbr":[
// {type: "string", required: false, message: "必输项"}, // {type: "string", required: false, message: "必输项"},
...@@ -125,9 +125,9 @@ export default { ...@@ -125,9 +125,9 @@ export default {
// {type: "string", required: false, message: "必输项"}, // {type: "string", required: false, message: "必输项"},
// {max: 3,message:"长度不能超过3"} // {max: 3,message:"长度不能超过3"}
// ], // ],
"lidgrp.cbs.nom1.cur":[ "lidgrp.cbs.nom1.cur": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 3,message:"长度不能超过3"} { max: 3, message: "长度不能超过3" }
], ],
// "oldlidgrp.cbs.nom1.amt":[ // "oldlidgrp.cbs.nom1.amt":[
// {type: "number", required: false, message: "必输项"}, // {type: "number", required: false, message: "必输项"},
...@@ -142,9 +142,9 @@ export default { ...@@ -142,9 +142,9 @@ export default {
// {type: "string", required: false, message: "必输项"}, // {type: "string", required: false, message: "必输项"},
// {max: 2,message:"长度不能超过2"} // {max: 2,message:"长度不能超过2"}
// ], // ],
"oldlidgrp.cbs.max.cur":[ "oldlidgrp.cbs.max.cur": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 3,message:"长度不能超过3"} { max: 3, message: "长度不能超过3" }
], ],
// "oldlidgrp.cbs.max.amt":[ // "oldlidgrp.cbs.max.amt":[
// {type: "number", required: false, message: "必输项"}, // {type: "number", required: false, message: "必输项"},
...@@ -177,9 +177,9 @@ export default { ...@@ -177,9 +177,9 @@ export default {
// {type: "string", required: false, message: "必输项"}, // {type: "string", required: false, message: "必输项"},
// {max: 2,message:"长度不能超过2"} // {max: 2,message:"长度不能超过2"}
// ], // ],
"litamep.maxcur":[ "litamep.maxcur": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 3,message:"长度不能超过3"} { max: 3, message: "长度不能超过3" }
], ],
// "litamep.maxamt":[ // "litamep.maxamt":[
// {type: "number", required: false, message: "必输项"}, // {type: "number", required: false, message: "必输项"},
...@@ -187,17 +187,17 @@ export default { ...@@ -187,17 +187,17 @@ export default {
// {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" } // {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
// ], // ],
"oldlidgrp.rec.expdat":[ "oldlidgrp.rec.expdat": [
{type: "string", required: false, message: "输入正确的日期"} { type: "string", required: false, message: "输入正确的日期" }
], ],
"oldlidgrp.rec.shpdat":[ "oldlidgrp.rec.shpdat": [
{type: "string", required: false, message: "输入正确的日期"} { type: "string", required: false, message: "输入正确的日期" }
], ],
"trnmod.swiadd.newexpdat":[ "trnmod.swiadd.newexpdat": [
{type: "string", required: false, message: "输入正确的日期"} { type: "string", required: false, message: "输入正确的日期" }
], ],
"trnmod.swiadd.newshpdat":[ "trnmod.swiadd.newshpdat": [
{type: "string", required: false, message: "输入正确的日期"} { type: "string", required: false, message: "输入正确的日期" }
], ],
// "oldlidgrp.rec.prepers18":[ // "oldlidgrp.rec.prepers18":[
...@@ -208,92 +208,92 @@ export default { ...@@ -208,92 +208,92 @@ export default {
// {type: "string", required: false, message: "必输项"}, // {type: "string", required: false, message: "必输项"},
// {max: 3,message:"长度不能超过3"} // {max: 3,message:"长度不能超过3"}
// ], // ],
"oldlidgrp.blk.preper":[ "oldlidgrp.blk.preper": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"oldlidgrp.rec.prepertxts18":[ "oldlidgrp.rec.prepertxts18": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"trnmod.swiadd.prepertxts18":[ "trnmod.swiadd.prepertxts18": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"ameflg":[ "ameflg": [
{ required: true, message: "必输项"}, { required: true, message: "必输项" },
], ],
"lidgrp.cbs.max2.cur":[ "lidgrp.cbs.max2.cur": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 3,message:"长度不能超过3"} { max: 3, message: "长度不能超过3" }
], ],
// "trnmod.swiadd.addamt":[ // "trnmod.swiadd.addamt":[
// {type: "number", required: false, message: "必输项"}, // {type: "number", required: false, message: "必输项"},
// {max: 18,message:"整数位不能超过14位"}, // {max: 18,message:"整数位不能超过14位"},
// {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" } // {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
// ], // ],
"trnmod.swiadd.trnfeetxt":[ "trnmod.swiadd.trnfeetxt": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"trnmod.swiadd.addamtcov":[ "trnmod.swiadd.addamtcov": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"litp.recget.sdamod.dadsnd":[ "litp.recget.sdamod.dadsnd": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"lidgrp.rec.ownref":[ "lidgrp.rec.ownref": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"litp.recget.sdamod.seainf":[ "litp.recget.sdamod.seainf": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 3,message:"长度不能超过3"} { max: 3, message: "长度不能超过3" }
], ],
"lidgrp.rec.nam":[ "lidgrp.rec.nam": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 40,message:"长度不能超过40"} { max: 40, message: "长度不能超过40" }
], ],
"lidgrp.apl.pts.ref":[ "lidgrp.apl.pts.ref": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"litp.aplp.ptsget.sdamod.dadsnd":[ "litp.aplp.ptsget.sdamod.dadsnd": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"litp.usr.extkey":[ "litp.usr.extkey": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 8,message:"长度不能超过8"} { max: 8, message: "长度不能超过8" }
], ],
"litp.usrget.sdamod.seainf":[ "litp.usrget.sdamod.seainf": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 3,message:"长度不能超过3"} { max: 3, message: "长度不能超过3" }
], ],
"lidgrp.apl.pts.extkey":[ "lidgrp.apl.pts.extkey": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"litp.aplp.ptsget.sdamod.seainf":[ "litp.aplp.ptsget.sdamod.seainf": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 3,message:"长度不能超过3"} { max: 3, message: "长度不能超过3" }
], ],
"lidgrp.apl.namelc":[ "lidgrp.apl.namelc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
// "lidgrp.cbs.nom1.amt":[ // "lidgrp.cbs.nom1.amt":[
...@@ -302,13 +302,13 @@ export default { ...@@ -302,13 +302,13 @@ export default {
// {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" } // {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
// ], // ],
"lidgrp.apl.pts.adrblk":[ "lidgrp.apl.pts.adrblk": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 135,message:"长度不能超过135"} { max: 135, message: "长度不能超过135" }
], ],
"lidgrp.apl.dbfadrblkcn":[ "lidgrp.apl.dbfadrblkcn": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
// "lidgrp.rec.nomtop":[ // "lidgrp.rec.nomtop":[
// { required: false, message: ""}, // { required: false, message: ""},
...@@ -318,14 +318,14 @@ export default { ...@@ -318,14 +318,14 @@ export default {
// { required: false, message: ""}, // { required: false, message: ""},
// {max: 2,message:"长度不能超过2"} // {max: 2,message:"长度不能超过2"}
// ], // ],
"lidgrp.apl.adrelc":[ "lidgrp.apl.adrelc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.adv.pts.ref":[ "lidgrp.adv.pts.ref": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
// "lidgrp.cbs.max.amt":[ // "lidgrp.cbs.max.amt":[
...@@ -333,120 +333,120 @@ export default { ...@@ -333,120 +333,120 @@ export default {
// {max: 18,message:"整数位不能超过14位"}, // {max: 18,message:"整数位不能超过14位"},
// {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" } // {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
// ], // ],
"litp.advp.ptsget.sdamod.dadsnd":[ "litp.advp.ptsget.sdamod.dadsnd": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"lidgrp.adv.pts.extkey":[ "lidgrp.adv.pts.extkey": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"litp.advp.ptsget.sdamod.seainf":[ "litp.advp.ptsget.sdamod.seainf": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 3,message:"长度不能超过3"} { max: 3, message: "长度不能超过3" }
], ],
"lidgrp.rec.opndat":[ "lidgrp.rec.opndat": [
{type: "string", required: true, message: "输入正确的日期"} { type: "string", required: true, message: "输入正确的日期" }
], ],
"lidgrp.rec.preadvdt":[ "lidgrp.rec.preadvdt": [
{type: "string", required: false, message: "输入正确的日期"} { type: "string", required: false, message: "输入正确的日期" }
], ],
"lidgrp.adv.namelc":[ "lidgrp.adv.namelc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.adv.pts.adrblk":[ "lidgrp.adv.pts.adrblk": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 135,message:"长度不能超过135"} { max: 135, message: "长度不能超过135" }
], ],
"lidgrp.adv.dbfadrblkcn":[ "lidgrp.adv.dbfadrblkcn": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.rec.shpdat":[ "lidgrp.rec.shpdat": [
{type: "string", required: false, message: "输入正确的日期"} { type: "string", required: false, message: "输入正确的日期" }
], ],
"lidgrp.adv.adrelc":[ "lidgrp.adv.adrelc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.rec.expdat":[ "lidgrp.rec.expdat": [
{type: "string", required: false, message: "输入正确的日期"} { type: "string", required: false, message: "输入正确的日期" }
], ],
"lidgrp.rec.expplc":[ "lidgrp.rec.expplc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 29,message:"长度不能超过29"} { max: 29, message: "长度不能超过29" }
], ],
"lidgrp.ben.pts.ref":[ "lidgrp.ben.pts.ref": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"litp.benp.ptsget.sdamod.dadsnd":[ "litp.benp.ptsget.sdamod.dadsnd": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"lidgrp.ben.pts.extkey":[ "lidgrp.ben.pts.extkey": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"litp.benp.ptsget.sdamod.seainf":[ "litp.benp.ptsget.sdamod.seainf": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 3,message:"长度不能超过3"} { max: 3, message: "长度不能超过3" }
], ],
"lidgrp.ben.namelc":[ "lidgrp.ben.namelc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.ben.pts.adrblk":[ "lidgrp.ben.pts.adrblk": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 315,message:"长度不能超过315"} { max: 315, message: "长度不能超过315" }
], ],
"lidgrp.ben.dbfadrblkcn":[ "lidgrp.ben.dbfadrblkcn": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.ben.adrelc":[ "lidgrp.ben.adrelc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.rec.apprultxt":[ "lidgrp.rec.apprultxt": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.rec.oppbnk":[ "lidgrp.rec.oppbnk": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 12,message:"长度不能超过12"} { max: 12, message: "长度不能超过12" }
], ],
"lidgrp.rec.rptref":[ "lidgrp.rec.rptref": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 25,message:"长度不能超过25"} { max: 25, message: "长度不能超过25" }
], ],
"lidgrp.rec.regref":[ "lidgrp.rec.regref": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"trnmod.swiadd.nartxt":[ "trnmod.swiadd.nartxt": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 1750,message:"长度不能超过1750"} { max: 1750, message: "长度不能超过1750" }
], ],
"oldlidgrp.blk.narhis":[ "oldlidgrp.blk.narhis": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 49950,message:"长度不能超过49950"} { max: 49950, message: "长度不能超过49950" }
], ],
...@@ -455,298 +455,298 @@ export default { ...@@ -455,298 +455,298 @@ export default {
"lidgrp.blk.preper":[ "lidgrp.blk.preper": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
// "lidgrp.rec.prepers18":[ // "lidgrp.rec.prepers18":[
// {type: "string", required: false, message: "必输项"}, // {type: "string", required: false, message: "必输项"},
// {max: 3,message:"长度不能超过3"} // {max: 3,message:"长度不能超过3"}
// ], // ],
"litp.avbp.ptsget.sdamod.dadsnd":[ "litp.avbp.ptsget.sdamod.dadsnd": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"lidgrp.avb.pts.extkey":[ "lidgrp.avb.pts.extkey": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"litp.avbp.ptsget.sdamod.seainf":[ "litp.avbp.ptsget.sdamod.seainf": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 3,message:"长度不能超过3"} { max: 3, message: "长度不能超过3" }
], ],
"lidgrp.rec.prepertxts18":[ "lidgrp.rec.prepertxts18": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.avb.namelc":[ "lidgrp.avb.namelc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.avb.pts.adrblk":[ "lidgrp.avb.pts.adrblk": [
{type: "string", required: true, message: "必输项"}, { type: "string", required: true, message: "必输项" },
{max: 315,message:"长度不能超过351"} { max: 315, message: "长度不能超过351" }
], ],
"lidgrp.avb.dbfadrblkcn":[ "lidgrp.avb.dbfadrblkcn": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.blk.avbwthtxt":[ "lidgrp.blk.avbwthtxt": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.avb.adrelc":[ "lidgrp.avb.adrelc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.blk.feetxt":[ "lidgrp.blk.feetxt": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 315,message:"长度不能超过315"} { max: 315, message: "长度不能超过315" }
], ],
"lidgrp.blk.defdet":[ "lidgrp.blk.defdet": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.blk.dftat":[ "lidgrp.blk.dftat": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"litp.drwp.ptsget.sdamod.dadsnd":[ "litp.drwp.ptsget.sdamod.dadsnd": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"lidgrp.drw.pts.extkey":[ "lidgrp.drw.pts.extkey": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"litp.drwp.ptsget.sdamod.seainf":[ "litp.drwp.ptsget.sdamod.seainf": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 3,message:"长度不能超过3"} { max: 3, message: "长度不能超过3" }
], ],
"lidgrp.drw.namelc":[ "lidgrp.drw.namelc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.drw.pts.adrblk":[ "lidgrp.drw.pts.adrblk": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 315,message:"长度不能超过315"} { max: 315, message: "长度不能超过315" }
], ],
"lidgrp.drw.dbfadrblkcn":[ "lidgrp.drw.dbfadrblkcn": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.blk.mixdet":[ "lidgrp.blk.mixdet": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.drw.adrelc":[ "lidgrp.drw.adrelc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.rec.shpfro":[ "lidgrp.rec.shpfro": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 65,message:"长度不能超过65"} { max: 65, message: "长度不能超过65" }
], ],
// "lidgrp.rec.tenmaxday":[ // "lidgrp.rec.tenmaxday":[
// {type: "string", required: false, message: "必输项"}, // {type: "string", required: false, message: "必输项"},
// {max: 3,message:"长度不能超过3"} // {max: 3,message:"长度不能超过3"}
// ], // ],
"lidgrp.rec.porloa":[ "lidgrp.rec.porloa": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 65,message:"长度不能超过65"} { max: 65, message: "长度不能超过65" }
], ],
"lidgrp.rec.pordis":[ "lidgrp.rec.pordis": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 65,message:"长度不能超过65"} { max: 65, message: "长度不能超过65" }
], ],
"lidgrp.rec.shpto":[ "lidgrp.rec.shpto": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 65,message:"长度不能超过65"} { max: 65, message: "长度不能超过65" }
], ],
"lidgrp.blk.shpper":[ "lidgrp.blk.shpper": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 65,message:"长度不能超过65"} { max: 65, message: "长度不能超过65" }
], ],
"lidgrp.ini.pts.ref":[ "lidgrp.ini.pts.ref": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"lidgrp.a2b.pts.ref":[ "lidgrp.a2b.pts.ref": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"litp.inip.ptsget.sdamod.dadsnd":[ "litp.inip.ptsget.sdamod.dadsnd": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"litp.a2bp.ptsget.sdamod.dadsnd":[ "litp.a2bp.ptsget.sdamod.dadsnd": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"lidgrp.ini.pts.extkey":[ "lidgrp.ini.pts.extkey": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"litp.inip.ptsget.sdamod.seainf":[ "litp.inip.ptsget.sdamod.seainf": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 3,message:"长度不能超过3"} { max: 3, message: "长度不能超过3" }
], ],
"lidgrp.a2b.pts.extkey":[ "lidgrp.a2b.pts.extkey": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"litp.a2bp.ptsget.sdamod.seainf":[ "litp.a2bp.ptsget.sdamod.seainf": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 3,message:"长度不能超过3"} { max: 3, message: "长度不能超过3" }
], ],
"lidgrp.ini.namelc":[ "lidgrp.ini.namelc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.a2b.namelc":[ "lidgrp.a2b.namelc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.ini.pts.adrblk":[ "lidgrp.ini.pts.adrblk": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 315,message:"长度不能超过315"} { max: 315, message: "长度不能超过315" }
], ],
"lidgrp.ini.dbfadrblkcn":[ "lidgrp.ini.dbfadrblkcn": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.a2b.pts.adrblk":[ "lidgrp.a2b.pts.adrblk": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 315,message:"长度不能超过315"} { max: 315, message: "长度不能超过315" }
], ],
"lidgrp.a2b.dbfadrblkcn":[ "lidgrp.a2b.dbfadrblkcn": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.ini.adrelc":[ "lidgrp.ini.adrelc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.a2b.adrelc":[ "lidgrp.a2b.adrelc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.rmb.pts.ref":[ "lidgrp.rmb.pts.ref": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"lidgrp.avb.pts.ref":[ "lidgrp.avb.pts.ref": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"litp.rmbp.ptsget.sdamod.dadsnd":[ "litp.rmbp.ptsget.sdamod.dadsnd": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"lidgrp.rmb.pts.extkey":[ "lidgrp.rmb.pts.extkey": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"litp.rmbp.ptsget.sdamod.seainf":[ "litp.rmbp.ptsget.sdamod.seainf": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 3,message:"长度不能超过3"} { max: 3, message: "长度不能超过3" }
], ],
"lidgrp.rmb.pts.nam":[ "lidgrp.rmb.pts.nam": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 40,message:"长度不能超过40"} { max: 40, message: "长度不能超过40" }
], ],
"lidgrp.con.pts.ref":[ "lidgrp.con.pts.ref": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"litp.conp.ptsget.sdamod.dadsnd":[ "litp.conp.ptsget.sdamod.dadsnd": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"lidgrp.con.pts.extkey":[ "lidgrp.con.pts.extkey": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 16,message:"长度不能超过16"} { max: 16, message: "长度不能超过16" }
], ],
"litp.conp.ptsget.sdamod.seainf":[ "litp.conp.ptsget.sdamod.seainf": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 3,message:"长度不能超过3"} { max: 3, message: "长度不能超过3" }
], ],
"lidgrp.con.namelc":[ "lidgrp.con.namelc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.con.pts.adrblk":[ "lidgrp.con.pts.adrblk": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 315,message:"长度不能超过315"} { max: 315, message: "长度不能超过315" }
], ],
"lidgrp.con.dbfadrblkcn":[ "lidgrp.con.dbfadrblkcn": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.con.adrelc":[ "lidgrp.con.adrelc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 35,message:"长度不能超过35"} { max: 35, message: "长度不能超过35" }
], ],
"lidgrp.blk.lcrgodame":[ "lidgrp.blk.lcrgodame": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 50,message:"长度不能超过50"} { max: 50, message: "长度不能超过50" }
], ],
"lidgrp.blk.lcrgod":[ "lidgrp.blk.lcrgod": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 52000,message:"长度不能超过52000"} { max: 52000, message: "长度不能超过52000" }
], ],
"litamep.lcrgodamep.usrblk":[ "litamep.lcrgodamep.usrblk": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 65,message:"长度不能超过65"} { max: 65, message: "长度不能超过65" }
], ],
"lidgrp.blk.lcrdocame":[ "lidgrp.blk.lcrdocame": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 50,message:"长度不能超过50"} { max: 50, message: "长度不能超过50" }
], ],
"lidgrp.blk.lcrdoc":[ "lidgrp.blk.lcrdoc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 52000,message:"长度不能超过52000"} { max: 52000, message: "长度不能超过52000" }
], ],
"litamep.lcrdocamep.usrblk":[ "litamep.lcrdocamep.usrblk": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 65,message:"长度不能超过65"} { max: 65, message: "长度不能超过65" }
], ],
"lidgrp.blk.spcben":[ "lidgrp.blk.spcben": [
{type: "string", required: false, message: "非必输项"}, { type: "string", required: false, message: "非必输项" },
{max: 52000,message:"长度不能超过52000"} { max: 52000, message: "长度不能超过52000" }
], ],
"lidgrp.blk.spcrcbame":[ "lidgrp.blk.spcrcbame": [
{type: "string", required: false, message: "非必输项"}, { type: "string", required: false, message: "非必输项" },
{max: 4950,message:"长度不能超过4950"} { max: 4950, message: "长度不能超过4950" }
], ],
"litamep.spcrcbamep.usrblk":[ "litamep.spcrcbamep.usrblk": [
{type: "string", required: false, message: "非必输项"}, { type: "string", required: false, message: "非必输项" },
{max: 52000,message:"长度不能超过52000"} { max: 52000, message: "长度不能超过52000" }
], ],
"lidgrp.blk.spcrcb":[ "lidgrp.blk.spcrcb": [
{type: "string", required: false, message: "非必输项"}, { type: "string", required: false, message: "非必输项" },
{max: 52000,message:"长度不能超过52000"} { max: 52000, message: "长度不能超过52000" }
], ],
...@@ -754,124 +754,124 @@ export default { ...@@ -754,124 +754,124 @@ export default {
"lidgrp.blk.adlcndame":[ "lidgrp.blk.adlcndame": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 50,message:"长度不能超过50"} { max: 50, message: "长度不能超过50" }
], ],
"lidgrp.blk.adlcnd":[ "lidgrp.blk.adlcnd": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 65,message:"长度不能超过65"} { max: 65, message: "长度不能超过65" }
], ],
"litamep.adlcndamep.usrblk":[ "litamep.adlcndamep.usrblk": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 65,message:"长度不能超过65"} { max: 65, message: "长度不能超过65" }
], ],
"lidgrp.blk.insbnk":[ "lidgrp.blk.insbnk": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 8000,message:"长度不能超过8000"} { max: 8000, message: "长度不能超过8000" }
], ],
"lidgrp.blk.insbnkame":[ "lidgrp.blk.insbnkame": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 50,message:"长度不能超过50"} { max: 50, message: "长度不能超过50" }
], ],
"trnmod.swiadd.insbnk":[ "trnmod.swiadd.insbnk": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 50,message:"长度不能超过50"} { max: 50, message: "长度不能超过50" }
], ],
"lidgrp.blk.lcrgod":[ "lidgrp.blk.lcrgod": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 65,message:"长度不能超过65"} { max: 65, message: "长度不能超过65" }
], ],
"lidgrp.blk.lcrdoc":[ "lidgrp.blk.lcrdoc": [
{type: "string", required: false, message: "必输项"}, { type: "string", required: false, message: "必输项" },
{max: 65,message:"长度不能超过65"} { max: 65, message: "长度不能超过65" }
], ],
"lidgrp.apl.namelc" :null, "lidgrp.apl.namelc": null,
"lidgrp.rec.prepers18" :null, "lidgrp.rec.prepers18": null,
"lidgrp.rec.lcrtyp" :null, "lidgrp.rec.lcrtyp": null,
"trnmod.swiadd.newamt" :null, "trnmod.swiadd.newamt": null,
"lidgrp.rec.apprul" :null, "lidgrp.rec.apprul": null,
"lidgrp.rec.apprultxt" :null, "lidgrp.rec.apprultxt": null,
"lidgrp.blk.lcrgod" :null, "lidgrp.blk.lcrgod": null,
"lidgrp.adv.pts.adrblk" :null, "lidgrp.adv.pts.adrblk": null,
"lidgrp.blk.adlcnd" :null, "lidgrp.blk.adlcnd": null,
"lidgrp.cbs.opn1.amt" :null, "lidgrp.cbs.opn1.amt": null,
"lidgrp.ini.namelc" :null, "lidgrp.ini.namelc": null,
"lidgrp.rec.shppars18" :null, "lidgrp.rec.shppars18": null,
"lidgrp.rec.stacty" :null, "lidgrp.rec.stacty": null,
"lidgrp.ini.pts.adrblk" :null, "lidgrp.ini.pts.adrblk": null,
"litamep.lcrdocamep.usrblk" :null, "litamep.lcrdocamep.usrblk": null,
"lidgrp.blk.lcrdoc" :null, "lidgrp.blk.lcrdoc": null,
"litamep.lcrgodamep.usrblk" :null, "litamep.lcrgodamep.usrblk": null,
"trnmod.swiadd.trnfeetxt" :null, "trnmod.swiadd.trnfeetxt": null,
"lidgrp.a2b.namelc" :null, "lidgrp.a2b.namelc": null,
"lidgrp.apl.adrelc" :null, "lidgrp.apl.adrelc": null,
"litp.usr.extkey" :null, "litp.usr.extkey": null,
"litamep.adlcndamep.usrblk" :null, "litamep.adlcndamep.usrblk": null,
"trnmod.swiadd.amenbr" :null, "trnmod.swiadd.amenbr": null,
"lidgrp.avb.pts.adrblk" :null, "lidgrp.avb.pts.adrblk": null,
"lidgrp.rec.avbwth" :null, "lidgrp.rec.avbwth": null,
"lidgrp.adv.pts.nam" :null, "lidgrp.adv.pts.nam": null,
"trnmod.swiadd.addamt" :null, "trnmod.swiadd.addamt": null,
"lidgrp.rec.opndat" :null, "lidgrp.rec.opndat": null,
"lidgrp.a2b.adrelc" :null, "lidgrp.a2b.adrelc": null,
"lidgrp.avb.namelc" :null, "lidgrp.avb.namelc": null,
"lidgrp.blk.feetxt" :null, "lidgrp.blk.feetxt": null,
"trnmod.swiadd.newnomtop" :null, "trnmod.swiadd.newnomtop": null,
"trnmod.swiadd.newnomton" :null, "trnmod.swiadd.newnomton": null,
"lidgrp.blk.preper" :null, "lidgrp.blk.preper": null,
"lidgrp.ben.pts.nam" :null, "lidgrp.ben.pts.nam": null,
"oldlidgrp.rec.expdat" :null, "oldlidgrp.rec.expdat": null,
"lidgrp.ben.adrelc" :null, "lidgrp.ben.adrelc": null,
"trnmod.swiadd.insbnk" :null, "trnmod.swiadd.insbnk": null,
"lidgrp.rec.shptrss18" :null, "lidgrp.rec.shptrss18": null,
"lidgrp.rec.cnfdet" :null, "lidgrp.rec.cnfdet": null,
"lidgrp.avb.adrelc" :null, "lidgrp.avb.adrelc": null,
"lidgrp.a2b.pts.adrblk" :null, "lidgrp.a2b.pts.adrblk": null,
"lidgrp.adv.namelc" :null, "lidgrp.adv.namelc": null,
"lidgrp.blk.mixdet" :null, "lidgrp.blk.mixdet": null,
"lidgrp.apl.pts.nam" :null, "lidgrp.apl.pts.nam": null,
"lidgrp.ini.pts.extkey" :null, "lidgrp.ini.pts.extkey": null,
"lidgrp.drw.adrelc" :null, "lidgrp.drw.adrelc": null,
"trnmod.swiadd.newshpdat" :null, "trnmod.swiadd.newshpdat": null,
"lidgrp.rec.expplc" :null, "lidgrp.rec.expplc": null,
"trnmod.swiadd.ameamt" :null, "trnmod.swiadd.ameamt": null,
"lidgrp.rmb.pts.extkey" :null, "lidgrp.rmb.pts.extkey": null,
"trnmod.swiadd.newexpdat" :null, "trnmod.swiadd.newexpdat": null,
"lidgrp.adv.pts.extkey" :null, "lidgrp.adv.pts.extkey": null,
"trnmod.swiadd.nartxt" :null, "trnmod.swiadd.nartxt": null,
"lidgrp.adv.adrelc" :null, "lidgrp.adv.adrelc": null,
"lidgrp.ben.pts.extkey" :null, "lidgrp.ben.pts.extkey": null,
"lidgrp.avb.pts.extkey" :null, "lidgrp.avb.pts.extkey": null,
"lidgrp.a2b.pts.extkey" :null, "lidgrp.a2b.pts.extkey": null,
"lidgrp.blk.defdet" :null, "lidgrp.blk.defdet": null,
"lidgrp.blk.insbnk" :null, "lidgrp.blk.insbnk": null,
"lidgrp.con.pts.extkey" :null, "lidgrp.con.pts.extkey": null,
"lidgrp.apl.pts.adrblk" :null, "lidgrp.apl.pts.adrblk": null,
"trnmod.swiadd.prepers18" :null, "trnmod.swiadd.prepers18": null,
"lidgrp.ini.adrelc" :null, "lidgrp.ini.adrelc": null,
"lidgrp.ben.pts.adrblk" :null, "lidgrp.ben.pts.adrblk": null,
"lidgrp.rmb.pts.nam" :null, "lidgrp.rmb.pts.nam": null,
"lidgrp.drw.pts.extkey" :null, "lidgrp.drw.pts.extkey": null,
"lidgrp.con.adrelc" :null, "lidgrp.con.adrelc": null,
"ameflg" :null, "ameflg": null,
"lidgrp.con.pts.adrblk" :null, "lidgrp.con.pts.adrblk": null,
"lidgrp.blk.dftat" :null, "lidgrp.blk.dftat": null,
"lidgrp.apl.pts.extkey" :null, "lidgrp.apl.pts.extkey": null,
"lidgrp.rec.tenmaxday" :null, "lidgrp.rec.tenmaxday": null,
"trnmod.swiadd.purpos" :null, "trnmod.swiadd.purpos": null,
"lidgrp.ben.namelc" :null, "lidgrp.ben.namelc": null,
"lidgrp.drw.pts.adrblk" :null, "lidgrp.drw.pts.adrblk": null,
"lidgrp.drw.namelc" :null, "lidgrp.drw.namelc": null,
"lidgrp.con.namelc" :null, "lidgrp.con.namelc": null,
} }
\ No newline at end of file
import Pts from '~/components/business/commonModel/Pts'; import Pts from '~/components/business/commonModel/Pts';
import Pub from '~/components/business/commonModel/index.js'; import Pub from '~/components/business/commonModel/index.js';
export default class Litdla{ export default class Litdla {
constructor () { constructor() {
this.data = { this.data = {
lidgrp:{ lidgrp: {
rec:{ rec: {
inr:"", inr: "",
ownref:"", // Reference .lidgrp.rec.ownref ownref: "", // Reference .lidgrp.rec.ownref
nam:"", // Name .lidgrp.rec.nam nam: "", // Name .lidgrp.rec.nam
avbby:"", // Available by .lidgrp.rec.avbby avbby: "", // Available by .lidgrp.rec.avbby
opndat:"", // L/C Issued on .lidgrp.rec.opndat opndat: "", // L/C Issued on .lidgrp.rec.opndat
shpdat:"", // Latest Shipment Date .lidgrp.rec.shpdat shpdat: "", // Latest Shipment Date .lidgrp.rec.shpdat
expdat:"", // L/C Expiring on .lidgrp.rec.expdat expdat: "", // L/C Expiring on .lidgrp.rec.expdat
expplc:"", // in (Place)/ counters of .lidgrp.rec.expplc expplc: "", // in (Place)/ counters of .lidgrp.rec.expplc
lcrtyp:"", // Form of L/C .lidgrp.rec.lcrtyp lcrtyp: "", // Form of L/C .lidgrp.rec.lcrtyp
nomtop:"", // Amount Tolerance +/- .lidgrp.rec.nomtop nomtop: "", // Amount Tolerance +/- .lidgrp.rec.nomtop
nomton:"", // Amount Tolerance - Negative .lidgrp.rec.nomton nomton: "", // Amount Tolerance - Negative .lidgrp.rec.nomton
nomspc:"", // Amount Specification .lidgrp.rec.nomspc nomspc: "", // Amount Specification .lidgrp.rec.nomspc
preadvdt:"", // Date Pre-advised .lidgrp.rec.preadvdt preadvdt: "", // Date Pre-advised .lidgrp.rec.preadvdt
shppar:"", // Partial Shipment .lidgrp.rec.shppar shppar: "", // Partial Shipment .lidgrp.rec.shppar
shptrs:"", // Transhipment .lidgrp.rec.shptrs shptrs: "", // Transhipment .lidgrp.rec.shptrs
apprul:"", // Applicable Rules .lidgrp.rec.apprul apprul: "", // Applicable Rules .lidgrp.rec.apprul
apprultxt:"", // Other Applicable Rules .lidgrp.rec.apprultxt apprultxt: "", // Other Applicable Rules .lidgrp.rec.apprultxt
cnfdet:"", // Confirm. Instructions .lidgrp.rec.cnfdet cnfdet: "", // Confirm. Instructions .lidgrp.rec.cnfdet
rmbflg:"", // Reimbursement Information .lidgrp.rec.rmbflg rmbflg: "", // Reimbursement Information .lidgrp.rec.rmbflg
revflg:"", // Revolving Flag .lidgrp.rec.revflg revflg: "", // Revolving Flag .lidgrp.rec.revflg
resflg:"", // Reserved Contract .lidgrp.rec.resflg resflg: "", // Reserved Contract .lidgrp.rec.resflg
shppars18:"", // Partial Shipment .lidgrp.rec.shppars18 shppars18: "", // Partial Shipment .lidgrp.rec.shppars18
shptrss18:"", // Transhipment .lidgrp.rec.shptrss18 shptrss18: "", // Transhipment .lidgrp.rec.shptrss18
guaflg:"", // Mortgage Flag .lidgrp.rec.guaflg guaflg: "", // Mortgage Flag .lidgrp.rec.guaflg
regref:"", // Register Ref. .lidgrp.rec.regref regref: "", // Register Ref. .lidgrp.rec.regref
rptref:"", // 合同号 .lidgrp.rec.rptref rptref: "", // 合同号 .lidgrp.rec.rptref
oppbnk:"", // 对手行代码 .lidgrp.rec.oppbnk oppbnk: "", // 对手行代码 .lidgrp.rec.oppbnk
dkflg:"", // 是否代开信用证 .lidgrp.rec.dkflg dkflg: "", // 是否代开信用证 .lidgrp.rec.dkflg
avbwth:"", // Available with .lidgrp.rec.avbwth avbwth: "", // Available with .lidgrp.rec.avbwth
shpfro:"", // Dispatch from .lidgrp.rec.shpfro shpfro: "", // Dispatch from .lidgrp.rec.shpfro
porloa:"", // Air-/Port of Departure .lidgrp.rec.porloa porloa: "", // Air-/Port of Departure .lidgrp.rec.porloa
pordis:"", // Air-/Port of Destination .lidgrp.rec.pordis pordis: "", // Air-/Port of Destination .lidgrp.rec.pordis
shpto:"", // Final Destination .lidgrp.rec.shpto shpto: "", // Final Destination .lidgrp.rec.shpto
chato:"", // Drafts at .lidgrp.rec.chato chato: "", // Drafts at .lidgrp.rec.chato
stacty:"", // Country Code Risk Country .lidgrp.rec.stacty stacty: "", // Country Code Risk Country .lidgrp.rec.stacty
tenmaxday:"", // Maximum tenor in days .lidgrp.rec.tenmaxday tenmaxday: "", // Maximum tenor in days .lidgrp.rec.tenmaxday
prepers18:"", // Days of presentation period .lidgrp.rec.prepers18 prepers18: "", // Days of presentation period .lidgrp.rec.prepers18
prepertxts18:"", // Presentation period text .lidgrp.rec.prepertxts18 prepertxts18: "", // Presentation period text .lidgrp.rec.prepertxts18
redclsflg:"", // Red/Green Clause .lidgrp.rec.redclsflg redclsflg: "", // Red/Green Clause .lidgrp.rec.redclsflg
spcbenflg:"", // Special payment conditions for beneficiary exists .lidgrp.rec.spcbenflg spcbenflg: "", // Special payment conditions for beneficiary exists .lidgrp.rec.spcbenflg
spcrcbflg:"", // Special Payment Conditions for specified Bank only .lidgrp.rec.spcrcbflg spcrcbflg: "", // Special Payment Conditions for specified Bank only .lidgrp.rec.spcrcbflg
stagod:"", // Goods Code .lidgrp.rec.stagod stagod: "", // Goods Code .lidgrp.rec.stagod
branchinr:"", branchinr: "",
decflg:'', //减额修改标志 decflg: '', //减额修改标志
}, },
cbs:{ cbs: {
nom1:{ nom1: {
cur:"", // Nominal Amount .lidgrp.cbs.nom1.cur cur: "", // Nominal Amount .lidgrp.cbs.nom1.cur
amt:"", // Nominal Amount .lidgrp.cbs.nom1.amt amt: "", // Nominal Amount .lidgrp.cbs.nom1.amt
}, },
opn1:{ opn1: {
cur:"", // 信用证余额 .lidgrp.cbs.opn1.cur cur: "", // 信用证余额 .lidgrp.cbs.opn1.cur
amt:"", // 信用证余额 .lidgrp.cbs.opn1.amt amt: "", // 信用证余额 .lidgrp.cbs.opn1.amt
}, },
opn2:{ opn2: {
cur:"", // 信用证余额 .lidgrp.cbs.opn2.cur cur: "", // 信用证余额 .lidgrp.cbs.opn2.cur
amt:"", // 信用证余额 .lidgrp.cbs.opn2.amt amt: "", // 信用证余额 .lidgrp.cbs.opn2.amt
}, },
max2:{ max2: {
cur:"", // Currency .lidgrp.cbs.max2.cur cur: "", // Currency .lidgrp.cbs.max2.cur
}, },
max:{ max: {
cur:"", // Maximum Amount .lidgrp.cbs.max.cur cur: "", // Maximum Amount .lidgrp.cbs.max.cur
amt:"", // Maximum Amount .lidgrp.cbs.max.amt amt: "", // Maximum Amount .lidgrp.cbs.max.amt
}, },
}, },
avbnam:"", // 指定银行 .lidgrp.avbnam avbnam: "", // 指定银行 .lidgrp.avbnam
apl:{ apl: {
pts:new Pts().data, pts: new Pts().data,
namelc:"", // 名称 .lidgrp.apl.namelc namelc: "", // 名称 .lidgrp.apl.namelc
adrelc:"", // 地址 .lidgrp.apl.adrelc adrelc: "", // 地址 .lidgrp.apl.adrelc
dbfadrblkcn:"", // Chinese address .lidgrp.apl.dbfadrblkcn dbfadrblkcn: "", // Chinese address .lidgrp.apl.dbfadrblkcn
}, },
ben:{ ben: {
pts:new Pts().data, pts: new Pts().data,
namelc:"", // 名称 .lidgrp.ben.namelc namelc: "", // 名称 .lidgrp.ben.namelc
adrelc:"", // 地址 .lidgrp.ben.adrelc adrelc: "", // 地址 .lidgrp.ben.adrelc
dbfadrblkcn:"", // Chinese address .lidgrp.ben.dbfadrblkcn dbfadrblkcn: "", // Chinese address .lidgrp.ben.dbfadrblkcn
}, },
adv:{ adv: {
pts:new Pts().data, pts: new Pts().data,
namelc:"", // 名称 .lidgrp.adv.namelc namelc: "", // 名称 .lidgrp.adv.namelc
adrelc:"", // 地址 .lidgrp.adv.adrelc adrelc: "", // 地址 .lidgrp.adv.adrelc
dbfadrblkcn:"", // Chinese address .lidgrp.adv.dbfadrblkcn dbfadrblkcn: "", // Chinese address .lidgrp.adv.dbfadrblkcn
}, },
avb:{ avb: {
pts:new Pts().data, pts: new Pts().data,
namelc:"", // 名称 .lidgrp.avb.namelc namelc: "", // 名称 .lidgrp.avb.namelc
adrelc:"", // 地址 .lidgrp.avb.adrelc adrelc: "", // 地址 .lidgrp.avb.adrelc
dbfadrblkcn:"", // Chinese address .lidgrp.avb.dbfadrblkcn dbfadrblkcn: "", // Chinese address .lidgrp.avb.dbfadrblkcn
}, },
blk:{ blk: {
spcbename:"", spcbename: "",
spcrcbame:"", spcrcbame: "",
spcrcb:"", spcrcb: "",
spcben:"", spcben: "",
avbwthtxt:"", // Available in .lidgrp.blk.avbwthtxt avbwthtxt: "", // Available in .lidgrp.blk.avbwthtxt
defdet:"", // Deferred Payment Details .lidgrp.blk.defdet defdet: "", // Deferred Payment Details .lidgrp.blk.defdet
dftat:"", // Drafts at .lidgrp.blk.dftat dftat: "", // Drafts at .lidgrp.blk.dftat
shpper:"", // Shipment Period .lidgrp.blk.shpper shpper: "", // Shipment Period .lidgrp.blk.shpper
preper:"", // Presentation Period .lidgrp.blk.preper preper: "", // Presentation Period .lidgrp.blk.preper
preperflg:"", // Presentation Period modified .lidgrp.blk.preperflg preperflg: "", // Presentation Period modified .lidgrp.blk.preperflg
feetxt:"", // Additional Details to Code for Charges .lidgrp.blk.feetxt feetxt: "", // Additional Details to Code for Charges .lidgrp.blk.feetxt
mixdet:"", // Mixed Payment Details .lidgrp.blk.mixdet mixdet: "", // Mixed Payment Details .lidgrp.blk.mixdet
lcrgod:"", // Description. of Goods .lidgrp.blk.lcrgod lcrgod: "", // Description. of Goods .lidgrp.blk.lcrgod
lcrgodame:"", // Description of Goods Amendment History .lidgrp.blk.lcrgodame lcrgodame: "", // Description of Goods Amendment History .lidgrp.blk.lcrgodame
lcrdoc:"", // Documents Required .lidgrp.blk.lcrdoc lcrdoc: "", // Documents Required .lidgrp.blk.lcrdoc
lcrdocame:"", // Documents Required Amendment History .lidgrp.blk.lcrdocame lcrdocame: "", // Documents Required Amendment History .lidgrp.blk.lcrdocame
adlcnd:"", // Additional Conditions .lidgrp.blk.adlcnd adlcnd: "", // Additional Conditions .lidgrp.blk.adlcnd
adlcndame:"", // Additional Conditions Amendment History .lidgrp.blk.adlcndame adlcndame: "", // Additional Conditions Amendment History .lidgrp.blk.adlcndame
insbnk:"", // Instructions to Paying/Accepting/Negotiating Bank .lidgrp.blk.insbnk insbnk: "", // Instructions to Paying/Accepting/Negotiating Bank .lidgrp.blk.insbnk
insbnkame:"", // Instructions to P/A/N Amendment History .lidgrp.blk.insbnkame insbnkame: "", // Instructions to P/A/N Amendment History .lidgrp.blk.insbnkame
}, },
drw:{ drw: {
pts:new Pts().data, pts: new Pts().data,
namelc:"", // 名称 .lidgrp.drw.namelc namelc: "", // 名称 .lidgrp.drw.namelc
adrelc:"", // 地址 .lidgrp.drw.adrelc adrelc: "", // 地址 .lidgrp.drw.adrelc
dbfadrblkcn:"", // Chinese address .lidgrp.drw.dbfadrblkcn dbfadrblkcn: "", // Chinese address .lidgrp.drw.dbfadrblkcn
}, },
ini:{ ini: {
pts:new Pts().data, pts: new Pts().data,
namelc:"", // 名称 .lidgrp.ini.namelc namelc: "", // 名称 .lidgrp.ini.namelc
adrelc:"", // 地址 .lidgrp.ini.adrelc adrelc: "", // 地址 .lidgrp.ini.adrelc
dbfadrblkcn:"", // Chinese address .lidgrp.ini.dbfadrblkcn dbfadrblkcn: "", // Chinese address .lidgrp.ini.dbfadrblkcn
}, },
rmb:{ rmb: {
pts:new Pts().data, pts: new Pts().data,
}, },
a2b:{ a2b: {
pts:new Pts().data, pts: new Pts().data,
namelc:"", // 名称 .lidgrp.a2b.namelc namelc: "", // 名称 .lidgrp.a2b.namelc
adrelc:"", // 地址 .lidgrp.a2b.adrelc adrelc: "", // 地址 .lidgrp.a2b.adrelc
dbfadrblkcn:"", // Chinese address .lidgrp.a2b.dbfadrblkcn dbfadrblkcn: "", // Chinese address .lidgrp.a2b.dbfadrblkcn
}, },
con:{ con: {
pts:new Pts().data, pts: new Pts().data,
namelc:"", // 名称 .lidgrp.con.namelc namelc: "", // 名称 .lidgrp.con.namelc
adrelc:"", // 地址 .lidgrp.con.adrelc adrelc: "", // 地址 .lidgrp.con.adrelc
dbfadrblkcn:"", // Chinese address .lidgrp.con.dbfadrblkcn dbfadrblkcn: "", // Chinese address .lidgrp.con.dbfadrblkcn
}, },
},
decstm: "", // Decrease limits stream .decstm
amenbr: "", // Amendment No. .amenbr
amedat: "", // Amount Amend Date .amedat
amecur: "", // Amount Amend Cur .amecur
ameflg: "", // 是否接受此笔减额修改 .ameflg
reduceamt: "", // 修改金额 .reduceamt
litamep: {
spcbenamep: {
usrblk: "",
modflg: "",
modmanflg: "",
},
spcrcbamep: {
usrblk: "",
modflg: "",
modmanflg: "",
},
ramrollab: "", // Label for RAMROL .litamep.ramrollab
recget: {
sdamod: {
seainf: "", // 参考号 .litamep.recget.sdamod.seainf
dadsnd: "", // Drag Drop Sender .litamep.recget.sdamod.dadsnd
},
},
engcur: "", // 修改总金额 .litamep.engcur
engamt: "", // 修改总金额 .litamep.engamt
maxcur: "", // Currency of Maximum Amount .litamep.maxcur
maxamt: "", // New Maximum Amount .litamep.maxamt
cre707flg: "", // Create Amendment Message .litamep.cre707flg
ramrol: "", // Request of Amendment send to .litamep.ramrol
amenbr: "", // 实际修改次数 .litamep.amenbr
lcrgodamep: {
modflg: "", // Modify Text to Replace .litamep.lcrgodamep.modflg
modmanflg: "", // Modify field for manual update .litamep.lcrgodamep.modmanflg
usrblk: "", // Block to enter additional info for Add/Delete .litamep.lcrgodamep.usrblk
},
lcrdocamep: {
usrblk: "", // Block to enter additional info for Add/Delete .litamep.lcrdocamep.usrblk
modflg: "", // Modify Text to Replace .litamep.lcrdocamep.modflg
modmanflg: "", // Modify field for manual update .litamep.lcrdocamep.modmanflg
},
adlcndamep: {
usrblk: "", // Block to enter additional info for Add/Delete .litamep.adlcndamep.usrblk
modflg: "", // Modify Text to Replace .litamep.adlcndamep.modflg
modmanflg: "", // Modify field for manual update .litamep.adlcndamep.modmanflg
},
},
oldlidgrp: {
cbs: {
nom1: {
amt: "", // 信用证金额 .oldlidgrp.cbs.nom1.amt
},
max: {
cur: "", // Currency .oldlidgrp.cbs.max.cur
amt: "", // Balance .oldlidgrp.cbs.max.amt
},
},
rec: {
nomtop: "", // Amount Tolerance - Positive .oldlidgrp.rec.nomtop
nomton: "", // Amount Tolerance - Negative .oldlidgrp.rec.nomton
expdat: "", // 到期日 .oldlidgrp.rec.expdat
shpdat: "", // 装运日 .oldlidgrp.rec.shpdat
prepertxts18: "", // Presentation period text .oldlidgrp.rec.prepertxts18
prepers18: "", // Presentation Period .oldlidgrp.rec.prepers18
},
blk: {
preper: "", // Presentation Period .oldlidgrp.blk.preper
narhis: "", // Historic Overview of Narratives .oldlidgrp.blk.narhis
},
},
litp: {
aamp: {
addamtcov: "",
aammod: {
addamtflg: "",
max2: {
cur: '',
amt: ''
} // Add. Amount .litp.aamp.aammod.addamtflg
},
},
recget: {
sdamod: {
seainf: "", // .litp.recget.sdamod.seainf
dadsnd: "", // Drag Drop Sender .litp.recget.sdamod.dadsnd
},
},
usr: {
extkey: "", // Responsible User .litp.usr.extkey
},
usrget: {
sdamod: {
seainf: "", // .litp.usrget.sdamod.seainf
},
},
aplp: {
ptsget: {
sdamod: {
seainf: "", // .litp.aplp.ptsget.sdamod.seainf
dadsnd: "", // Drag Drop Sender .litp.aplp.ptsget.sdamod.dadsnd
}, },
decstm:"", // Decrease limits stream .decstm },
amenbr:"", // Amendment No. .amenbr },
amedat:"", // Amount Amend Date .amedat advp: {
amecur:"", // Amount Amend Cur .amecur ptsget: {
ameflg:"", // 是否接受此笔减额修改 .ameflg sdamod: {
reduceamt:"", // 修改金额 .reduceamt seainf: "", // .litp.advp.ptsget.sdamod.seainf
litamep:{ dadsnd: "", // Drag Drop Sender .litp.advp.ptsget.sdamod.dadsnd
spcbenamep:{
usrblk:"",
modflg:"",
modmanflg:"",
},
spcrcbamep:{
usrblk:"",
modflg:"",
modmanflg:"",
},
ramrollab:"", // Label for RAMROL .litamep.ramrollab
recget:{
sdamod:{
seainf:"", // 参考号 .litamep.recget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .litamep.recget.sdamod.dadsnd
},
},
engcur:"", // 修改总金额 .litamep.engcur
engamt:"", // 修改总金额 .litamep.engamt
maxcur:"", // Currency of Maximum Amount .litamep.maxcur
maxamt:"", // New Maximum Amount .litamep.maxamt
cre707flg:"", // Create Amendment Message .litamep.cre707flg
ramrol:"", // Request of Amendment send to .litamep.ramrol
amenbr:"", // 实际修改次数 .litamep.amenbr
lcrgodamep:{
modflg:"", // Modify Text to Replace .litamep.lcrgodamep.modflg
modmanflg:"", // Modify field for manual update .litamep.lcrgodamep.modmanflg
usrblk:"", // Block to enter additional info for Add/Delete .litamep.lcrgodamep.usrblk
},
lcrdocamep:{
usrblk:"", // Block to enter additional info for Add/Delete .litamep.lcrdocamep.usrblk
modflg:"", // Modify Text to Replace .litamep.lcrdocamep.modflg
modmanflg:"", // Modify field for manual update .litamep.lcrdocamep.modmanflg
},
adlcndamep:{
usrblk:"", // Block to enter additional info for Add/Delete .litamep.adlcndamep.usrblk
modflg:"", // Modify Text to Replace .litamep.adlcndamep.modflg
modmanflg:"", // Modify field for manual update .litamep.adlcndamep.modmanflg
},
}, },
oldlidgrp:{ },
cbs:{ },
nom1:{ benp: {
amt:"", // 信用证金额 .oldlidgrp.cbs.nom1.amt ptsget: {
}, sdamod: {
max:{ seainf: "", // .litp.benp.ptsget.sdamod.seainf
cur:"", // Currency .oldlidgrp.cbs.max.cur dadsnd: "", // Drag Drop Sender .litp.benp.ptsget.sdamod.dadsnd
amt:"", // Balance .oldlidgrp.cbs.max.amt
},
},
rec:{
nomtop:"", // Amount Tolerance - Positive .oldlidgrp.rec.nomtop
nomton:"", // Amount Tolerance - Negative .oldlidgrp.rec.nomton
expdat:"", // 到期日 .oldlidgrp.rec.expdat
shpdat:"", // 装运日 .oldlidgrp.rec.shpdat
prepertxts18:"", // Presentation period text .oldlidgrp.rec.prepertxts18
prepers18:"", // Presentation Period .oldlidgrp.rec.prepers18
},
blk:{
preper:"", // Presentation Period .oldlidgrp.blk.preper
narhis:"", // Historic Overview of Narratives .oldlidgrp.blk.narhis
},
}, },
litp:{ },
aamp:{ },
addamtcov:"", oppbnkl: "", // 对手行代码 .litp.oppbnkl
aammod:{ avbp: {
addamtflg:"", ptsget: {
max2:{ sdamod: {
cur:'', seainf: "", // .litp.avbp.ptsget.sdamod.seainf
amt:'' dadsnd: "", // Drag Drop Sender .litp.avbp.ptsget.sdamod.dadsnd
} // Add. Amount .litp.aamp.aammod.addamtflg
},
},
recget:{
sdamod:{
seainf:"", // .litp.recget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .litp.recget.sdamod.dadsnd
},
},
usr:{
extkey:"", // Responsible User .litp.usr.extkey
},
usrget:{
sdamod:{
seainf:"", // .litp.usrget.sdamod.seainf
},
},
aplp:{
ptsget:{
sdamod:{
seainf:"", // .litp.aplp.ptsget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .litp.aplp.ptsget.sdamod.dadsnd
},
},
},
advp:{
ptsget:{
sdamod:{
seainf:"", // .litp.advp.ptsget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .litp.advp.ptsget.sdamod.dadsnd
},
},
},
benp:{
ptsget:{
sdamod:{
seainf:"", // .litp.benp.ptsget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .litp.benp.ptsget.sdamod.dadsnd
},
},
},
oppbnkl:"", // 对手行代码 .litp.oppbnkl
avbp:{
ptsget:{
sdamod:{
seainf:"", // .litp.avbp.ptsget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .litp.avbp.ptsget.sdamod.dadsnd
},
},
},
drwp:{
ptsget:{
sdamod:{
seainf:"", // .litp.drwp.ptsget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .litp.drwp.ptsget.sdamod.dadsnd
},
},
},
defdetlab:"", // Label DEFDET .litp.defdetlab
avblab:"", // Label Available with Bank .litp.avblab
inip:{
ptsget:{
sdamod:{
seainf:"", // .litp.inip.ptsget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .litp.inip.ptsget.sdamod.dadsnd
},
},
},
rmbp:{
ptsget:{
sdamod:{
dadsnd:"", // Drag Drop Sender .litp.rmbp.ptsget.sdamod.dadsnd
seainf:"", // .litp.rmbp.ptsget.sdamod.seainf
},
},
},
a2bp:{
ptsget:{
sdamod:{
seainf:"", // .litp.a2bp.ptsget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .litp.a2bp.ptsget.sdamod.dadsnd
},
},
},
ptsaddp:{
ptsaddg:[], // .litp.ptsaddp.ptsaddg
},
conp:{
ptsget:{
sdamod:{
seainf:"", // .litp.conp.ptsget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .litp.conp.ptsget.sdamod.dadsnd
},
},
},
}, },
swiadd: { },
trnchato: '', },
newnomtop: '', drwp: {
purpos: '', ptsget: {
amedat: '', sdamod: {
addamtcov: '', seainf: "", // .litp.drwp.ptsget.sdamod.seainf
newnomton: '', dadsnd: "", // Drag Drop Sender .litp.drwp.ptsget.sdamod.dadsnd
prepers18: '',
amenbr: '',
nartxt: '',
addamt: '',
amecur: '',
newshpdat: '',
newamt: '',
newexpdat: '',
trnfeetxt: '',
ameamt: '',
newcur: '',
prepertxts18: '',
nomspc: '',
reqcan: ''
}, },
},
setmod: new Pub().data.Setmod, },
mtabut: new Pub().data.Mtabut, defdetlab: "", // Label DEFDET .litp.defdetlab
trnmod: new Pub().data.Trnmod, avblab: "", // Label Available with Bank .litp.avblab
liaall: new Pub().data.Liaall, inip: {
liaccv: new Pub().data.Liaccv, ptsget: {
docpan: new Pub().data.Docpan, sdamod: {
pageId: "" // ctx的key seainf: "", // .litp.inip.ptsget.sdamod.seainf
} dadsnd: "", // Drag Drop Sender .litp.inip.ptsget.sdamod.dadsnd
},
},
},
rmbp: {
ptsget: {
sdamod: {
dadsnd: "", // Drag Drop Sender .litp.rmbp.ptsget.sdamod.dadsnd
seainf: "", // .litp.rmbp.ptsget.sdamod.seainf
},
},
},
a2bp: {
ptsget: {
sdamod: {
seainf: "", // .litp.a2bp.ptsget.sdamod.seainf
dadsnd: "", // Drag Drop Sender .litp.a2bp.ptsget.sdamod.dadsnd
},
},
},
ptsaddp: {
ptsaddg: [], // .litp.ptsaddp.ptsaddg
},
conp: {
ptsget: {
sdamod: {
seainf: "", // .litp.conp.ptsget.sdamod.seainf
dadsnd: "", // Drag Drop Sender .litp.conp.ptsget.sdamod.dadsnd
},
},
},
},
swiadd: {
trnchato: '',
newnomtop: '',
purpos: '',
amedat: '',
addamtcov: '',
newnomton: '',
prepers18: '',
amenbr: '',
nartxt: '',
addamt: '',
amecur: '',
newshpdat: '',
newamt: '',
newexpdat: '',
trnfeetxt: '',
ameamt: '',
newcur: '',
prepertxts18: '',
nomspc: '',
reqcan: ''
},
setmod: new Pub().data.Setmod,
mtabut: new Pub().data.Mtabut,
trnmod: new Pub().data.Trnmod,
liaall: new Pub().data.Liaall,
liaccv: new Pub().data.Liaccv,
docpan: new Pub().data.Docpan,
pageId: "" // ctx的key
}
} }
} }
\ No newline at end of file
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