This commit is contained in:
parent
a149c37fb2
commit
652e5c1838
|
@ -109,8 +109,10 @@ const showEntryReport = () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const transferEntry = async () => {
|
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');
|
notify('globals.dataSaved', 'positive');
|
||||||
|
const url = `#/entry/${response.data.newEntryFk[0].newEntryFk}/summary`;
|
||||||
|
window.open(url, '_blank');
|
||||||
}
|
}
|
||||||
|
|
||||||
const openDialog = () => {
|
const openDialog = () => {
|
||||||
|
|
Loading…
Reference in New Issue