Sprp.vue 809 Bytes
<template>
  <div class="eibs">
    <c-col :span="24" style="padding-top: 20px">

      <c-col :span="24">
        <c-ptap-commons  :cols="65" :rows="800" :minRows="30" :maxRows="800" :model="model"
                         @handleChange="spcrcbChange"
                         :extCodes="['ledgrp','blk']"  lastModel="spcrcb" title="Special Payment Cond. for Bank only (49H) ">
        </c-ptap-commons>
      </c-col>

    </c-col>
  </div>
</template>
<script>

import event from "../event";
import commonDepend from "~/mixin/commonDepend";


export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event,commonDepend],
  data() {
    return {};
  },

  methods:{
    spcrcbChange(){
      this.customAddModify(this.model.ledgrp.blk,"spcrcb");
    }
  },
};
</script>
<style>
</style>