Eu tenho um app de Reembolso, onde a pessoa preenche um formulario com os dados, e esses dados ficam em uma aba diferente apenas para o administrador, só que eu quero quero criar uma ação onde quando o administrador finaliza o reembolso ele exclui a linha e transferir esses dados para outra tabela de “reembolsos finalizados”
One way to do it is hiding the row instead of deleting it.
Add a new column to the refunds table “is deleted” when you want to delete the row just mark the new column with an x.
On the front end add a filter to the collection where “is deleted” is empty.
To hide the row and move it at the same time you could use a custom action on a button or collection action.
First set column value column “is deleted” followed by an add row to your archive table
Does it have to be moved though? Can’t you just have a boolean column to determine the refund’s status like what Eric suggested above?