All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.modules.sys.unitinfo.ctrl.unitinfo.add.js Maven / Gradle / Ivy

There is a newer version: 5.0.2101
Show newest version
define(function(require) {
	var Config = require('config');
	var Core = require('core/core');
	var Page = require('core/page');
	
	var UnitInfoAdd = Page.extend(function() {
		
		// @override
		this.object = {
		    // 默认管理业务
			unitType: 'A',
			
		    // 默认启用
			isValid: 'T'
		};
		
		// @override
		this.load = function(panel, data) {
			var form = panel.find('form');
			
			form.form('disableValidation').form('load', $.extend({}, this.object, {
				parentUnit: data.unitCode,parentUnitName:data.parentUnitName
			})).form('focus');
				
			if (!data.unitCode) {
				form.form('readonly', 'parentUnit');
			}
		};
		
		// @override
		this.submit = function(panel, data, closeCallback) {
			var form = panel.find('form');
			
			form.form('enableValidation');
			var isValid = form.form('validate');
			
			if (isValid) {
				this.newObject = form.form('value');
				var _self=this;
				form.form('ajax', {
					url: Config.ContextPath + 'system/unitinfo',
					method: 'post'
				}).then(function(d){
					_self.newObject=d;
					return require('loaders/cache/loader.system').loadAll();
				}).then(closeCallback);
			}
			
			return false;
		};
		
		// @override
		this.onClose = function(table, data) {
			var newObject = this.newObject;
			
			if (!newObject) return;
			
			// 展开节点
			if (data) {
				table.treegrid('expand', data.unitCode);
			}
			
			// 添加数据
//			table.treegrid('append', {
//				parent: newObject.parentUnit,
//				data: [newObject]
//			});
			// 刷新数据
			table.treegrid('reload');
		};
	});
	
	return UnitInfoAdd;
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy