diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 55ec55a2..e373968c 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -888,7 +888,7 @@ BUILD 8.0.0-beta.0.14 CHANGES OF NOTE - fixed bug in search form that was causing type to be sticky so if came from the search menu item of a warehouse for example it would stick to warehouses even if set to something else - Changed search form object type list to restrict to core business object types that the user is allowed to view full records, previously was just all objects even unsearchable ones - Updated vue-currency input several releases to that latest compatible version which is the locale aware basis for the custom decimal, currency and percentage controls - +- fixed bug in PO clicking New would navigate to a new project not a po diff --git a/ayanova/src/views/inv-purchase-order.vue b/ayanova/src/views/inv-purchase-order.vue index d1d351e9..227a12aa 100644 --- a/ayanova/src/views/inv-purchase-order.vue +++ b/ayanova/src/views/inv-purchase-order.vue @@ -1749,7 +1749,7 @@ async function clickHandler(menuItem) { break; case "new": m.vm.$router.push({ - name: "project-edit", + name: "inv-purchase-order", params: { recordid: 0 } }); break;