Can anyone tell me how to remove Set Held and Set Not Held from meeting modal?
Thanks
Thanks
{
"modalViews": {
"detail":"custom:views/meeting/modals/detail"
}
}
define('custom:views/meeting/modals/detail', ['views/modals/detail', 'lib!moment'],
function (Dep, moment) {
return Dep.extend({
duplicateAction: true,
setupAfterModelCreated: function () {
Dep.prototype.setupAfterModelCreated.call(this);
let buttonData = this.getAcceptanceButtonData();
this.addButton({
name: 'setAcceptanceStatus',
html: buttonData.html,
hidden: this.hasAcceptanceStatusButton(),
style: buttonData.style,
className: 'btn-text',
pullLeft: true,
}, 'cancel');
this.addDropdownItem({
name: 'sendInvitations',
text: this.translate('Send Invitations', 'labels', 'Meeting'),
hidden: !this.isSendInvitationsToBeDisplayed(),
});
this.initAcceptanceStatus();
this.on('switch-model', (model, previousModel) => {
this.stopListening(previousModel, 'sync');
this.initAcceptanceStatus();
});
this.on('after:save', () => {
if (this.hasAcceptanceStatusButton()) {
this.showAcceptanceButton();
} else {
this.hideAcceptanceButton();
}
if (this.isSendInvitationsToBeDisplayed()) {
this.showActionItem('sendInvitations');
} else {
this.hideActionItem('sendInvitations');
}
});
this.listenTo(this.model, 'sync', () => {
if (this.isSendInvitationsToBeDisplayed()) {
this.showActionItem('sendInvitations');
return;
}
this.hideActionItem('sendInvitations');
});
this.listenTo(this.model, 'after:save', () => {
if (this.isSendInvitationsToBeDisplayed()) {
this.showActionItem('sendInvitations');
return;
}
this.hideActionItem('sendInvitations');
});
},
controlRecordButtonsVisibility: function () {
Dep.prototype.controlRecordButtonsVisibility.call(this);
},
hasSetStatusButton: function () {
},
initAcceptanceStatus: function () {
if (this.hasAcceptanceStatusButton()) {
this.showAcceptanceButton();
} else {
this.hideAcceptanceButton();
}
this.listenTo(this.model, 'sync', () => {
if (this.hasAcceptanceStatusButton()) {
this.showAcceptanceButton();
} else {
this.hideAcceptanceButton();
}
});
},
getAcceptanceButtonData: function () {
let acceptanceStatus = this.model.getLinkMultipleColumn('users', 'status', this.getUser().id);
let text;
let style = 'default';
let iconHtml = null;
if (acceptanceStatus && acceptanceStatus !== 'None') {
text = this.getLanguage().translateOption(acceptanceStatus, 'acceptanceStatus', this.model.entityType);
style = this.getMetadata()
.get(['entityDefs', this.model.entityType,
'fields', 'acceptanceStatus', 'style', acceptanceStatus]);
if (style) {
let iconClass = ({
'success': 'fas fa-check-circle',
'danger': 'fas fa-times-circle',
'warning': 'fas fa-question-circle',
})[style];
iconHtml = $('<span>')
.addClass(iconClass)
.addClass('text-' + style)
.get(0).outerHTML;
}
} else {
text = typeof acceptanceStatus !== 'undefined' ?
this.translate('Acceptance', 'labels', 'Meeting') :
' ';
}
let html = this.getHelper().escapeString(text);
if (iconHtml) {
html = iconHtml + ' ' + html;
}
return {
style: style,
text: text,
html: html,
};
},
showAcceptanceButton: function () {
this.showActionItem('setAcceptanceStatus');
if (!this.isRendered()) {
this.once('after:render', this.showAcceptanceButton, this);
return;
}
let data = this.getAcceptanceButtonData();
let $button = this.$el.find('.modal-footer [data-name="setAcceptanceStatus"]');
$button.html(data.html);
$button.removeClass('btn-default');
$button.removeClass('btn-success');
$button.removeClass('btn-warning');
$button.removeClass('btn-info');
$button.removeClass('btn-primary');
$button.removeClass('btn-danger');
$button.addClass('btn-' + data.style);
},
hideAcceptanceButton: function () {
this.hideActionItem('setAcceptanceStatus');
},
hasAcceptanceStatusButton: function () {
if (!this.model.has('status')) {
return false;
}
if (!this.model.has('usersIds')) {
return false;
}
if (~['Held', 'Not Held'].indexOf(this.model.get('status'))) {
return false;
}
if (!~this.model.getLinkMultipleIdList('users').indexOf(this.getUser().id)) {
return false;
}
return true;
},
actionSetAcceptanceStatus: function () {
this.createView('dialog', 'crm:views/meeting/modals/acceptance-status', {
model: this.model,
}, (view) => {
view.render();
this.listenTo(view, 'set-status', (status) => {
this.hideAcceptanceButton();
Espo.Ajax.postRequest(this.model.entityType + '/action/setAcceptanceStatus', {
id: this.model.id,
status: status,
}).then(() => {
this.model.fetch()
.then(() => {
setTimeout(() => {
this.$el.find(`button[data-name="setAcceptanceStatus"]`).focus();
}, 50)
});
});
});
});
},
isSendInvitationsToBeDisplayed: function () {
if (~['Held', 'Not Held'].indexOf(this.model.get('status'))) {
return false;
}
let dateEnd = this.model.get('dateEnd');
if (
dateEnd &&
this.getDateTime().toMoment(dateEnd).isBefore(moment.now())
) {
return false;
}
if (!this.getAcl().checkModel(this.model, 'edit')) {
return false;
}
let userIdList = this.model.getLinkMultipleIdList('users');
let contactIdList = this.model.getLinkMultipleIdList('contacts');
let leadIdList = this.model.getLinkMultipleIdList('leads');
if (!contactIdList.length && !leadIdList.length && !userIdList.length) {
return false;
}
return true;
},
actionSendInvitations: function () {
Espo.Ui.notify(' ... ');
this.createView('dialog', 'crm:views/meeting/modals/send-invitations', {
model: this.model,
}).then(view => {
Espo.Ui.notify(false);
view.render();
this.listenToOnce(view, 'sent', () => this.model.fetch());
});
},
});
});
{
"view": "custom:views/dashlets/activities"
}
define('custom:views/dashlets/activities', ['crm:views/dashlets/activities'], function(Dep) {
return Dep.extend({
rowActionsView: 'custom:views/record/row-actions/activities-dashlet'
});
});
define('custom:views/record/row-actions/activities-dashlet', ['views/record/row-actions/view-and-edit'], function (Dep) {
return Dep.extend({
getActionList: function () {
var actionList = Dep.prototype.getActionList.call(this);
var scope = this.model.entityType;
actionList.forEach((item) => {
item.data = item.data || {};
item.data.scope = this.model.entityType;
});
if (scope === 'Task') {
if (
this.options.acl.edit &&
!['Completed', 'Canceled'].includes(this.model.get('status'))
) {
actionList.push({
action: 'setCompleted',
label: 'Complete',
data: {
id: this.model.id
}
});
}
}
if (this.options.acl.edit) {
actionList.push({
action: 'quickRemove',
label: 'Remove',
data: {
id: this.model.id,
scope: this.model.entityType
}
});
}
return actionList;
},
});
});
Comment