Utlp.vue 19.5 KB
Newer Older
严一鸣 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<template>
  <div class="eibs-tab">
  <c-row>
    <c-col :span="24">                         
       <c-col :span="11">
        <el-form-item 
            label="信用证编号" 
            prop="lidgrp.rec.ownref"
            style="width = 100%">
            <c-fullbox>
              <c-input
                  v-model="model.lidgrp.rec.ownref"
                  maxlength="16"
                  placeholder="请输入信用证编号"
zhujiazhan committed
15
                  disabled
严一鸣 committed
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
              ></c-input>
              <template slot="footer">
                <c-button
                style="margin:0 0 0 10px;padding: 0 12px;"
                  size="small"
                  type="primary"
                  @click="onSeainf"
                >
                <span style="font-family:'宋体';font-weight:bold">i</span>
                </c-button>
              </template>
           </c-fullbox>
        </el-form-item>
       </c-col>
       <c-col :span="11" :offset="1">
        <el-form-item label="Date of Expiry" prop="lidgrp.rec.expdat">
            <c-date-picker 
                type="date"  
                v-model="model.lidgrp.rec.expdat" 
                style="width:100%"  
zhujiazhan committed
36 37 38
                placeholder="请选择Date of Expiry"
                disabled
                >
严一鸣 committed
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
            </c-date-picker>
        </el-form-item>
       </c-col>
    </c-col>    

    <!-- ====================左边======================= -->

    <c-col :span="11">  
        <c-col :span="24">
            <el-form-item
                label="单据参考号"
                prop="brdgrp.rec.ownref"
                style="width: 100%"
            >
            <c-fullbox>
                <c-input
                v-model="model.brdgrp.rec.ownref"
                maxlength="8"
                placeholder="请输入单据参考号"
zhujiazhan committed
58
                disabled
严一鸣 committed
59 60 61 62 63 64 65 66 67 68 69 70 71
            ></c-input>
                <template slot="footer">
                <c-button
                style="margin:0 0 0 10px;padding: 0 12px;"
                  size="small"
                  type="primary"
                  @click="onSeainf">
                <span style="font-family:'宋体';font-weight:bold">i</span>
                </c-button>
                </template>  
          </c-fullbox>
        </el-form-item>
        </c-col>
zhujiazhan committed
72 73 74 75 76 77 78 79 80 81 82 83 84 85
         <c-col :span="24">
            <c-col :span="13">
                <el-form-item label="单据金额" prop="brdgrp.cbs.max.cur">
                    <c-select v-model="model.brdgrp.cbs.max.cur" style="width:100%" placeholder="请选择单据金额" :code="codes.cur" disabled>
                    </c-select>
                </el-form-item>
            </c-col>
            <c-col :span="11">
                <el-form-item label="" prop="brdgrp.cbs.max.amt" label-width="5px">
                    <c-input
                    v-model="model.brdgrp.cbs.max.amt"
                     placeholder="请选择单据金额"
                     disabled
                    ></c-input>
严一鸣 committed
86
            </el-form-item>
zhujiazhan committed
87
           </c-col>
严一鸣 committed
88
        </c-col>
zhujiazhan committed
89 90 91 92 93 94 95 96 97
        <c-col :span="24">
            <c-col :span="13">
                <el-form-item label="单据余额" prop="brdgrp.cbs.opn1.cur" >
                    <c-input  v-model="model.brdgrp.cbs.opn1.cur" maxlength="3"  placeholder="请输入单据余额" disabled></c-input>
                </el-form-item>
           </c-col>
           <c-col :span="11">
            <el-form-item label="" prop="brdgrp.cbs.opn1.amt" label-width="5px">
                <c-input  v-model="model.brdgrp.cbs.opn1.amt"  placeholder="请输入单据余额" disabled></c-input>
严一鸣 committed
98
            </el-form-item>
zhujiazhan committed
99
           </c-col>
