Brtdckp.vue 27.6 KB
Newer Older
zhoutian committed
1 2
<template>
  <div class="eibs-tab">
lianyang committed
3 4
    <c-row>

5
      <!-- =================================左边================================= -->
zhoutian committed
6
      <c-col :span="12">
lianyang committed
7
        <!-- S0000198 : 信用证编号 -->
8
        <c-col :span="24">
lianyang committed
9 10 11 12 13 14 15
          <c-form-item label="Import L/C Ref" prop="lidgrp.rec.ownref">
            <c-fullbox>
              <c-input
                v-model="model.lidgrp.rec.ownref"
                maxlength="16"
                placeholder=""
                style="width: 100%"
16
                disabled
lianyang committed
17 18 19
              ></c-input>
              <template slot="footer">
                <c-button
lianyang committed
20
                  style="margin: 0 0 0 10px; padding: 0 12px"
lianyang committed
21 22 23 24 25 26 27 28 29 30 31
                  size="small"
                  type="primary"
                  @click="onSeainf"
                >
                  <span style="font-family: '宋体'; font-weight: bold">i</span>
                </c-button>
              </template>
            </c-fullbox>
          </c-form-item>
        </c-col>
        <!-- S0000195 : 到期日 -->
32 33
        <c-col :span="24">
          <el-form-item label="Expiry" prop="lidgrp.rec.expdat">
lianyang committed
34 35 36 37 38
            <c-date-picker
              type="date"
              v-model="model.lidgrp.rec.expdat"
              style="width: 100%"
              placeholder="请输入Expiry"
lianyang committed
39
              value-format="yyyy-MM-dd"
40
              disabled
lianyang committed
41 42 43 44 45
            ></c-date-picker>
          </el-form-item>
        </c-col>
        
        <!-- S0000196 : 单据参考号 -->
zhoutian committed
46
        <c-col :span="24">
lianyang committed
47 48 49 50 51 52
          <c-form-item label="Bill Set Reference" prop="brdgrp.rec.ownref">
            <c-fullbox>
              <c-input
                v-model="model.brdgrp.rec.ownref"
                maxlength="16"
                placeholder=""
53
                disabled
lianyang committed
54 55 56
              ></c-input>
              <template slot="footer">
                <c-button
lianyang committed
57
                  style="margin: 0 0 0 10px; padding: 0 12px"
lianyang committed
58 59 60 61 62 63 64 65 66 67 68 69 70
                  size="small"
                  type="primary"
                  @click="onSeainf"
                >
                  <span style="font-family: '宋体'; font-weight: bold">i</span>
                </c-button>
              </template>
            </c-fullbox>
          </c-form-item>
        </c-col>
        <!-- S0000197 : 单据金额 -->
        <c-col :span="24">
          <c-col :span="13">
zhoutian committed
71
            <el-form-item label="Document Amount" prop="brdgrp.cbs.max.cur">
lianyang committed
72 73 74 75
              <c-select
                v-model="model.brdgrp.cbs.max.cur"
                style="width: 100%"
                placeholder="请输入Document Amount"
lianyang committed
76
                :code="codes.curtxt1"
77
                disabled
lianyang committed
78 79
              >
              </c-select>
zhoutian committed
80
            </el-form-item>
lianyang committed
81 82 83 84 85 86 87
          </c-col>

          <c-col :span="11">
            <c-form-item label="" label-width="5px" prop="brdgrp.cbs.max.amt">
              <c-input
                v-model="model.brdgrp.cbs.max.amt"
                placeholder=""
lianyang committed
88
                class="m-input-currency"
89
                disabled
lianyang committed
90
              ></c-input>
zhoutian committed
91
            </c-form-item>
lianyang committed
92 93 94 95 96 97
          </c-col>
        </c-col>

        <!-- S0000199 : 单据余额 -->
        <c-col :span="24">
          <c-col :span="13">
zhoutian committed
98
            <c-form-item label="Open Amount" prop="brdgrp.cbs.opn1.cur">
lianyang committed
99
              <c-select
lianyang committed
100 101 102
                v-model="model.brdgrp.cbs.opn1.cur"
                maxlength="3"
                placeholder="请输入Open Amount"
