Docpan.vue 26.5 KB
Newer Older
潘际乾 committed
1 2
<template>
    <div class="eibs-tab">
潘际乾 committed
3
        <c-col :span="24" style="">
潘际乾 committed
4
            <c-istream-table-docpan :list="stmData.data" :columns="stmData.columns">
liuxin committed
5
            <el-table-column label="Medium">
潘际乾 committed
6 7 8
                <template slot-scope="scope">
                    <c-select
                        v-model="
潘际乾 committed
9
                            scope.row.cortyp
潘际乾 committed
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
                        "
                        style="width: 100%"
                        disabled
                        placeholder="请选择"
                    >
                        <el-option
                            v-for="item in codes.doceotCortyp"
                            :key="item.value"
                            :label="item.label"
                            :value="item.value"
                        >
                        </el-option>
                    </c-select>
                </template>
            </el-table-column>
            <el-table-column label="报文格式">
                <template slot-scope="scope">
                    <c-select
                        v-model="
潘际乾 committed
29
                            scope.row.docsnf
潘际乾 committed
30 31 32
                        "
                        style="width: 100%"
                        placeholder="请选择"
33
                        @change="executeDefault('trnmod.trndoc.doccur.docsnf')"
潘际乾 committed
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
                    >
                        <el-option
                            v-for="item in codes.docsnf"
                            :key="item.value"
                            :label="item.label"
                            :value="item.value"
                        >
                        </el-option>
                    </c-select>
                </template>
            </el-table-column>
            <el-table-column label="语言" width="150%">
                <template slot-scope="scope">
                    <c-select
                        v-model="
潘际乾 committed
49
                            scope.row.docuil
潘际乾 committed
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
                        "
                        style="width: 100%"
                        placeholder="请选择"
                    >
                        <el-option
                            v-for="item in codes.uiltxt"
                            :key="item.value"
                            :label="item.label"
                            :value="item.value"
                        >
                        </el-option>
                    </c-select>
                </template>
            </el-table-column>
            <el-table-column label="传送方式">
                <template slot-scope="scope">
                    <c-select
                        v-model="
潘际乾 committed
68
                            scope.row.apf
潘际乾 committed
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
                        "
                        disabled
                        style="width: 100%"
                        placeholder="请选择"
                    >
                        <el-option
                            v-for="item in codes.apftxt"
                            :key="item.value"
                            :label="item.label"
                            :value="item.value"
                        >
                        </el-option>
                    </c-select>
                </template>
            </el-table-column>
            <el-table-column label="Or." width="65%">
                <template slot-scope="scope">
                    <c-input
                        v-model="
潘际乾 committed
88
                            scope.row.apfcpy1
潘际乾 committed
89 90 91 92 93 94 95 96 97 98 99 100
                        "
                        :readonly="true"
                        style="width: 100%"
                        placeholder="请选择"
                    >
                    </c-input>
                </template>
            </el-table-column>
            <el-table-column label="CC" width="65%">
                <template slot-scope="scope">
                    <c-input
                        v-model="
潘际乾 committed
101
                            scope.row.apfcpy2
潘际乾 committed
102 103 104 105 106 107 108 109 110 111 112 113
                        "
                        style="width: 100%"
                        placeholder="请选择"
                        
                    >
                    </c-input>
                </template>
            </el-table-column>
            <el-table-column label="">
                <template slot-scope="scope">
                    <c-select
                        v-model="
潘际乾 committed
114
                            scope.row.staflg
潘际乾 committed
115 116 117 118 119 120 121 122 123 124 125 126 127 128
                        "
                        style="width: 100%"
                        placeholder="请选择"
                    >
                        <el-option
                            v-for="item in codes.swttlx"
                            :key="item.value"
                            :label="item.label"
                            :value="item.value"
                        >
                        </el-option>
                    </c-select>
                </template>
            </el-table-column>
liushikai committed
129
            <el-table-column label="操作" width="115px" fixed="right">
潘际乾 committed
130
                <template slot-scope="scope">
131
                    <c-button
liushikai committed
132
                        type="primary"
liushikai committed
133
                        size="small"
潘际乾 committed
134
                        :disabled="
潘际乾 committed
135
                            scope.row
wangna committed
136
                                .pandsc == 'MT799' && model.didgrp && model.didgrp.rec &&
潘际乾 committed
137 138
                            model.didgrp.rec.elcflg == 'Y'
                        "