严一鸣 committed
100 101 102
       </c-col>
       <c-col :span="12">
        <el-form-item label="到单日期" prop="brdgrp.rec.rcvdat">
zhujiazhan committed
103
            <c-date-picker type="date"  v-model="model.brdgrp.rec.rcvdat" style="width:100%"  placeholder="请选择到单日期" disabled></c-date-picker>
严一鸣 committed
104 105 106 107
        </el-form-item>
       </c-col>
       <c-col :span="12">
        <el-form-item label="付款通知日期" prop="brdgrp.rec.advdat" label-width="120px">
zhujiazhan committed
108
            <c-date-picker type="date"  v-model="model.brdgrp.rec.advdat" style="width:100%"  placeholder="请选择Date of Advice of Payment" disabled></c-date-picker>
严一鸣 committed
109 110 111
        </el-form-item>
       </c-col>
       <c-col :span="12">
112
        <el-form-item label="远期单据到期日" prop="brdgrp.rec.matdat">
zhujiazhan committed
113
            <c-date-picker type="date"  v-model="model.brdgrp.rec.matdat" style="width:100%"  placeholder="请选择到单日期" disabled></c-date-picker>
严一鸣 committed
114 115 116
        </el-form-item>
       </c-col>
       <c-col :span="12">
zhujiazhan committed
117 118
        <el-form-item label="start Date" prop="brdgrp.rec.stadat" label-width="120px">
            <c-date-picker type="date"  v-model="model.brdgrp.rec.stadat" style="width:100%"  placeholder="请选择远期单据到期日" disabled></c-date-picker>
严一鸣 committed
119 120 121 122
        </el-form-item>
       </c-col>
       <c-col :span="12">
        <el-form-item label="单据类型" prop="brdgrp.rec.docflg">
zhujiazhan committed
123
            <c-select v-model="model.brdgrp.rec.docflg" style="width:100%" placeholder="请选择单据类型" :code="codes.docflg" disabled>
严一鸣 committed
124 125 126 127
              </c-select>
        </el-form-item>
       </c-col>
       <c-col :span="12">
zhujiazhan committed
128 129
        <el-form-item label="Tenor" prop="brdgrp.rec.tenmaxday" label-width="120px">
            <c-input  v-model="model.brdgrp.rec.tenmaxday"  placeholder="请输入Tenor day" disabled></c-input>
严一鸣 committed
130 131 132 133
        </el-form-item>
       </c-col>
       <c-col :span="24">
        <el-form-item label="单据状态" prop="brdgrp.rec.docsta">
134
            <c-select v-model="model.brdgrp.rec.docsta" style="width:100%" placeholder="请选择单据状态" :code="codes.docsta1" disabled>
严一鸣 committed
135 136 137 138
              </c-select>
        </el-form-item>
       </c-col>
       <c-col :span="24">
zhujiazhan committed
139
        <el-form-item label="Tenor Stream" prop="liaall.tenstm.rows">
严一鸣 committed
140
            <c-istream-table
zhujiazhan committed
141
              :list="model.liaall.tenstm.rows"
严一鸣 committed
142
              :columns="columns"
143
              :showSelection=true
zhujiazhan committed
144
              v-on:multipleSelect="multipleSelect"
严一鸣 committed
145 146
            >
            </c-istream-table>
严一鸣 committed
147 148 149
        </el-form-item>
       </c-col>

zhujiazhan committed
150 151 152 153 154 155 156 157
         <c-col :span="24">
           <c-col :span="13">
            <el-form-item label="Amount Settled" prop="setmod.doccur">
                <c-input  v-model="model.setmod.doccur" maxlength="3"  placeholder="请输入document currency" disabled></c-input>
            </el-form-item>
           </c-col>
           <c-col :span="11">
                <el-form-item label="" label-width="5px" prop="setmod.docamt">
zhujiazhan committed
158
                    <c-input  v-model="model.setmod.docamt"  placeholder="请输入document amount" @blur="onChangeDocamt"></c-input>