lianyang committed
103
                :code="codes.curtxt1"
104
                disabled
lianyang committed
105
              ></c-select>
zhoutian committed
106
            </c-form-item>
lianyang committed
107 108 109 110 111 112 113
          </c-col>

          <c-col :span="11">
            <c-form-item label="" label-width="5px" prop="brdgrp.cbs.opn1.amt">
              <c-input
                v-model="model.brdgrp.cbs.opn1.amt"
                placeholder=""
lianyang committed
114
                class="m-input-currency"
115
                disabled
lianyang committed
116
              ></c-input>
zhoutian committed
117
            </c-form-item>
lianyang committed
118 119 120 121
          </c-col>
        </c-col>

        <!-- S0000200 : 到单日期 -->
zhoutian committed
122
        <c-col :span="12">
lianyang committed
123 124 125 126 127 128
          <el-form-item label="Received on" prop="brdgrp.rec.rcvdat">
            <c-date-picker
              type="date"
              v-model="model.brdgrp.rec.rcvdat"
              style="width: 100%"
              placeholder="请输入"
lianyang committed
129
              value-format="yyyy-MM-dd"
130
              disabled
lianyang committed
131 132 133 134
            ></c-date-picker>
          </el-form-item>
        </c-col>
        <!-- S0000202 : 通知到单日期 -->
zhoutian committed
135
        <c-col :span="12">
lianyang committed
136 137 138 139 140 141
          <el-form-item label="Advised on" prop="brdgrp.rec.advdat">
            <c-date-picker
              type="date"
              v-model="model.brdgrp.rec.advdat"
              style="width: 100%"
              placeholder="请输入Advised on"
lianyang committed
142
              value-format="yyyy-MM-dd"
143
              disabled
lianyang committed
144 145 146 147
            ></c-date-picker>
          </el-form-item>
        </c-col>
        <!-- S0000080 : Maturity Date -->
148
        <c-col :span="24">
lianyang committed
149 150 151 152 153 154
          <el-form-item label="Maturity Date" prop="brdgrp.rec.matdat">
            <c-date-picker
              type="date"
              v-model="model.brdgrp.rec.matdat"
              style="width: 100%"
              placeholder="请输入Maturity Date"
lianyang committed
155
              value-format="yyyy-MM-dd"
lianyang committed
156 157
            ></c-date-picker>
          </el-form-item>
zhoutian committed
158
        </c-col>
lianyang committed
159
        <!-- SG000232 : Start Date -->
160
        <c-col :span="24">
lianyang committed
161 162 163 164 165 166
          <el-form-item label="Start Date" prop="brdgrp.rec.stadat">
            <c-date-picker
              type="date"
              v-model="model.brdgrp.rec.stadat"
              style="width: 100%"
              placeholder="请输入 Start Date"
lianyang committed
167
              value-format="yyyy-MM-dd"
168
              disabled
lianyang committed
169 170 171 172 173 174 175 176 177 178 179
            ></c-date-picker>
          </el-form-item>
        </c-col>
        <!-- S0000206 : 单据类型 -->
        <c-col :span="16">
          <el-form-item label="Document Type" prop="brdgrp.rec.docflg">
            <c-select
              v-model="model.brdgrp.rec.docflg"
              style="width: 100%"
              placeholder="请输入Document Type"
              :code="codes.docflg"
180
              disabled
lianyang committed
181 182 183 184 185 186 187 188 189 190 191 192 193 194
            >
            </c-select>
          </el-form-item>
        </c-col>
        <!-- SG000233 : Tenor -->
        <c-col :span="8">
          <c-form-item
            label="Tenor"
            label-width="100px"
            prop="brdgrp.rec.tenmaxday"
          >
            <c-input
              v-model="model.brdgrp.rec.tenmaxday"
              placeholder="请输入Tenor"
195
              disabled
lianyang committed
196 197 198 199 200 201 202 203 204 205
            ></c-input>
          </c-form-item>
        </c-col>
        <!-- S0000207 : 单据状态 -->
        <c-col :span="24">
          <el-form-item label="Document Set Status" prop="brdgrp.rec.docsta">
            <c-select
              v-model="model.brdgrp.rec.docsta"
              style="width: 100%"
              placeholder="请输入"
