import commonFunctions from '~/mixin/commonFunctions.js';
import commonDepend from "~/mixin/commonDepend";
export default {
	mixins: [commonFunctions, commonDepend],
	methods: {
		Onavbnam(){
      if(this.model.dedgrp.rec.avbwth == "O"){
        if(!this.model.dedgrp.blk.avbwthtxt){
          this.model.dedgrp.avbnam = "Any Bank"
        }else{
          this.model.dedgrp.avbnam = this.model.dedgrp.blk.avbwthtxt
        }
      }else{
        this.model.dedgrp.avbnam = this.model.dedgrp.avb.pts.jigomc
      }
    }
	},
}