zhujiazhan committed
159 160 161 162 163 164 165 166 167 168 169 170
                </el-form-item>
           </c-col>
        </c-col>
        <c-col :span="24">
           <c-col :span="13">
            <el-form-item label="Reduce Amt.settled" prop="setmod.doccur">
                <c-input  v-model="model.setmod.doccur" maxlength="3"  placeholder="请输入document currency" disabled></c-input>
            </el-form-item>
           </c-col>
           <c-col :span="11">
            <c-fullbox>
                <el-form-item label="" label-width="5px" prop="setmod.setamt">
zhujiazhan committed
171
                <c-input  v-model="model.setmod.setamt"  placeholder="请输入document amount" :disabled=this.flag3></c-input>
zhujiazhan committed
172 173 174
                </el-form-item>
            </c-fullbox>
           </c-col>
严一鸣 committed
175 176 177 178
       </c-col>



zhujiazhan committed
179 180 181 182 183 184 185 186 187
        <c-col  :span="24">
           <c-col :span="13">
            <el-form-item label="单据金额" prop="brdgrp.cbs.opn2.cur">
                <c-select v-model="model.brdgrp.cbs.opn2.cur" style="width:100%" placeholder="请选择单据金额" :code="codes.cur" disabled>
                  </c-select>
            </el-form-item>
           </c-col>
           <c-col :span="11">
            <el-form-item label="" prop="aamset.utlamt" label-width="5px">
zhujiazhan committed
188
                <c-input  v-model="model.aamset.utlamt"  placeholder="请输入单据金额" :disabled=this.flag3></c-input>
zhujiazhan committed
189 190
            </el-form-item>
           </c-col>
严一鸣 committed
191 192
       </c-col>

zhujiazhan committed
193 194 195 196 197 198 199 200 201
       <c-col :span="24">
           <c-col :span="13">
            <el-form-item label="附加金额" prop="brdgrp.cbs.opn2.cur">
                <c-select v-model="model.brdgrp.cbs.opn2.cur" style="width:100%" placeholder="请选择附加金额" :code="codes.cur" disabled>
                  </c-select>
            </el-form-item>
           </c-col>
           <c-col :span="11">
            <el-form-item label="" prop="aamset.utlamt2" label-width="5px">
zhujiazhan committed
202
                <c-input  v-model="model.aamset.utlamt2"  placeholder="" :disabled=this.flag3></c-input>
zhujiazhan committed
203 204
            </el-form-item>
           </c-col>
严一鸣 committed
205
       </c-col>
zhujiazhan committed
206 207 208
        <c-col :span="24">
            <c-col :span="12">
                <el-form-item label="跨境人民币清算模式" prop="trnmod.cmtflg">
209 210 211 212 213 214 215
                    <c-select
                    v-model="model.trnmod.cmtflg"
                    style="width:100%"
                    placeholder="请选择跨境人民币清算模式"
                    :code="this.cmtflg"
                    @change="commonExecuteRule('trnmod.cmtflg')"
                    >
zhujiazhan committed
216 217 218 219 220
                      </c-select>
                </el-form-item>
            </c-col>
           <c-col :span="12">
                <el-form-item label="Close Flag" label-width="80px" prop="setmod.docamt" style="margin-left:20px">
zhujiazhan committed
221
        	        <c-checkbox v-model="model.mtabut.clsflg" style="margin-left:20px" true-label="X"></c-checkbox>
zhujiazhan committed
222 223
                </el-form-item>
               </c-col>
严一鸣 committed
224
       </c-col>
zhujiazhan committed
225 226
       <c-col :span="24">
        <el-form-item label="报文类型" prop="trnmod.swftyp" v-show="model.trnmod.cmtflg=='P'?true:false">
227
            <c-select v-model="model.trnmod.swftyp" style="width:100%" placeholder="请选择报文类型" :code="codes.swftyp1" disabled>
