Infsea.vue 14.7 KB
Newer Older
cyy committed
1
<template>
cyy committed
2
  <div class="eibs-tab">
3
    <!-- 持续展示区 -->
4 5 6 7 8 9 10 11 12 13 14
    <c-list-search
      @form-reset="handleReset('paramsForm')"
      @form-search="handleSearch"
    >
      <template v-slot="searchSlot">
        <el-form
          class="m-table-search-form"
          ref="paramsForm"
          label-position="right"
          label-width="110px"
          size="small"
15
          :model="model"
16 17
        >
          <c-row>
18
            <c-col :span="24">
19 20
              <c-col :span="8">
                <el-form-item
jianglong committed
21
                  label="单据编号"
22 23 24 25 26 27
                  prop="infcon.seaownref"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.seaownref"
                    maxlength="16"
wangna committed
28
                    placeholder="请输入单据编号"
29 30 31 32 33 34
                    style="width: 100%"
                  ></c-input>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
jianglong committed
35
                  label="创建日期"
36 37 38 39 40 41 42 43
                  prop="infcon.opndatfrom"
                  style="width: 100%"
                >
                  <c-col :span="11">
                    <c-date-picker
                      type="date"
                      v-model="model.infcon.opndatfrom"
                      style="width: 100%"
jianglong committed
44
                      placeholder="请选择起始日期"
45 46 47 48 49 50 51 52 53 54
                    ></c-date-picker>
                  </c-col>
                  <c-col :span="2" style="text-align: center">
                    <label style="display: inline-block; width: 100%">-</label>
                  </c-col>
                  <c-col :span="11">
                    <c-date-picker
                      type="date"
                      v-model="model.infcon.opndatto"
                      style="width: 100%"
jianglong committed
55
                      placeholder="请选择截至日期"
56 57 58 59 60 61
                    ></c-date-picker>
                  </c-col>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
jianglong committed
62
                  label="业务简略信息"
63 64 65 66 67 68
                  prop="infcon.nam"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.nam"
                    maxlength="40"
jianglong committed
69
                    placeholder="请输入业务简略信息"
70 71 72
                  ></c-input>
                </el-form-item>
              </c-col>
73
            </c-col>
74
          </c-row>
cyy committed
75

76
          <!-- 可控展示区 -->
77 78
          <c-row v-show="searchSlot.searchToggle">
            <c-col :span="24">
79 80
              <c-col :span="8">
                <el-form-item
jianglong committed
81
                  label="当事人参考号"
82 83 84 85 86 87
                  prop="infcon.searef"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.searef"
                    maxlength="16"
jianglong committed
88
                    placeholder="请输入请输入当事人参考号"
89
                    style="width: 100%"
90 91 92 93 94
                  ></c-input>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
jianglong committed
95
                  label="当事人名称"
96 97 98 99 100 101 102
                  prop="infcon.pty.nam"
                  style="width: 100%"
                >
                  <c-input
                    disabled
                    v-model="model.infcon.pty.nam"
                    maxlength="40"
jianglong committed
103
                    placeholder="请输入当事人名称"
104
                    style="width: 100%"
105 106 107 108 109
                  ></c-input>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
jianglong committed
110
                  label="当事人编号"
111 112 113 114 115 116
                  prop="infcon.pty.extkey"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.pty.extkey"
                    maxlength="24"
jianglong committed
117
                    placeholder="请输入当事人编号"
118 119 120
                  ></c-input>
                </el-form-item>
              </c-col>
121
            </c-col>
cyy committed
122

123
            <c-col :span="24">
124 125
              <c-col :span="8">
                <el-form-item
jianglong committed
126
                  label="当事人BIC编码"
127 128 129 130 131 132
                  prop="infcon.seapty"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.seapty"
                    maxlength="24"
jianglong committed
133
                    placeholder="请输入当事人BIC编码"
134 135 136 137 138
                  ></c-input>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
jianglong committed
139
                  label="客户经理"
140 141 142 143 144 145
                  prop="infcon.usr.extkey"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.usr.extkey"
                    maxlength="8"
jianglong committed
146
                    placeholder="请输入客户经理"
147 148 149 150 151 152
                    disabled
                  ></c-input>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
jianglong committed
153
                  label="当事人角色"
154 155 156 157
                  prop="infcon.searol"
                  style="width: 100%"
                >
                  <c-select
wangna committed
158
                    v-model="model.infcon.searol"
159
                    style="width: 100%"
jianglong committed
160
                    placeholder="请选择当事人角色"
161 162 163 164
                    :code="codes.rolall"
                  ></c-select>
                </el-form-item>
              </c-col>
165
            </c-col>
166

167
            <c-col :span="24">
