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

META-INF.resources.modules.sys.userinfo.ctrl.userinfo.unit.edit.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 UserInfoUnitAdd = require('./userinfo.unit.add');

  // 编辑机构用户
  return UserInfoUnitAdd.extend(function () {
    var _self = this;

    // @override
    this.load = function (panel, data) {

      // 保存原始信息
      this.oldData = data;
      // this.$findUp('initUnitCombotree')($('input[name=unitCode]', panel));
      $('input[name=unitCode]')
          .attr('target', 'unit')
          .combotree({
            target: 'unit'
          });

      var form = panel.find('form');
      Core.ajax(Config.ContextPath + 'system/userunit/' + data.userUnitId, {
        method: 'get'
      }).then(function (data) {
        _self.data = data;

        form.form('disableValidation').form('load', data)
          .form('readonly', 'unitCode')
          .form('focus');
        if (data.isPrimary === 'T') {
          $("input[name='isPrimary']").attr("disabled", true);
        }
      });
    };

    // @override
    this.submit = function (panel, data, closeCallback) {
      var form = panel.find('form');

      form.form('enableValidation');
      var isValid = form.form('validate');

      if (isValid) {
        // 原始职位和岗位
        data.oldUserStation = this.oldData.userStation;
        data.oldUserRank = this.oldData.userRank;
        form.form('ajax', {
          url: Config.ContextPath + 'system/userunit/' + data.userUnitId,
          method: 'put',
          data: data
        }).then(function () {
          return require('loaders/cache/loader.system').loadAll()
        }).then(function () {
          _self.parent.table.datagrid("reload");
          closeCallback();
        });
      }

      return false;
    };
  });

});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy