index.js 526 Bytes
import Api from '~/service/Api';
import commonFunctions from '~/mixin/commonFunctions.js';
import Utils from "~/utils/index";
export default {
	mixins: [commonFunctions],
	methods: {
		newmatdatChange(){
			if(this.model.liaall&&this.model.liaall.liaallg){
				for(var i=0;i<this.model.liaall.liaallg.length;i++){
					if(this.model.liaall.liaallg[i].cbtpfx=="AKZ"){
						this.model.liaall.liaallg[i].modifySet.push("matdat");
						this.model.bddgrp.rec.matdat = this.model.newmatdat;
						break;
					}
				}
			}
		}
	}
}