<template>
  <div class="eibs-tab">
    <c-col :span="24" style="padding-right: 20px">
      <c-col :span="22">
        <c-ptap-commons
          :cols="65"
          :rows="800"
          :minRows="20"
          :maxRows="20"
          :model="model"
          :extCodes="['lidgrp', 'blk']"
          lastModel="adlcnd"
          :charmod="3"
          title="Additional Conditions(47A)"></c-ptap-commons>
      </c-col>
      <c-col :span="22">
        <c-ptap-commons
          :cols="35"
          :rows="6"
          :minRows="6"
          :maxRows="6"
          :model="model"
          :extCodes="['lidgrp', 'blk']"
          lastModel="feetxt"
          :charmod="3"
          title="Details of Charges(71D)"></c-ptap-commons>
      </c-col>
      <c-col :span="22">
        <c-ptap-commons
          :cols="65"
          :rows="12"
          :minRows="6"
          :maxRows="6"
          :model="model"
          :extCodes="['lidgrp', 'blk']"
          lastModel="insbnk"
          :charmod="2"
          title="Instructions to Pay.,Accept., Negot. Bank(78)"></c-ptap-commons>
      </c-col>

      <c-col :span="24">
        <el-form-item label="" class="checkbox-left" prop="lidgrp.rec.spcbenflg">
          <c-checkbox
            v-model="model.lidgrp.rec.spcbenflg"
            true-label="X"
            false-label=""
            :disabled="this.model.lidgrp.blk.spcben != null && this.model.lidgrp.blk.spcben != ''"
            >Special Payment Cond.for Beneficiary</c-checkbox
          >
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="" class="checkbox-left" prop="lidgrp.rec.spcrcbflg">
          <c-checkbox
            v-model="model.lidgrp.rec.spcrcbflg"
            true-label="X"
            false-label=""
            :disabled="this.model.lidgrp.blk.spcrcb != null && this.model.lidgrp.blk.spcrcb != ''"
            >Special Payment Cond.for Bank Only</c-checkbox
          >
        </el-form-item>
      </c-col>
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
import CodeTable from "~/config/CodeTable";
import event from "../event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
  data() {
    return {};
  },
  methods: {},
};
</script>
<style>
.marginLable {
  padding-left: 160px;
}
</style>