206
              :code="codes.docsta1"
207
              disabled
lianyang committed
208 209 210 211 212 213 214 215 216 217
            >
            </c-select>
          </el-form-item>
        </c-col>
        <!-- S0000084 : Document Type -->
        <c-col :span="24">
          <el-form-item label="Document Type" prop="brdgrp.rec.docflg">
            <c-select
              v-model="model.brdgrp.rec.docflg"
              style="width: 100%"
218
              placeholder="请选择Document Type"
lianyang committed
219 220 221 222 223 224 225 226 227
              :code="codes.docflg"
            >
            </c-select>
          </el-form-item>
        </c-col>
        <!-- S0000086 : Document Amount -->
        <c-col :span="24">
          <c-col :span="13">
            <el-form-item label="Document Amount" prop="brdgrp.cbs.max.cur">
lianyang committed
228
              <c-select
lianyang committed
229 230 231
                v-model="model.brdgrp.cbs.max.cur"
                style="width: 100%"
                placeholder=""
lianyang committed
232
                :code="codes.curtxt1"
233
                disabled
lianyang committed
234
              >
lianyang committed
235
              </c-select>
lianyang committed
236 237 238 239 240 241 242
            </el-form-item>
          </c-col>
          <c-col :span="11">
            <c-form-item label="" label-width="5px" prop="brdgrp.cbs.max.amt">
              <c-input
                v-model="model.brdgrp.cbs.max.amt"
                placeholder=""
lianyang committed
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
                class="m-input-currency"
              ></c-input>
            </c-form-item>
          </c-col>
        </c-col>

                <!-- =====================================当单据金额Document Amount没变时隐藏====================================================== -->
        <c-col :span="24">
          <c-col :span="13">
            <span  v-text="model.oridoclab"   data-path=".oridoclab" 
              class="span_oridoclab"
              v-show="model.brdgrp.cbs.max.amt!=model.oldbrdgrp.cbs.max.amt"> </span>
          </c-col>
          <c-col :span="11">
            <c-form-item label="" label-width="5px" prop="oldbrdgrp.cbs.max.amt">
              <c-input  v-model="model.oldbrdgrp.cbs.max.amt"  placeholder=""
                class="m-input-currency"
                style="width: 100%"
                disabled
                v-show="model.brdgrp.cbs.max.amt!=model.oldbrdgrp.cbs.max.amt"
lianyang committed
263
              ></c-input>
zhoutian committed
264
            </c-form-item>
lianyang committed
265 266 267 268 269 270 271 272 273 274 275
          </c-col>
        </c-col>

        <!-- S0000006 : 附加金额 -->
        <c-col :span="24">
          <c-col :span="13">
            <el-form-item label="Drawn Add Amount" prop="brdgrp.cbs.opn2.cur">
              <c-select
                v-model="model.brdgrp.cbs.opn2.cur"
                style="width: 100%"
                placeholder="请输入Drawn Add Amount"
lianyang committed
276
                :code="codes.curtxt1"
277
                disabled
lianyang committed
278 279 280 281 282 283 284 285 286
              >
              </c-select>
            </el-form-item>
          </c-col>

          <c-col :span="11">
            <c-form-item label="" label-width="5px" prop="brdgrp.cbs.max2.amt">
              <c-input
                v-model="model.brdgrp.cbs.max2.amt"
lianyang committed
287
                class="m-input-currency"
lianyang committed
288 289
                placeholder=""
              ></c-input>
zhoutian committed
290
            </c-form-item>
lianyang committed
291 292
          </c-col>
        </c-col>
zhoutian committed
293

lianyang committed
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
                <!-- =====================================当附加金额没变时隐藏====================================================== -->
        <c-col :span="24">
          <c-col :span="13">
            <span v-text="model.oriaddlab" data-path=".oriaddlab"
              class="span_oridoclab"
              v-show="model.brdgrp.cbs.max2.amt!=model.oldbrdgrp.cbs.max2.amt"> </span>
          </c-col>
          <c-col :span="11">
            <c-form-item label="" label-width="5px" prop="oldbrdgrp.cbs.max2.amt">
              <c-input  v-model="model.oldbrdgrp.cbs.max2.amt"  :placeholder="$t('other.please_enter')+'Balance'"
                class="m-input-currency"
                style="width: 100%"
                disabled
                v-show="model.brdgrp.cbs.max2.amt!=model.oldbrdgrp.cbs.max2.amt"></c-input>
            </c-form-item>
          </c-col>
        </c-col>