潘际乾 committed
139
                        @click="handleDisplay(scope.row.index, scope.row, model.trnmod.trndoc.doceot[scope.row.idx])"
liushikai committed
140 141
                        icon="el-icon-search"
                        style="margin-left:0"
142
                        ></c-button
潘际乾 committed
143
                    >
144
                    <c-button
liushikai committed
145
                        size="small"
liushikai committed
146 147 148
                        type="primary"
                        icon="el-icon-edit"
                        style="margin-left:0"
潘际乾 committed
149
                        @click="handleDetail(scope.row.index, scope.row)"
150
                        ></c-button
潘际乾 committed
151 152 153
                    >
                </template>
            </el-table-column>
liuxin committed
154 155 156 157 158 159 160
            </c-istream-table-docpan>
        </c-col>
        <c-col :span="12" style="margin-top:20px">
            <c-col :span="24">
                <el-form-item
                    label="国内证落款"
                    prop="trnmod.trndoc.advnam"
161
                    v-if="root.trnName=='DITCAN' || root.trnName == 'BDTSET' || root.trnName == 'TRTAME' || root.trnName == 'TRTSET' || root.trnName == 'DETOPN' || root.trnName == 'DETAME' || root.trnName == 'BFTDRV' || root.trnName == 'BFTSND' || root.trnName == 'BPTOPN' || root.trnName == 'BPTAME' || root.trnName == 'BPTSET' || root.trnName == 'BFTACC' || root.trnName == 'DFTAME' || root.trnName == 'DFTSET'"
liuxin committed
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
                >
                    <c-input
                        v-model="model.trnmod.trndoc.advnam"
                        maxlength="50"
                        placeholder="请输入"
                    ></c-input>
                </el-form-item>
            </c-col>
            <c-col :span="24">
                <el-form-item
                    label="修改申请人名称"
                    prop="trnmod.trndoc.amdapl"
                    v-if=" root.trnName== 'detame' || root.trnName == 'bftsnd'"
                >
                    <c-input
                        v-model="model.trnmod.trndoc.amdapl"
                        maxlength="100"
                        placeholder="请输入"
                    ></c-input>
                </el-form-item>
            </c-col>
            <c-col :span="24">
                <el-form-item
                    label="国内证通知书"
                    prop="trnmod.trndoc.advdoc"
                    v-if=" root.trnName== 'detopn' || root.trnName == 'detame'"
                >
                    <c-select
                        v-model="model.trnmod.trndoc.advdoc"
                        placeholder="请选择"
                        style="width: 100%"
                        :code="codes.trndoc_advdoc"
                    >
                    </c-select>
                </el-form-item>
            </c-col>
潘际乾 committed
198
        </c-col>
fukai committed
199
        <template>
潘际乾 committed
200 201 202 203 204 205 206 207 208 209
            <el-dialog
                :title="title"
                :visible.sync="centerDialogVisible"
                width="60%"
                center
            >
                <el-form label-width="100px" :model="dialog">
                    <c-row>
                        <c-col :span="12">
                            <c-col>
Wuyuqiu committed
210 211 212 213
                                <el-form-item label="per-medium">
                                    <c-select disabled v-model="dialog.cortyp" :code="codes.doceotCortyp">
                                    </c-select>
                                </el-form-item>
潘际乾 committed
214 215 216
                            </c-col>
                            <c-col>
                                <el-form-item label="Form Set">
Wuyuqiu committed
217
                                    <!-- <el-input
潘际乾 committed
218 219
                                        disabled
                                        v-model="dialog.cortyp"
Wuyuqiu committed
220 221 222
                                    /> -->
                                    <c-select disabled v-model="dialog.cortyp" :code="codes.doceotCortyp">
                                    </c-select>
