8622-testToMaster #1411

Merged
alexm merged 746 commits from 8622-testToMaster into master 2025-02-18 07:54:25 +00:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 652e5c1838 - Show all commits
src/pages/Entry/Card

View File

@ -109,8 +109,10 @@ const showEntryReport = () => {
};
const transferEntry = async () => {
await axios.post(`Entries/${route.params.id}/transfer`);
let response = await axios.post(`Entries/${route.params.id}/transfer`);
notify('globals.dataSaved', 'positive');
const url = `#/entry/${response.data.newEntryFk[0].newEntryFk}/summary`;
window.open(url, '_blank');
}
const openDialog = () => {