lianyang committed
312 313 314 315 316 317 318 319
        <!-- S0000081 : Presentation Date -->
        <c-col :span="12">
          <el-form-item label="Presentation Date" prop="brdgrp.rec.predat">
            <c-date-picker
              type="date"
              v-model="model.brdgrp.rec.predat"
              style="width: 100%"
              placeholder="请输入Presentation Date"
lianyang committed
320
              value-format="yyyy-MM-dd"
lianyang committed
321 322 323 324 325 326 327 328 329 330 331
            ></c-date-picker>
          </el-form-item>
        </c-col>
        <!-- S0000082 : Received on -->
        <c-col :span="12">
          <el-form-item label="Received on" prop="brdgrp.rec.rcvdat">
            <c-date-picker
              type="date"
              v-model="model.brdgrp.rec.rcvdat"
              style="width: 100%"
              placeholder="请输入Received on"
lianyang committed
332
              value-format="yyyy-MM-dd"
lianyang committed
333 334 335
            ></c-date-picker>
          </el-form-item>
        </c-col>
336
        <c-col :span="24">
lianyang committed
337 338 339 340 341 342
          <el-form-item label="Maturity Date" prop="brdgrp.rec.matdat">
            <c-date-picker
              type="date"
              v-model="model.brdgrp.rec.matdat"
              style="width: 100%"
              placeholder="Maturity Date"
lianyang committed
343
              value-format="yyyy-MM-dd"
lianyang committed
344 345 346 347
            ></c-date-picker>
          </el-form-item>
        </c-col>
        <!-- S0000083 : Shipped on -->
348
        <c-col :span="24">
lianyang committed
349 350 351 352 353 354
          <el-form-item label="Shipped on" prop="brdgrp.rec.shpdat">
            <c-date-picker
              type="date"
              v-model="model.brdgrp.rec.shpdat"
              style="width: 100%"
              placeholder="请输入Shipped on"
lianyang committed
355
              value-format="yyyy-MM-dd"
lianyang committed
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
            ></c-date-picker>
          </el-form-item>
        </c-col>
        <!-- SG000365 : Transaction Type -->
        <c-col :span="12">
          <el-form-item label="Transaction Type" prop="mhtyp">
            <c-select
              v-model="model.mhtyp"
              style="width: 100%"
              placeholder="请输入Transaction Type"
              :code="codes.mhtyp"
            >
            </c-select>
          </el-form-item>
        </c-col>
        <c-col :span="12">
          <c-form-item label="Letter day" prop="days">
            <c-input
              v-model="model.days"
              placeholder="请输入Letter day"
            ></c-input>
          </c-form-item>
        </c-col>
        <!-- S0000079 : Maturity Period -->
        <c-col :span="24">
          <c-form-item label="Maturity Period" prop="brdgrp.blk.matper">
            <c-input
              type="textarea"
              v-model="model.brdgrp.blk.matper"
              maxlength="65"
              show-word-limit
              placeholder="请输入Maturity Period"
            ></c-input>
          </c-form-item>
        </c-col>
        <!-- SF000369 : Applicant Reference -->
        <c-col :span="12">
          <c-form-item label="Applicant Reference" prop="lidgrp.rec.aplref">
            <c-input
              v-model="model.lidgrp.rec.aplref"
              maxlength="16"
              placeholder="请输入Applicant Reference"
            ></c-input>
          </c-form-item>
        </c-col>
        <c-col :span="12">
          <c-checkbox
lianyang committed
403
            v-model="model.brdgrp.rec.dscinsflg"
lianyang committed
404
            style="width: 100%; margin-left: 40px"
lianyang committed
405
            :disabled="model.brdgrp.blk.docdisflg!=''"
lianyang committed
406 407
            >Enter Docs,Discrep,Instr and Shipping Detials</c-checkbox
          >