潘际乾 committed
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
                                </el-form-item>
                            </c-col>
                            <c-col v-if="title != 'elcs.101.001.01'">
                                <el-form-item>
                                    <el-input
                                        disabled
                                        style="width: 150px"
                                        value="Original"
                                    />
                                    <el-input
                                        v-model="dialog.apfcpy1"
                                        style="width: 100px; margin-left: 20px"
                                    />
                                </el-form-item>
                                <el-form-item>
                                    <el-input
                                        disabled
                                        style="width: 150px"
                                        value="Customer Copy"
                                    />
                                    <el-input
                                        v-model="dialog.apfcpy2"
                                        style="width: 100px; margin-left: 20px"
                                    />
                                </el-form-item>
                                <el-form-item>
                                    <el-input
                                        disabled
                                        style="width: 150px"
                                        value="File Copy"
                                    />
                                    <el-input
                                        v-model="dialog.apfcpy3"
                                        style="width: 100px; margin-left: 20px"
                                    />
                                </el-form-item>
                                <el-form-item>
                                    <el-input
                                        disabled
                                        style="width: 150px"
                                        value="Internal Copy"
                                    />
                                    <el-input
                                        v-model="dialog.apfcpy4"
                                        style="width: 100px; margin-left: 20px"
                                    />
                                </el-form-item>
                            </c-col>
                        </c-col>

                        <c-col :span="12">
                            <el-form-item
                                label="Send Message to"
                                label-width="150px"
                            >
Wuyuqiu committed
278 279 280
                                <!-- <el-input disabled v-model="dialog.roladr" /> -->
                                <c-select disabled v-model="dialog.roladr" :code="codes.payrol">
                                </c-select>
潘际乾 committed
281 282
                            </el-form-item>
                            <el-form-item
283 284 285 286 287
                                label-width="150px"
                                v-if="title == 'elcs.101.001.01'"
                            > 
                              <c-fullbox>
                                <c-input
潘际乾 committed
288 289
                                    v-model="dialog.rcv.pts.extkey"
                                />
290 291
                                <template slot="footer">
                                    <c-button size="small" type="primary" icon="el-icon-search"
liushikai committed
292
                                    ></c-button
潘际乾 committed
293 294
                                >
                                <c-button size="small" type="primary">
liushikai committed
295
                                    详情
潘际乾 committed
296
                                </c-button>
297 298
                                </template>
                              </c-fullbox>
潘际乾 committed
299
                            </el-form-item>
300
                            <el-form-item v-else label="BIC" label-width="150px">
潘际乾 committed
301 302 303
                                <el-input v-model="dialog.rcv.pts.extkey" />
                            </el-form-item>
                            <el-form-item
304 305
                                v-if="title == 'elcs.101.001.01'||(title != 'elcs.101.001.01'&&dialog.rcv.pts.bankno!='')"
                                label="联行行号" label-width="150px"
潘际乾 committed
306 307 308 309 310 311
                            >
                                <el-input v-model="dialog.rcv.pts.bankno" />
                            </el-form-item>
                            <el-form-item label-width="30px">
                                <el-input
                                    :value="
312
                                        title == 'elcs.101.001.01'
潘际乾 committed
313 314 315 316 317 318 319 320 321 322
                                            ? dialog.rcv.namelc
                                            : dialog.rcv.pts.jigomc
                                    "
                                    :disabled="title != 'elcs.101.001.01'"
                                    type="textarea"
                                    :rows="2"
                                />
                                <br />
                                <el-input
                                    :value="
323
                                        title == 'elcs.101.001.01'
潘际乾 committed
324 325 326 327 328 329 330 331 332 333 334 335
                                            ? dialog.rcv.adrelc
                                            : dialog.rcv.pts.dizzhii
                                    "
                                    :disabled="title == 'MT799'"
                                    type="textarea"
                                    :rows="2"
                                />
                            </el-form-item>
                            <el-form-item label="Reference" label-width="100px">
                                <el-input disabled v-model="dialog.adrref" />
                            </el-form-item>
                            <el-form-item label="Medium" label-width="100px">
Wuyuqiu committed
336
                                <!-- <el-input
潘际乾 committed
337 338 339
                                    disabled
                                    style="width: 40%"
                                    v-model="dialog.cortyp"
Wuyuqiu committed
340 341 342 343
                                /> -->
                                <c-select disabled style="width: 40%" v-model="dialog.cortyp" :code="codes.doceotCortyp">
                                </c-select>
                                <!-- <el-input
潘际乾 committed
344 345 346
                                    disabled
                                    v-model="dialog.docuil"
                                    style="width: 40%; margin-left: 20px"
Wuyuqiu committed
347 348 349
                                /> -->
                                <c-select disabled style="width: 40%; margin-left: 20px" v-model="dialog.docuil" :code="codes.payuil">
                                </c-select>
潘际乾 committed
350 351 352 353 354 355 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 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
                            </el-form-item>
                        </c-col>

                        <c-col>&nbsp;</c-col>
                        <c-col :span="12" v-if="title != 'MT799'">
                            <el-form-item
                                label="Adress Amend"
                                label-width="120px"
                            >
                                <el-input
                                    type="textarea"
                                    v-model="dialog.adrblk"
                                    :rows="4"
                                />
                            </el-form-item>
                        </c-col>
                        <c-col :span="12" v-else>
                            <el-form-item label="BIC">
                                <el-input disabled v-model="dialog.adrbic" />
                            </el-form-item>
                            <el-form-item label="Authenticator"
                                ><el-input disabled v-model="dialog.adrbicaut"
                            /></el-form-item>
                            <el-form-item label="Priority"
                                ><el-input disabled v-model="dialog.msgpri"
                            /></el-form-item>
                        </c-col>
                        <c-col :span="12">
                            <el-form-item label-width="30px">
                                <el-table
                                    :data="dialog.rcv.ptyinftxt.rows"
                                    size="mini"
                                    stripe
                                    :border="true"
                                    empty-text=" "
                                    max-height="430px"
                                >
                                    <el-table-column label="Corr.Type" sortable>
                                    </el-table-column>
                                    <el-table-column label="Adressing" sortable>
                                    </el-table-column>
                                    <el-table-column
                                        label="Authentication"
                                        sortable
                                    >
                                    </el-table-column>
                                </el-table>
                            </el-form-item>
                        </c-col>
                        <c-col v-if="title != 'MT799'"
                            ><el-form-item label="Letter Date">
                                <el-date-picker
                                    type="date"
                                    v-model="dialog.docdat"
                                >
                                </el-date-picker
                            ></el-form-item>
                        </c-col>
                        <c-col
                            ><el-form-item label="Contact"
                                ><el-input v-model="dialog.ptcnam"
                            /></el-form-item>
                        </c-col>
                        <c-col :span="22"
                            ><el-form-item
                                :label="
                                    title == 'MT799'
                                        ? 'Sender to Rec. information'
                                        : 'Remark'
                                "
liuxin committed
420 421 422 423 424 425
                                >
                                <div v-if="title == 'MT799'">
                                    <el-input
                                        type="textarea"
                                        :rows="10"
                                        disabled
潘际乾 committed
426
                                        v-model="dialog.addtxt"
liuxin committed
427 428 429 430 431 432 433 434 435 436
                                    />
                                </div>
                                <div v-else>
                                    <el-input
                                        type="textarea"
                                        :rows="10"
                                        v-model="dialog.addtxt"
                                    />
                                </div>
                                </el-form-item>
潘际乾 committed
437 438
                        </c-col>
                        <c-col :span="2">
439
                            <c-button size="mini">... </c-button>
潘际乾 committed
440 441 442 443 444
                        </c-col>
                    </c-row>
                </el-form>
                <template #footer>
                    <span class="dialog-footer">
445 446
                        <c-button type="primary" @click="saveDialog"
                            >确 定</c-button
潘际乾 committed
447
                        >
448 449
                        <c-button @click="centerDialogVisible = false"
                            >取 消</c-button
潘际乾 committed
450 451 452 453 454 455 456 457
                        >
                    </span>
                </template>
            </el-dialog>
        </template>
    </div>