严一鸣 committed
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
              </c-select>
        </el-form-item>
       </c-col>
       <c-col :span="24">
        <el-form-item label="发票号" prop="brdgrp.rec.invref">
            <c-input  v-model="model.brdgrp.rec.invref" maxlength="35"  placeholder="请输入发票号"></c-input>
        </el-form-item>
       </c-col>
       <c-col :span="24">
        <el-form-item label="最迟送达日期" prop="zcsdrq">
            <c-date-picker type="date"  v-model="model.zcsdrq" style="width:100%"  placeholder="请选择最迟送达日期"></c-date-picker>
        </el-form-item>
       </c-col>

       <c-col :span="24">
        <div class="e-table-wrapper">
严一鸣 committed
244 245 246 247 248
            <c-table
                style="text-align: center"
                :list="table1"
                :paginationShow="false"
                :border="true"
严一鸣 committed
249
                >
严一鸣 committed
250 251 252 253 254

            <el-table-column label="Reference" prop="ownref" width="auto"></el-table-column>
            <el-table-column label="Cur." prop="opncur" width="auto"></el-table-column>
            <el-table-column label="Open Amount" prop="opnamt" width="auto"></el-table-column>
            <el-table-column label="Amount Paid" prop="bckamt" width="auto"></el-table-column>
zhujiazhan committed
255 256
            <el-table-column label="Cal." prop="butcal" width="auto"></el-table-column>

严一鸣 committed
257
              </c-table>
zhujiazhan committed
258

严一鸣 committed
259 260 261
       </div>
       </c-col>

zhujiazhan committed
262 263 264 265 266 267 268 269 270 271 272 273 274
         <c-col :span="12">
                <el-form-item label="是否需要检验" prop="brtp.ischktyp">
                    <c-select v-model="model.brtp.ischktyp" style="width:100%" placeholder="" :code="codes.ischktyp" >
                        <el-option
                            v-for="item in codes.ischktyp"
                            :key="item.label"
                            :label="item.label"
                            :value="item.label">
                        </el-option>
                      </c-select>
                 </el-form-item>
           </c-col>

严一鸣 committed
275
       <c-col :span="12">
严一鸣 committed
276
        <el-form-item label="预计核验日期" prop="brtp.prechkdat">
zhujiazhan committed
277
            <c-date-picker type="date"  v-model="model.brtp.prechkdat" style="width:100%"  placeholder="请选择预计核验日期" :disabled="model.brtp.ischktyp=='N'?true:false"></c-date-picker>
严一鸣 committed
278 279
        </el-form-item>
       </c-col>
严一鸣 committed
280

zhujiazhan committed
281

严一鸣 committed
282 283 284 285 286
    </c-col>
    <!-- ====================右边======================= -->
    <c-col :span="11" :offset="1">
        <c-col :span="24">
        <el-form-item label="Name of Bill Contract" prop="brdgrp.rec.nam">
zhujiazhan committed
287
            <c-input  v-model="model.brdgrp.rec.nam" maxlength="40"  placeholder="请输入Name of Bill Contract" disabled></c-input>
严一鸣 committed
288 289 290 291 292 293
        </el-form-item>
       </c-col>

        
       <c-col :span="24">
        <el-form-item label="Applicant" prop="brdgrp.apl.pts.ref">
zhujiazhan committed
294
            <c-input  v-model="model.brdgrp.apl.pts.ref" maxlength="16"  placeholder="请输入申请人" disabled></c-input>
严一鸣 committed
295 296 297 298 299 300
        </el-form-item>
       </c-col>


        <c-col :span="24">
        <el-form-item label="Name of Party" prop="brdgrp.apl.pts.nam">
zhujiazhan committed
301
            <c-input  v-model="model.brdgrp.apl.pts.nam" maxlength="40"  placeholder="请输入Name of Party" disabled></c-input>
严一鸣 committed
302 303 304 305 306 307
        </el-form-item>
       </c-col>


       <c-col :span="24">
        <el-form-item label="Beneficiary" prop="brdgrp.ben.pts.ref">
zhujiazhan committed
308
            <c-input  v-model="model.brdgrp.ben.pts.ref" maxlength="16"  placeholder="请输入受益人" disabled></c-input>
严一鸣 committed
309 310 311 312
        </el-form-item>
       </c-col>
       <c-col :span="24">
        <el-form-item label="Name of Party" prop="brdgrp.ben.pts.nam">
zhujiazhan committed
313
            <c-input  v-model="model.brdgrp.ben.pts.nam" maxlength="40"  placeholder="请输入Name of Party" disabled></c-input>
严一鸣 committed
314 315 316 317 318
        </el-form-item>
       </c-col>

        <c-col :span="24">
        <el-form-item label="Preseenting Bank" prop="brdgrp.prb.pts.ref">
zhujiazhan committed
319
            <c-input  v-model="model.brdgrp.prb.pts.ref" maxlength="16"  placeholder="请输入交单行" disabled></c-input>
严一鸣 committed
320 321 322 323
        </el-form-item>
       </c-col>
       <c-col :span="24">
        <el-form-item label="Name of Party" prop="brdgrp.prb.pts.nam">
zhujiazhan committed
324
            <c-input  v-model="model.brdgrp.prb.pts.nam" maxlength="40"  placeholder="请输入Name of Party" disabled></c-input>
严一鸣 committed
325 326 327 328 329
        </el-form-item>
       </c-col>
       
       <c-col :span="12">
        <el-form-item label="Create Financing" prop="trtcre.crefinflg">
330
	    <c-checkbox v-model="model.trtcre.crefinflg" :disabled="model.paypsb != '' || model.brdgrp.rec.frepayflg !=''?true:false"></c-checkbox>
严一鸣 committed
331 332 333 334 335 336 337 338 339 340
        </el-form-item>
       </c-col>       
       <c-col :span="12">
        <el-form-item label="同业代付" prop="dftcre.dfflag">
	    <c-checkbox v-model="model.dftcre.dfflag"></c-checkbox>
        </el-form-item>
       </c-col>

         <c-col :span="12">
            <el-form-item label="Unpaid by Applicant" prop="paypsb">
341 342 343
	                <c-checkbox v-model="model.paypsb"
                        :disabled="model.brdgrp.rec.frepayflg == ''?false:true"
	                ></c-checkbox>
严一鸣 committed
344 345 346 347 348 349 350 351 352
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
        <el-form-item label="Free of Payment Flag" prop="brdgrp.rec.frepayflg">
	    <c-checkbox v-model="model.brdgrp.rec.frepayflg"></c-checkbox>
        </el-form-item>
       </c-col>

zhujiazhan committed
353 354 355 356
        <c-col :span="24">
        <c-col :span="13">
        <el-form-item label="Reduction Amt." prop="setmod.doccur">
            <c-input  v-model="model.setmod.doccur" maxlength="3"  placeholder="请输入document currency" disabled></c-input>
严一鸣 committed
357 358
        </el-form-item>
       </c-col>
zhujiazhan committed
359 360
       <c-col :span="11">
        <el-form-item label="" prop="setmod.redamt" label-width="5px">
严一鸣 committed
361 362 363
            <c-input  v-model="model.setmod.redamt"  placeholder="请输入Reduction Amt."></c-input>
        </el-form-item>
       </c-col>
zhujiazhan committed
364
       </c-col>
严一鸣 committed
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379

       <c-col :span="24">
        <el-form-item label="合同号" prop="brdgrp.rec.rptref">
            <c-input  v-model="model.brdgrp.rec.rptref" maxlength="25"  placeholder="请输入合同号"></c-input>
        </el-form-item>
       </c-col>

       <c-col :span="24">
        <el-form-item label="Narrative :77A:" prop="nar754">
            <c-input type="textarea" v-model="model.nar754" maxlength="35" show-word-limit placeholder="请输入Narrative :77A:" ></c-input>
        </el-form-item>
        </c-col>

        <c-col :span="24">
        <el-form-item label="Presented by" prop="brdgrp.rec.docprbrol">