408 409 410 411 412
          <!-- <c-checkbox
            v-model="model.brdgrp.rec.dscinsflg"
            style="width: 100%; margin-left: 40px"
            >Enter Docs,Discrep,Instr and Shipping Detials</c-checkbox
          > -->
lianyang committed
413 414 415 416 417 418 419 420 421 422 423
        </c-col>
        <c-col :span="24">
          <c-form-item
            label="Previous Drawings under this L/C"
            prop="lidgrp.rec.utlnbr"
          >
            <c-input
              v-model="model.lidgrp.rec.utlnbr"
              :placeholder="
                $t('other.please_enter') + 'Count of Received Document Sets'
              "
424
              disabled
lianyang committed
425 426 427
            ></c-input>
          </c-form-item>
        </c-col>
zhoutian committed
428 429
      </c-col>

430
      <!-- =================================右边=============================== -->
lianyang committed
431 432 433
      <c-col :span="11" :offset="1">
        
        <!-- S0000192 : 信用证余额 -->
zhoutian committed
434
        <c-col :span="12">
lianyang committed
435 436 437 438 439
          <c-form-item label="Open Amt L/C" prop="lidgrp.cbs.opn1.cur">
            <c-input
              v-model="model.lidgrp.cbs.opn1.cur"
              maxlength="3"
              :placeholder="$t('other.please_enter') + 'Currency'"
440
              disabled
lianyang committed
441 442 443 444 445 446 447 448
            ></c-input>
          </c-form-item>
        </c-col>
        <c-col :span="12">
          <c-form-item label="" label-width="10px" prop="lidgrp.cbs.opn1.amt">
            <c-input
              v-model="model.lidgrp.cbs.opn1.amt"
              placeholder=""
449
              disabled
lianyang committed
450 451 452 453 454 455 456 457 458 459
            ></c-input>
          </c-form-item>
        </c-col>

        <c-col :span="24">
          <c-form-item label="" prop="brdgrp.rec.nam">
            <c-input
              v-model="model.brdgrp.rec.nam"
              maxlength="40"
              placeholder="请输入"
460
              disabled
lianyang committed
461 462 463 464 465
            ></c-input>
          </c-form-item>
        </c-col>
        <c-col :span="24">
          <c-ptsmsg
zhoutian committed
466
            :model="model"
lianyang committed
467
            :argadr="{ title: 'Applicant Ref', grp: 'brdgrp', rol: 'apl' }"
468
            disabled
lianyang committed
469 470 471 472 473
          >
          </c-ptsmsg>
        </c-col>
        <c-col :span="24">
          <c-ptsmsg
zhoutian committed
474
            :model="model"
lianyang committed
475
            :argadr="{ title: 'Beneficiary Ref', grp: 'brdgrp', rol: 'ben' }"
476
            disabled
lianyang committed
477 478 479 480 481
          >
          </c-ptsmsg>
        </c-col>
        <c-col :span="24">
          <c-ptsmsg
zhoutian committed
482
            :model="model"
lianyang committed
483 484 485 486 487
            :argadr="{
              title: 'Presenting Bank Ref',
              grp: 'brdgrp',
              rol: 'prb',
            }"
488
            disabled1
lianyang committed
489 490 491
          >
          </c-ptsmsg>
        </c-col>
zhoutian committed
492

zhoutian committed
493
        <!-- S0000194 : 申请人 -->
lianyang committed
494 495
        <!-- S0000203 : 编号 -->
        <!-- <c-col :span="24">
zhoutian committed
496 497 498 499 500 501 502 503
            <c-form-item label="Applicant Ref" prop="brdgrp.apl.pts.ref">
                <c-input  v-model="model.brdgrp.apl.pts.ref" maxlength="16"  placeholder="请输入Applicant Ref"></c-input>
            </c-form-item>
       </c-col>
        <c-col :span="24">
            <c-form-item label="" prop="brdgrp.apl.pts.nam">
                <c-input  v-model="model.brdgrp.apl.pts.nam" maxlength="40"  placeholder="请输入"></c-input>
            </c-form-item>
zhoutian committed
504
       </c-col> -->
zhoutian committed
505
        <!-- S0000193 : 受益人 -->
lianyang committed
506 507
        <!-- S0000205 : 编号 -->
        <!-- <c-col :span="24">
