vt7 dev release - Mail Converter Bug Can't Delete Roule
Mail Converter doesn´t allow to delete any roule
It show the popup "Are you sure you want to delete?" but roule is not deleted
Designs
- Show closed items
Activity
-
Newest first Oldest first
-
Show all activity Show comments only Show history only
- Manuel Title changed from vt7 dev release - Mail Converter Bug Can't Delete Rule to vt7 dev release - Mail Converter Bug Can't Delete Roule
Title changed from vt7 dev release - Mail Converter Bug Can't Delete Rule to vt7 dev release - Mail Converter Bug Can't Delete Roule
Code is wrong in "MailConverter.js"(/layouts/v7/modules/Settings/MailConverter/resources)
Line 28 should be app.request.post({url:url}).then(function (err, data) {
- Contributor
@satish.dvnk Do you know if this has been fixed? I can't see any related commits and a customer has just reported this bug to me too?
- Contributor
@satish.dvnk, @john.westbrookcomputers.co.uk patch appears to be correct; the triggerDeleteRule function is set to use a GET request rather than a POST. If I change it to use POST it works.
- Contributor
thanks @lord_alan for the hint. We will check and update you whether it was the fix so that you can create merge request
Open this file crm71/layouts/v7/modules/Settings/MailConverter/resources/MailConverter.js
search this function triggerDeleteRule and replce this line
app.request.get({url: url}).then(function (err, data) {
to
app.request.post({url: url}).then(function (err, data) {
- Prasad mentioned in issue #622 (closed)
mentioned in issue #622 (closed)
- Prasad mentioned in issue #854 (closed)
mentioned in issue #854 (closed)