</template>
<script>
wangren committed
458
import commonProcess from "~/mixin/commonProcess";
潘际乾 committed
459 460
import Api from "~/service/Api";
import Utils from "~/utils/index";
Wuyuqiu committed
461
import DocUtils from "~/utils/DocUtils";
潘际乾 committed
462
export default {
潘际乾 committed
463 464 465 466 467 468 469 470 471 472 473
    inject: ['root'],
    props: ["model", "codes"],
    mixins: [commonProcess],
    data() {
        return {
            index: 0,
            title: "",
            dialog: {
                rcv: {
                    pts: {},
                    ptyinftxt: {},
474

潘际乾 committed
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
                },
            },
            centerDialogVisible: false,
            stmData: {
                columns: [
                    //注释的已改成静态
                    "role 收报人 80px",
                    "pandsc 描述 260px",
                    //"cortyp 类型",
                    //"docsnf 报文格式",
                    //"docuil 语言",
                    //"apf 传送方式"
                ],
                data: [],
            },
        };
潘际乾 committed
491
    },
潘际乾 committed
492 493 494 495 496 497 498 499 500 501 502 503 504
    watch: {
        "model.trnmod.trndoc.doceot": {
            handler(val, oldVal) {
                var stm = [];
                for (let i = 0; i < val.length; i++) {
                    if (val[i].role != "") {
                        val[i]['idx'] = i
                        stm.push(val[i]);
                    }
                }
                this.stmData.data = stm
            },
            immediate: true
潘际乾 committed
505 506
        }
    },
潘际乾 committed
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
    methods: {
        saveDialog() {
            this.centerDialogVisible = false;
            this.model.trnmod.trndoc.doceot.splice(this.index, 1, this.dialog);
            this.executeRule("trnmod.trndoc.doccur.butaddok").then(res => {
                if(res.respCode==SUCCESS){
                    //TODO

                }else{
                    this.$notify.error({ title: '错误', message: '服务请求失败!' });
                }
            })
        },
        async handleDisplay(index, row,doceot){
            //后续要根据快照模式切换请求方式
            let cortyp = row.cortyp
            let docuil = doceot.docuil;
            let docnam = doceot.docnam||'';
            docnam = docnam.substr(docnam.indexOf("\\")+1).toLowerCase().replaceAll("\\","_");
            let rtnmsg
            // if (cortyp == 'SWT' || cortyp == 'FMT' || cortyp == 'CMT') {
            //     // this.model.setmod.msgmod.doccod = row.id
            //     rtnmsg = await Api.post(`${this.requestPrefix}/msgmod_butshw`, this.wrapper())
            // } else {
            //     // this.model.trnmod.trndoc.doccod = row.id
            //     // this.model.trnmod.trndoc.cortyp = cortyp
                
            // }
            const params = {
                index: row.idx
            }
            rtnmsg = await Api.post(`${this.requestPrefix}/executeDocpan`, this.wrapper(params))
            if (rtnmsg.respCode == SUCCESS) {
                if (cortyp == 'SWT' || cortyp == 'FMT' || cortyp == 'CMT') {
                    let viewurl = rtnmsg.data.setmod_msgmod_docpth;
                    this.viewurl = viewurl
                    this.title = "报文"
                    //window.open(viewurl, 'newwindow', 'height=1200,width=800,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no');
                }
                else if (cortyp == 'ELC') {
                    Modal.info({
                        title: '电证报文', content: <div style={{ height: 400, overflow: 'auto' }}><ELCMessage mty={row.id} message={rtnmsg.data["\\trnmod\\trndoc\\docinf"]} /></div>,
                        width: 1000,
                    })
                }
                else {
                    // let url = rtnmsg.data.trnmod_trndoc_smh_docpth;
                    this.title = "面函"
                    let viewurl = "/#/docpan/show";
                    let XMLdata;
                    if (row.pandsc.startsWith("elcs.")) {
                        window.sessionStorage.docXML = ''
                        window.sessionStorage.docTXT = ''
                        rtnmsg.data.trnmod_trndoc_doceot[row.idx].doctxt.rows.forEach(element => {
                            window.sessionStorage.docTXT += element + "\r\n"
                        });
                    }
                    else if (row.pandsc == "MT799") {
                        window.sessionStorage.docTXT = ''
                        XMLdata = rtnmsg.data.litbenl1blk
                    }
                    else{
                        //参考后台Doceot.butshw order=1000
                        let execution = 'P', structure = 'l'
                        let attr = DocUtils.getDocAttribute(docnam,structure,execution)
                        console.log(attr);
                        window.sessionStorage.docTXT = ''
                        window.sessionStorage.docXML = rtnmsg.data[attr];
                        window.sessionStorage.docuil = doceot.docuil;
                    }
                    // console.log( window.sessionStorage.docTXT);
                    // console.log( window.sessionStorage.docXML);
                    window.open(viewurl, 'newwindow', 'height=1200,width=800,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no');
                }
                this.dialogOpen = true
            }
            else {
                this.$notify.error({ title: '错误', message: '服务请求失败!' })
            }
        },
        async handleDetail(index, row) {
            const params = {
                index: row.idx
            }
            let rtnmsg = await Api.post(`${this.requestPrefix}/executeDocpanDetail`, this.wrapper(params))
            if (rtnmsg.respCode == SUCCESS) {
                this.title = row.pandsc
                this.centerDialogVisible = true,
                this.updateModel(rtnmsg.data);
                this.dialog = this.model.trnmod.trndoc.doceot[row.idx]
                this.index = row.idx
            }
hulei committed
599
        }
Wuyuqiu committed
600 601
  },
  created: function () {},
潘际乾 committed
602 603 604 605
};
</script>
<style>
</style>