zhoutian committed
508 509 510 511 512 513 514 515
        <c-form-item label="Beneficiary Ref" prop="brdgrp.ben.pts.ref">
            <c-input  v-model="model.brdgrp.ben.pts.ref" maxlength="16"  placeholder="请输入Beneficiary Ref"></c-input>
        </c-form-item>
       </c-col>
        <c-col :span="24">
            <c-form-item label="" prop="brdgrp.ben.pts.nam">
                <c-input  v-model="model.brdgrp.ben.pts.nam" maxlength="40" placeholder=""></c-input>
            </c-form-item>
zhoutian committed
516
       </c-col> -->
zhoutian committed
517
        <!-- S0000204 : 交单行 -->
lianyang committed
518 519
        <!-- S0000208 : 编号 -->
        <!-- <c-col :span="24">
zhoutian committed
520 521 522 523 524 525 526 527
            <c-form-item label="Presenting Bank Ref" prop="brdgrp.prb.pts.ref">
                <c-input  v-model="model.brdgrp.prb.pts.ref" maxlength="16"  placeholder="请输入Presenting Bank Ref"></c-input>
            </c-form-item>
       </c-col>
        <c-col :span="24">
            <c-form-item label="" prop="brdgrp.prb.pts.nam">
                <c-input  v-model="model.brdgrp.prb.pts.nam" maxlength="40"  placeholder=""></c-input>
            </c-form-item>
zhoutian committed
528
       </c-col> -->
lianyang committed
529
        <!-- S0000078 : Presented by -->
zhoutian committed
530
        <c-col :span="24">
lianyang committed
531 532 533 534
          <el-form-item label="Presented by" prop="brdgrp.rec.docprbrol">
            <c-select
              v-model="model.brdgrp.rec.docprbrol"
              style="width: 100%"
535
              placeholder="请选择 Presented by"
lianyang committed
536 537 538 539 540 541 542
              :code="codes.docprbrol"
            >
            </c-select>
          </el-form-item>
        </c-col>
        <c-col :span="24">
          <c-ptap1
zhoutian committed
543 544
            :model="model"
            :argadr="{
lianyang committed
545 546 547
              title: '',
              grp: 'brdgrp',
              rol: 'prb',
zhoutian committed
548 549
            }"
            :disabled="true"
潘际乾 committed
550
            @onSeainf="onSeainf" @onAplpDet="onPrbpDet"
lianyang committed
551 552 553 554 555 556 557 558 559 560 561
          >
          </c-ptap1>
        </c-col>
        <!-- SF000087 : Payer -->
        <c-col :span="24">
          <el-form-item label="Payer" prop="brdgrp.rec.payrol">
            <c-select
              v-model="model.brdgrp.rec.payrol"
              style="width: 100%"
              placeholder="请输入Payer"
              :code="codes.payrol"
zhoutian committed
562
            >
lianyang committed
563 564 565
            </c-select>
          </el-form-item>
        </c-col>
zhoutian committed
566
        <c-col :span="24">
567 568 569 570
          <c-ptap1
            :model="model"
            :argadr="{
              title: '',
潘际乾 committed
571 572
              grp: 'brtp',
              rol: 'oth',
573 574 575
            }"
            :disabled="true"
            disabled1
潘际乾 committed
576
            @onSeainf="onSeainf" @onAplpDet="onOthpDet"
577 578
          >
          </c-ptap1>
lianyang committed
579
          <!-- <c-ptap
zhoutian committed
580 581
            :model="model"
            :argadr="{
lianyang committed
582 583 584
              title: '',
              grp: 'brdgrp',
              rol: 'prb',
zhoutian committed
585 586 587 588 589
            }"
            :disabled="true"
            :isAdrblk="false"
            @onSeainf="onSeainf"
            @onAplpDet="onBenpDet"
lianyang committed
590 591 592 593 594
          >
          </c-ptap> -->
        </c-col>

        <!-- <c-col :span="12">
zhoutian committed
595 596 597 598
        <c-form-item label="External Key of Address" prop="brdgrp.prb.pts.extkey">
            <c-input  v-model="model.brdgrp.prb.pts.extkey" maxlength="16"  :placeholder="$t('other.please_enter')+'External Key of Address'"></c-input>
        </c-form-item>
       </c-col> -->
