diff --git a/client/modules/crm/src/views/calendar/modals/edit.js b/client/modules/crm/src/views/calendar/modals/edit.js index c8b39b1b7c..2bb47f6914 100644 --- a/client/modules/crm/src/views/calendar/modals/edit.js +++ b/client/modules/crm/src/views/calendar/modals/edit.js @@ -66,7 +66,7 @@ Espo.define('crm:views/calendar/modals/edit', 'views/modals/edit', function (Dep }, handleAccess: function (model) { - if (!this.getAcl().checkModel(model, 'edit')) { + if (this.id && !this.getAcl().checkModel(model, 'edit') || !this.id && !this.getAcl().checkModel(model, 'create')) { this.hideButton('save'); this.hideButton('fullForm'); this.$el.find('button[data-name="save"]').addClass('hidden');