We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It might happen, that a bank transaction was accidentally set to "ignored". The user might wish to "unignore" this.
Currently, this is possible by deleting the suggestion and resetting the status using sql:
update civicrm_bank_tx set status_id = 896, suggestions = null where id = 9999999;
Feature request: It would be nice to be able to reset the status in the UI.
The text was updated successfully, but these errors were encountered:
Sounds like a helpful feature. Where would you place this in the UI?
Also be aware, though that the status_id is not the same on all systems and must be looked up.
status_id
Sorry, something went wrong.
Where to place in the UI? a) in the review form (maybe another button?) b) maybe easier to implement: as a new link in the statement lines
Adds 'reset status' functionality. Implements Project60#383
873123c
Hi people. This sounds like a fantastic feature as I also got stuck on a request like that in the past.
I've worked on this via a small PR -> #392
Let me know what you think!
Merge pull request #392 from VangelisP/dev-383
3a67fb2
Adds 'reset status' functionality. Implements #383
No branches or pull requests
It might happen, that a bank transaction was accidentally set to "ignored". The user might wish to "unignore" this.
Currently, this is possible by deleting the suggestion and resetting the status using sql:
update civicrm_bank_tx set status_id = 896, suggestions = null where id = 9999999;
Feature request: It would be nice to be able to reset the status in the UI.
The text was updated successfully, but these errors were encountered: