Tuesday, June 11, 2024
2 changes · saas-17.3
Resolved issues and error corrections
Cancelling a signing request from a template now returns users smoothly instead of showing an error message. The update also keeps signer information aligned with the current user system, reducing disruptions in electronic signature workflows.
Original PR description
Before this commit, when we canceled a sign request, a traceback would occurs: ``` UncaughtPromiseError > TypeError Uncaught Promise > Cannot read properties of undefined (reading 'doAction') TypeError: Cannot read properties of undefined (reading 'doAction') ``` Even if goBackToKanban is correctly binded, controlPanelProps was not calling it properly. taskid: 3932003
The Aged Receivable audit view has been corrected after a prior accounting report change accidentally left one outdated date filter behind. This restores the ability to review receivables and payables audit details reliably.
Original PR description
When removing the date_scope normal in 6e607e662dd2, we missed an occurrence of it in the Aged Receivable report. As a result, auditing the Aged Receivable is currently broken:  Solution: since this domain is on Accounts Receivable / Accounts Payable, which are Balance Sheet accounts, the `normal` date_scope is equivalent to `from_beginning` in this case. taskid: 3177283