template ui improve

This commit is contained in:
yuri
2016-12-21 15:56:15 +02:00
parent ae82ebbf74
commit 41c566e227
3 changed files with 102 additions and 2 deletions

View File

@@ -1,7 +1,8 @@
{
"controller": "controllers/record",
"recordViews": {
"detail": "Template.Record.Detail"
"detail": "views/template/record/detail",
"edit": "views/template/record/edit"
},
"formDependency": {
"printFooter": {

View File

@@ -30,7 +30,13 @@ Espo.define('views/template/record/detail', 'views/record/detail', function (Dep
return Dep.extend({
duplicateAction: true
setup: function () {
Dep.prototype.setup.call(this);
if (!this.model.isNew()) {
this.setFieldReadOnly('entityType');
}
}
});

View File

@@ -0,0 +1,93 @@
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko
* Website: http://www.espocrm.com
*
* EspoCRM is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* EspoCRM is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with EspoCRM. If not, see http://www.gnu.org/licenses/.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU General Public License version 3.
*
* In accordance with Section 7(b) of the GNU General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
Espo.define('views/template/record/edit', 'views/record/edit', function (Dep) {
return Dep.extend({
setup: function () {
Dep.prototype.setup.call(this);
if (!this.model.isNew()) {
this.setFieldReadOnly('entityType');
}
if (this.model.isNew()) {
var storedData = {};
this.listenTo(this.model, 'change:entityType', function (model) {
var entityType = this.model.get('entityType');
if (!entityType) {
this.model.set('header', '');
this.model.set('body', '');
return;
}
if (entityType in storedData) {
this.model.set('header', storedData[entityType].header);
this.model.set('body', storedData[entityType].body);
return;
}
var header = this.getMetadata().get(['entityDefs', 'Template', 'defaultTemplates', entityType, 'header']);
var body = this.getMetadata().get(['entityDefs', 'Template', 'defaultTemplates', entityType, 'body']);
if (header) {
this.model.set('header', header);
} else {
this.model.set('header', '');
}
if (body) {
this.model.set('body', body);
} else {
this.model.set('body', '');
}
}, this);
this.listenTo(this.model, 'change', function (e, o) {
if (!o.ui) return;
if (!this.model.hasChanged('header') && !this.model.hasChanged('body')) {
return;
}
var entityType = this.model.get('entityType');
if (!entityType) return;
storedData[entityType] = {
header: this.model.get('header'),
body: this.model.get('body')
};
}, this);
}
}
});
});