168 169
              <c-col :span="8">
                <el-form-item
jianglong committed
170
                  label="单据状态"
171 172 173 174 175 176
                  prop="infcon.seasta"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.infcon.seasta"
                    style="width: 100%"
jianglong committed
177
                    placeholder="请选择单据状态"
178 179 180 181 182 183
                    :code="codes.seasta"
                  ></c-select>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
jianglong committed
184
                  label="币种"
185 186 187 188 189 190
                  prop="infcon.seacur"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.infcon.seacur"
                    style="width: 100%"
jianglong committed
191
                    placeholder="请选择币种"
192 193 194 195 196 197
                    :code="codes.curtxt1"
                  ></c-select>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
jianglong committed
198
                  label="金额区间"
199 200 201 202 203 204
                  prop="infcon.seaamtfr"
                  style="width: 100%"
                >
                  <c-col :span="11">
                    <c-input-currency
                      v-model="model.infcon.seaamtfr"
jianglong committed
205
                      placeholder="请输入金额下限"
206 207 208 209 210 211 212 213
                    ></c-input-currency>
                  </c-col>
                  <c-col :span="2" style="text-align: center">
                    <label style="display: inline-block; width: 100%">-</label>
                  </c-col>
                  <c-col :span="11">
                    <c-input-currency
                      v-model="model.infcon.seaamtto"
jianglong committed
214
                      placeholder="请输入金额上限"
215 216 217 218
                    ></c-input-currency>
                  </c-col>
                </el-form-item>
              </c-col>
219
            </c-col>
cyy committed
220

221
            <c-col :span="24">
222 223
              <c-col :span="8">
                <el-form-item
jianglong committed
224
                  label="单据类型"
225 226 227 228 229 230
                  prop="seadoctypcod"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.seadoctypcod"
                    style="width: 100%"
jianglong committed
231
                    placeholder="请选择单据类型"
232 233 234 235 236 237
                    :code="codes.docflg"
                  ></c-select>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
jianglong committed
238
                  label="发票编号"
239 240 241 242 243 244
                  prop="infcon.invnum"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.invnum"
                    maxlength="16"
jianglong committed
245
                    placeholder="请输入发票编号"
246 247 248 249
                  ></c-input>
                </el-form-item>
              </c-col>
              <c-col :span="8">
wangna committed
250 251 252 253 254 255
                <el-form-item
                  label=""
                  prop="infcon.forflg"
                  label-width="20px"
                  style="margin-left: 110px"
                >
256 257 258 259 260
                  <c-checkbox v-model="model.infcon.forflg"
                    >转卖单据</c-checkbox
                  >
                </el-form-item>
              </c-col>
261 262
            </c-col>
          </c-row>
263 264
        </el-form>
      </template>
cyy committed
265
    </c-list-search>
cyy committed
266

cyy committed
267 268
    <el-row>
      <c-col :span="24">
wangna committed
269 270 271 272 273
        <c-istream-table
          :list="stmData.data"
          :columns="stmData.columns"
          :showButtonFlg="true"
        >
274
          <el-table-column fixed="right" prop="op" width="150px">
275
            <template slot="header">
276
              <c-col :span="11" style="text-align: center"
277 278
                ><span>操作</span></c-col
              >
279
              <!-- <c-col :span="12" style="text-align: right"
280
                ><c-button icon="el-icon-s-tools"></c-button
281
              ></c-col> -->
cyy committed
282 283
            </template>
            <template slot-scope="scope">
284
              <el-popover
cyy committed
285 286 287 288 289 290
                placement="top-start"
                title="历史信息"
                width="800"
                trigger="click"
                :ref="'popover_' + scope.row.IDX"
              >
291 292 293 294 295 296 297 298 299 300 301 302 303
                <div
                  style="
                    text-align: right;
                    margin-top: -30px;
                    margin-right: 5px;
                    font-size: 16px;
                  "
                >
                  <span
                    class="el-icon-close"
                    @click="closeTrn('popover_' + scope.row.IDX)"
                  />
                </div>
cyy committed
304 305 306 307 308 309 310 311 312 313
                <c-istream-table
                  :list="trnData.data"
                  :columns="trnData.columns"
                >
                  <el-table-column prop="op" label="操作" width="0">
                    <template slot-scope="scope">
                      <c-button
                        style="margin-left: 0"
                        size="small"
                        type="primary"
314
                        @click="display(scope.row['INR'])"
cyy committed
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
                      >
                        查看详情
                      </c-button>
                    </template>
                  </el-table-column>
                </c-istream-table>
                <c-button
                  style="margin-left: 0"
                  size="small"
                  @click="getTrnInfo(scope.$index, scope.row)"
                  slot="reference"
                >
                  详情
                </c-button>
              </el-popover>