zhujiazhan committed
380
            <c-select v-model="model.brdgrp.rec.docprbrol" style="width:100%" placeholder="请选择Presented by" :code="codes.docprbrol">
严一鸣 committed
381 382 383 384 385 386 387
              </c-select>
        </el-form-item>
       </c-col>

        <c-col :span="24">
        <el-form-item label="External Key of Address" prop="brdgrp.prb.pts.extkey">
            <c-fullbox>
388 389 390 391 392 393
                <c-input
                    v-model="model.brdgrp.prb.pts.extkey"
                    maxlength="16"
                    placeholder="请输入External Key of Address"
                    @keyup.enter.native="showGridPromptDialog('brdgrp.prb.pts.extkey')"
                    ></c-input>
严一鸣 committed
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410
                <template slot="footer">
                <c-button
                style="margin:0 10px 0 10px;padding: 0 12px;"
                  size="small"
                  type="primary"
                  @click="onSeainf">
                <span style="font-family:'宋体';font-weight:bold">i</span>
                </c-button>
                <c-button
                style="margin:0 0 0 10px;padding: 0 12px;"
                  size="small"
                  type="primary"
                  @click="onSeainf">
                <span style="font-family:'宋体';font-weight:bold">det</span>
                </c-button>
                </template>  
          </c-fullbox>
zhujiazhan committed
411 412


严一鸣 committed
413 414 415
        </el-form-item>
       </c-col>

zhujiazhan committed
416 417 418



严一鸣 committed
419 420 421

        <c-col :span="24">
        <el-form-item label="Address Block" prop="brdgrp.prb.pts.adrblk">
zhujiazhan committed
422
            <c-input type="textarea" v-model="model.brdgrp.prb.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" disabled></c-input>
严一鸣 committed
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
        </el-form-item>
        </c-col>

    </c-col>    
    </c-row>           
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Brtset/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {
zhujiazhan committed
442
            flag3:true,
443 444 445 446 447
            cmtflg:[
              { label: "代理行模式", value: "C" },
              { label: "Other", value: "O" },
              { label: "CIPS系统", value: "P" },
            ],
zhujiazhan committed
448
             table1:[],
严一鸣 committed
449
            columns:[
450 451 452 453
                "1 1 \"Type\" 80",
                "2 2 \"Dbt\" 80",
                "3 3 \"Cdt\" 80",
                "4 4 \"Cur\" 80",
zhujiazhan committed
454
                "5 5 \"Amt\" 85 2 8 1 4",
455
                "6 6 \"Mat.Dat.\" 105 4 7 1"
zhujiazhan committed
456
            ]
严一鸣 committed
457 458
        }
    },
459 460
    methods:{...Event,

zhujiazhan committed
461 462 463
         commonExecuteRule(ruleName) {
              this.executeRule(ruleName).then((res) => {
                if ((res.respCode == SUCCESS)) {
464

zhujiazhan committed
465 466 467 468 469 470 471 472 473 474 475 476 477 478
                }
              });
            },
          async multipleSelect(selection) {
                if(selection.length>0){
                  console.log(selection);
                  let line = this.model.liaall.tenstm.rows[selection];
                  let lines = line.split('\t');
                  this.model.setmod.docamt = lines[5];
                }else{
                  this.model.setmod.docamt = 0.000;
                }
                 this.onChangeDocamt();
            },
479
    },
严一鸣 committed
480 481 482 483
    created:function(){

    },
    watch: {
484 485
        declareParams() {},
         "model.trnmod.cmtflg":{
486 487 488 489 490 491 492 493 494
            immediate:true,
            handler(val ,oldVal){
                if(this.model.trnmod.cmtflg=='P'){
                    this.model.trnmod.swftyp='CIV';
                }else{
                    this.model.trnmod.swftyp='';
                }
            }
          },
严一鸣 committed
495 496 497 498 499 500
    },
}
</script>
<style>

</style>