scheduler on edit-small

This commit is contained in:
Yuri Kuznetsov
2022-11-26 19:21:23 +02:00
parent ae643c5a28
commit d4511e3983
6 changed files with 136 additions and 5 deletions
@@ -5,8 +5,9 @@
"detail":"crm:views/call/detail"
},
"recordViews":{
"list":"crm:views/call/record/list",
"detail":"crm:views/call/record/detail"
"list": "crm:views/call/record/list",
"detail": "crm:views/call/record/detail",
"editSmall": "crm:views/call/record/edit-small"
},
"modalViews": {
"detail":"crm:views/meeting/modals/detail"
@@ -71,6 +72,14 @@
"disabled": true,
"order": 1
}
],
"editSmall": [
{
"name": "scheduler",
"label": "Scheduler",
"view": "crm:views/meeting/record/panels/scheduler",
"order": 1
}
]
},
"filterList": [
@@ -100,6 +109,11 @@
"selectHandler": "handlers/select-related/same-account-many"
}
},
"additionalLayouts": {
"bottomPanelsEditSmall": {
"type": "bottomPanelsEditSmall"
}
},
"dynamicLogic":{
"fields":{
"reminders": {
@@ -6,7 +6,8 @@
},
"recordViews":{
"list":"crm:views/meeting/record/list",
"detail": "crm:views/meeting/record/detail"
"detail": "crm:views/meeting/record/detail",
"editSmall": "crm:views/meeting/record/edit-small"
},
"modalViews": {
"detail":"crm:views/meeting/modals/detail"
@@ -76,6 +77,14 @@
"view": "crm:views/meeting/record/panels/scheduler",
"order": 1
}
],
"editSmall": [
{
"name": "scheduler",
"label": "Scheduler",
"view": "crm:views/meeting/record/panels/scheduler",
"order": 1
}
]
},
"filterList": [
@@ -105,6 +114,11 @@
"selectHandler": "handlers/select-related/same-account-many"
}
},
"additionalLayouts": {
"bottomPanelsEditSmall": {
"type": "bottomPanelsEditSmall"
}
},
"dynamicLogic":{
"fields":{
"reminders": {
@@ -0,0 +1,34 @@
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2022 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
* Website: https://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.
************************************************************************/
define('crm:views/call/record/edit-small', ['views/record/edit'], function (Dep) {
return Dep.extend({
});
});
@@ -0,0 +1,35 @@
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2022 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
* Website: https://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.
************************************************************************/
define('crm:views/meeting/record/edit-small', ['views/record/edit'], function (Dep) {
return Dep.extend({
});
});
@@ -0,0 +1,35 @@
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2022 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
* Website: https://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.
************************************************************************/
define('views/admin/layouts/bottom-panels-edit-small', ['views/admin/layouts/bottom-panels-edit'], function (Dep) {
return Dep.extend({
viewType: 'editSmall',
});
});
+1 -2
View File
@@ -26,11 +26,10 @@
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
define('views/record/edit-small', 'views/record/edit', function (Dep) {
define('views/record/edit-small', ['views/record/edit'], function (Dep) {
return Dep.extend({
bottomView: null,
});
});