cyy committed
330
              <c-button
331
                style="margin-left: 5px"
cyy committed
332 333
                size="small"
                type="primary"
wangna committed
334 335 336
                @click="
                  getButtons(scope.row['单据编号'], scope.row['关闭日期'])
                "
cyy committed
337 338 339 340 341 342 343 344
              >
                处理
              </c-button>
            </template>
          </el-table-column>
        </c-istream-table>
      </c-col>
    </el-row>
cyy committed
345

346 347 348 349 350
    <m-busbtn
      ref="childs"
      :ownref="ownref"
      trnCode="letsel"
      ownrefPath="bedgrp"
351
      tabIndex="3"
352 353 354 355
      :model="letselModel"
      @onChoose="onChoose"
      >11</m-busbtn
    >
cyy committed
356
  </div>
cyy committed
357 358
</template>
<script>
359
import Api from "~/service/Api";
wangren committed
360
import commonProcess from "~/mixin/commonProcess";
361 362
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Infbed/Event";
cyy committed
363

364
import LetselModel from "~/model/Letsel";
wangna committed
365
import BusNavbar from "./BusNavbar";
366

cyy committed
367
export default {
368 369 370 371 372 373 374 375 376 377
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  components: { "m-busbtn": BusNavbar },
  data() {
    return {
      letselModel: new LetselModel().data,
      ownref: "",
      trnData: {
        columns: [
wangna committed
378 379 380 381
          '0 8 "交易ID" 100',
          '1 1 "编号" 150',
          '2 2 "交易名称" 195',
          '3 3 "条目" 80 4 7',
wangna committed
382 383 384 385 386 387 388 389
          {
            index: 4,
            position: 4,
            width: 100,
            pattern: "code",
            label: "状态",
            code: this.codes.relstaEN,
          },
wangna committed
390 391 392
          '5 5 "币种" 80',
          '6 6 "相关金额" 150 2 8 1 5',
          '7 7 "标识" 100',
393 394 395
        ],

        data: [],
cyy committed
396
      },
397 398 399
      stmData: {
        columns: [
          '1 14 "转卖日期" 150',
jianglong committed
400 401 402 403 404 405
          '2 1 "单据编号" 150',
          '3 2 "客户经理" 150',
          '4 3 "发票编号" 150',
          '5 15 "开立日期" 150',
          '6 16 "关闭日期" 150',
          '7 4 "申请人编号" 200',
406
          '8 5 "申请人名称" 150',
jianglong committed
407 408 409 410 411 412 413 414
          '9 6 "PTA主键" 150',
          '10 7 "受益人编号" 200',
          '11 8 "受益人名称" 150',
          '12 9 "受益人名称(中文)" 190',
          '13 10 "开证行编号" 200',
          '14 11 "开证行名称" 150',
          '15 12 "当事人编号" 150',
          '16 13 "购买银行" 150',
415 416 417
          '17 17 "单据金额币种" 150',
          '18 18 "单据金额" 150',
          '19 19 "开立金额币种" 150',
jianglong committed
418
          '20 20 "开立金额" 150',
419 420 421 422 423 424 425
        ],
        data: [],
      },
    };
  },
  methods: {
    ...Event,
wangna committed
426
    async getButtons(ownref, closedDate) {
427
      this.ownref = ownref;
wangna committed
428
      this.letselModel.clsflg = (closedDate ?? "").trim() === "" ? "" : "C";
429 430 431
      this.$refs.childs.initdialog = true;
      console.log("ownref:" + ownref);
    },
432
    async onChoose(code, prePageId) {
433
      //跳转交易
434
      // this.$router.history.push("/business/" + code);
435
      this.$router.push({ name: code.charAt(0).toUpperCase() + code.substring(1), params: { prePageId } });
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
      this.$refs.childs.initdialog = false;
    },
    async getDitSelInfo(code) {
      //跳转交易
      this.$router.history.push("/business/" + code);
      this.initdialog = false;
    },
    closeTrn(refId) {
      this.$refs[refId].doClose();
    },
    async getTrnInfo(idx, row) {
      this.model.infcon.objinr = row["INR"];
      this.model.ledgrp.rec.inr = row["INR"];
      this.model.infcon.chksubcon = "X";

      this.dialogTableVisible = true;
      let rtnmsg = await this.executeDefault("infcon.chksubcon");
cyy committed
453

454 455 456 457 458 459
      if ((rtnmsg.respCode = SUCCESS)) {
        this.trnData.data = rtnmsg.data.infcon_trnstm.rows;
      }
    },
  },
  created: function () {},
cyy committed
460
};
cyy committed
461 462 463
</script>
<style>
</style>