Rename /journal/{edit,new}-transaction etc. to /journal/{edit,new} for consistency
This commit is contained in:
parent
e86ec5291c
commit
03897430aa
@ -36,8 +36,8 @@ async function initApp() {
|
|||||||
{ path: '/chart-of-accounts', name: 'chart-of-accounts', component: () => import('./pages/ChartOfAccountsView.vue') },
|
{ path: '/chart-of-accounts', name: 'chart-of-accounts', component: () => import('./pages/ChartOfAccountsView.vue') },
|
||||||
{ path: '/general-ledger', name: 'general-ledger', component: () => import('./pages/GeneralLedgerView.vue') },
|
{ path: '/general-ledger', name: 'general-ledger', component: () => import('./pages/GeneralLedgerView.vue') },
|
||||||
{ path: '/journal', name: 'journal', component: () => import('./pages/JournalView.vue') },
|
{ path: '/journal', name: 'journal', component: () => import('./pages/JournalView.vue') },
|
||||||
{ path: '/journal/edit-transaction/:id', name: 'journal-edit-transaction', component: () => import('./pages/EditTransactionView.vue') },
|
{ path: '/journal/edit/:id', name: 'journal-edit-transaction', component: () => import('./pages/EditTransactionView.vue') },
|
||||||
{ path: '/journal/new-transaction', name: 'journal-new-transaction', component: () => import('./pages/NewTransactionView.vue') },
|
{ path: '/journal/new', name: 'journal-new-transaction', component: () => import('./pages/NewTransactionView.vue') },
|
||||||
{ path: '/statement-lines', name: 'statement-lines', component: () => import('./pages/StatementLinesView.vue') },
|
{ path: '/statement-lines', name: 'statement-lines', component: () => import('./pages/StatementLinesView.vue') },
|
||||||
{ path: '/statement-lines/import', name: 'import-statement', component: () => import('./pages/ImportStatementView.vue') },
|
{ path: '/statement-lines/import', name: 'import-statement', component: () => import('./pages/ImportStatementView.vue') },
|
||||||
{ path: '/transactions/:account', name: 'transactions', component: () => import('./pages/TransactionsView.vue') },
|
{ path: '/transactions/:account', name: 'transactions', component: () => import('./pages/TransactionsView.vue') },
|
||||||
|
@ -97,7 +97,7 @@
|
|||||||
for (const transaction of transactions.value) {
|
for (const transaction of transactions.value) {
|
||||||
let editLink = '';
|
let editLink = '';
|
||||||
if (transaction.id !== null) {
|
if (transaction.id !== null) {
|
||||||
editLink = `<a href="/journal/edit-transaction/${ transaction.id }" class="text-gray-500 hover:text-gray-700" onclick="return openLinkInNewWindow(this);">${ PencilIconHTML }</a>`;
|
editLink = `<a href="/journal/edit/${ transaction.id }" class="text-gray-500 hover:text-gray-700" onclick="return openLinkInNewWindow(this);">${ PencilIconHTML }</a>`;
|
||||||
}
|
}
|
||||||
rows.push(
|
rows.push(
|
||||||
`<tr class="border-t border-gray-300">
|
`<tr class="border-t border-gray-300">
|
||||||
|
@ -100,7 +100,7 @@
|
|||||||
<td class="py-0.5 pr-1 text-gray-900 lg:w-[12ex]">${ dayjs(transaction.dt).format('YYYY-MM-DD') }</td>
|
<td class="py-0.5 pr-1 text-gray-900 lg:w-[12ex]">${ dayjs(transaction.dt).format('YYYY-MM-DD') }</td>
|
||||||
<td class="py-0.5 px-1 text-gray-900" colspan="3">
|
<td class="py-0.5 px-1 text-gray-900" colspan="3">
|
||||||
${ transaction.description }
|
${ transaction.description }
|
||||||
<a href="/journal/edit-transaction/${ transaction.id }" class="text-gray-500 hover:text-gray-700" onclick="return openLinkInNewWindow(this);">${ PencilIconHTML }</a>
|
<a href="/journal/edit/${ transaction.id }" class="text-gray-500 hover:text-gray-700" onclick="return openLinkInNewWindow(this);">${ PencilIconHTML }</a>
|
||||||
</td>
|
</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td></td>
|
<td></td>
|
||||||
|
@ -241,14 +241,14 @@
|
|||||||
const otherAccount = line.posting_accounts.find((a) => a !== line.source_account);
|
const otherAccount = line.posting_accounts.find((a) => a !== line.source_account);
|
||||||
reconciliationCell =
|
reconciliationCell =
|
||||||
`<span>${ otherAccount }</span>
|
`<span>${ otherAccount }</span>
|
||||||
<a href="/journal/edit-transaction/${ line.transaction_id }" class="text-gray-500 hover:text-gray-700" onclick="return openLinkInNewWindow(this);">${ PencilIconHTML }</a>`;
|
<a href="/journal/edit/${ line.transaction_id }" class="text-gray-500 hover:text-gray-700" onclick="return openLinkInNewWindow(this);">${ PencilIconHTML }</a>`;
|
||||||
|
|
||||||
if (showOnlyUnclassified.value) { continue; }
|
if (showOnlyUnclassified.value) { continue; }
|
||||||
} else {
|
} else {
|
||||||
// Complex reconciliation
|
// Complex reconciliation
|
||||||
reconciliationCell =
|
reconciliationCell =
|
||||||
`<i>(Complex)</i>
|
`<i>(Complex)</i>
|
||||||
<a href="/journal/edit-transaction/${ line.transaction_id }" class="text-gray-500 hover:text-gray-700" onclick="return openLinkInNewWindow(this);">${ PencilIconHTML }</a>`;
|
<a href="/journal/edit/${ line.transaction_id }" class="text-gray-500 hover:text-gray-700" onclick="return openLinkInNewWindow(this);">${ PencilIconHTML }</a>`;
|
||||||
|
|
||||||
if (showOnlyUnclassified.value) { continue; }
|
if (showOnlyUnclassified.value) { continue; }
|
||||||
}
|
}
|
||||||
|
@ -84,7 +84,7 @@
|
|||||||
for (const transaction of transactions) {
|
for (const transaction of transactions) {
|
||||||
let editLink = '';
|
let editLink = '';
|
||||||
if (transaction.id !== null) {
|
if (transaction.id !== null) {
|
||||||
editLink = `<a href="/journal/edit-transaction/${ transaction.id }" class="text-gray-500 hover:text-gray-700" onclick="return openLinkInNewWindow(this);">${ PencilIconHTML }</a>`;
|
editLink = `<a href="/journal/edit/${ transaction.id }" class="text-gray-500 hover:text-gray-700" onclick="return openLinkInNewWindow(this);">${ PencilIconHTML }</a>`;
|
||||||
}
|
}
|
||||||
rows.push(
|
rows.push(
|
||||||
`<tr class="border-t border-gray-300">
|
`<tr class="border-t border-gray-300">
|
||||||
|
@ -80,7 +80,7 @@
|
|||||||
for (const transaction of transactions) {
|
for (const transaction of transactions) {
|
||||||
let editLink = '';
|
let editLink = '';
|
||||||
if (transaction.id !== null) {
|
if (transaction.id !== null) {
|
||||||
editLink = `<a href="/journal/edit-transaction/${ transaction.id }" class="text-gray-500 hover:text-gray-700" onclick="return openLinkInNewWindow(this);">${ PencilIconHTML }</a>`;
|
editLink = `<a href="/journal/edit/${ transaction.id }" class="text-gray-500 hover:text-gray-700" onclick="return openLinkInNewWindow(this);">${ PencilIconHTML }</a>`;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (transaction.postings.length == 2) {
|
if (transaction.postings.length == 2) {
|
||||||
|
Loading…
Reference in New Issue
Block a user