lianyang committed
599 600 601
      </c-col>

      <!-- <c-col :span="12">
zhoutian committed
602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628
        <c-form-item label="Drag  Drop Sender" prop="brtp.lidget.sdamod.dadsnd">
            <c-input  v-model="model.brtp.lidget.sdamod.dadsnd"  :placeholder="$t('other.please_enter')+'Drag  Drop Sender'"></c-input>
        </c-form-item>
       </c-col>
                
                  
       <c-col :span="12">
        <c-form-item label="" prop="brtp.lidget.sdamod.seainf">
            <c-input  v-model="model.brtp.lidget.sdamod.seainf"  :placeholder="$t('other.please_enter')+''"></c-input>
        </c-form-item>
       </c-col>
         
       
                  
      
       <c-col :span="12">
        <c-form-item label="Drag  Drop Sender" prop="brtp.recget.sdamod.dadsnd">
            <c-input  v-model="model.brtp.recget.sdamod.dadsnd"  :placeholder="$t('other.please_enter')+'Drag  Drop Sender'"></c-input>
        </c-form-item>
       </c-col>
       
                  
       <c-col :span="12">
        <c-form-item label="" prop="brtp.recget.sdamod.seainf">
            <c-input  v-model="model.brtp.recget.sdamod.seainf"  :placeholder="$t('other.please_enter')+''"></c-input>
        </c-form-item>
       </c-col> -->
lianyang committed
629 630 631 632

      <!-- S0000201 : 远期单据到期日 -->

      <!-- <c-col :span="12">
zhoutian committed
633 634 635
    <span  v-text="model.brtp.matp.mattxtlab"   data-path=".brtp.matp.mattxtlab" > </span>
</c-col>
                   -->
lianyang committed
636 637

      <!--                   
zhoutian committed
638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722
       <c-col :span="12">
        <c-form-item label="Drag  Drop Sender" prop="brtp.prbp.ptsget.sdamod.dadsnd">
            <c-input  v-model="model.brtp.prbp.ptsget.sdamod.dadsnd"  :placeholder="$t('other.please_enter')+'Drag  Drop Sender'"></c-input>
        </c-form-item>
       </c-col>
       <c-col :span="12">
        <c-form-item label="" prop="brtp.prbp.ptsget.sdamod.seainf">
            <c-input  v-model="model.brtp.prbp.ptsget.sdamod.seainf"  :placeholder="$t('other.please_enter')+''"></c-input>
        </c-form-item>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onPrbpDet">
             {{$t('ptsp.CF000081')}}
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-form-item label="名称" prop="brdgrp.prb.namelc">
            <c-input type="textarea" v-model="model.brdgrp.prb.namelc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'名称'" ></c-input>
        </c-form-item>
        </c-col>
                  
<c-col :span="12">
    <span  v-text="model.oridoclab"   data-path=".oridoclab" > </span>
</c-col>
                  
       
                  
       <c-col :span="12">
        <c-form-item label="Address Block" prop="brdgrp.prb.pts.adrblk">
            <c-input type="textarea" v-model="model.brdgrp.prb.pts.adrblk" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Address Block'" ></c-input>
        </c-form-item>
        </c-col>
                  
       <c-col :span="12">
        <c-form-item label="Chinese address" prop="brdgrp.prb.dbfadrblkcn">
            <c-input type="textarea" v-model="model.brdgrp.prb.dbfadrblkcn" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Chinese address'" ></c-input>
        </c-form-item>
        </c-col>
     
                  
     
       <c-col :span="12">
        <c-form-item label="地址" prop="brdgrp.prb.adrelc">
            <c-input type="textarea" v-model="model.brdgrp.prb.adrelc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'地址'" ></c-input>
        </c-form-item>
        </c-col>
                  
<c-col :span="12">
    <span  v-text="model.oriaddlab"   data-path=".oriaddlab" > </span>
</c-col>
                  
       <c-col :span="12">
        <c-form-item label="Balance" prop="oldbrdgrp.cbs.max2.amt">
            <c-input  v-model="model.oldbrdgrp.cbs.max2.amt"  :placeholder="$t('other.please_enter')+'Balance'"></c-input>
        </c-form-item>
       </c-col>
    
     
        
                  
       <c-col :span="12">
        <c-form-item label="Drag  Drop Sender" prop="brtp.othp.ptsget.sdamod.dadsnd">
            <c-input  v-model="model.brtp.othp.ptsget.sdamod.dadsnd"  :placeholder="$t('other.please_enter')+'Drag  Drop Sender'"></c-input>
        </c-form-item>
       </c-col>
                  
       <c-col :span="12">
        <c-form-item label="External Key of Address" prop="brtp.oth.pts.extkey">
            <c-input  v-model="model.brtp.oth.pts.extkey" maxlength="16"  :placeholder="$t('other.please_enter')+'External Key of Address'"></c-input>
        </c-form-item>
       </c-col>
                  
       <c-col :span="12">
        <c-form-item label="" prop="brtp.othp.ptsget.sdamod.seainf">
            <c-input  v-model="model.brtp.othp.ptsget.sdamod.seainf"  :placeholder="$t('other.please_enter')+''"></c-input>
        </c-form-item>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onOthpDet">
             {{$t('ptsp.CF000081')}}
        </c-button>
       </c-col>-->
lianyang committed
723 724 725 726 727

      <!-- SF000381 : Letter day -->
      <!-- SG000380 : days -->

      <!-- <c-col :span="12">
zhoutian committed
728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750
        <c-form-item label="名称" prop="brtp.oth.namelc">
            <c-input type="textarea" v-model="model.brtp.oth.namelc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'名称'" ></c-input>
        </c-form-item>
        </c-col>
                  
       <c-col :span="12">
        <c-form-item label="Address Block" prop="brtp.oth.pts.adrblk">
            <c-input type="textarea" v-model="model.brtp.oth.pts.adrblk" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Address Block'" ></c-input>
        </c-form-item>
        </c-col>
                  
       <c-col :span="12">
        <c-form-item label="Chinese address" prop="brtp.oth.dbfadrblkcn">
            <c-input type="textarea" v-model="model.brtp.oth.dbfadrblkcn" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Chinese address'" ></c-input>
        </c-form-item>
        </c-col>
                 
                  
       <c-col :span="12">
        <c-form-item label="地址" prop="brtp.oth.adrelc">
            <c-input type="textarea" v-model="model.brtp.oth.adrelc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'地址'" ></c-input>
        </c-form-item>
        </c-col> -->
lianyang committed
751 752 753 754

      <!-- S0000076 : Previous Drawings under this L/C -->

      <!-- <c-col :span="12">
zhoutian committed
755 756
	    <c-checkbox v-model="model.brtp.setnowflg">{{$t('brtdck.CF000094')}}</c-checkbox>
       </c-col>  -->
lianyang committed
757
    </c-row>
zhoutian committed
758 759 760
  </div>
</template>
<script>
lianyang committed
761
import Api from "~/service/Api";
zhoutian committed
762
import commonProcess from "~/mixin/commonProcess";
lianyang committed
763
import CodeTable from "~/config/CodeTable";
zhoutian committed
764 765
import Event from "~/model/Brtdck/Event";
import Ptap1 from "~/views/Public/Ptap1";
lianyang committed
766
// import Ptap from "~/views/Public/Ptap";
zhoutian committed
767
import Ptsmsg from "~/views/Public/Ptsmsg";
zhoutian committed
768 769

export default {
lianyang committed
770 771 772 773 774 775 776 777 778 779 780
  components: {
    "c-ptap1": Ptap1,
    // "c-ptap": Ptap,
    "c-ptsmsg": Ptsmsg,
  },
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
lianyang committed
781
  methods: { ...Event, onSeainf(){}},
lianyang committed
782 783
  created: function () {},
  computed: {
zhoutian committed
784 785 786 787
    flag() {
      return this.model.brdgrp.prb.pts.extkey == "";
    },
  },
lianyang committed
788
};
zhoutian committed
789 790
</script>
<style>
lianyang committed
791 792 793 794 795 796 797 798 799
.span_oridoclab {
  margin-right: 30px;
  height: 24px;
  color: #606266;
  line-height: 24px;
  font-size: 12px;
  float: right; 
  text-align: right;
}
zhoutian committed
800
</style>