Compare commits
No commits in common. "590eba79c46ae29d457fa9bd91bdf62c0528a380" and "6298d94c35d9c49b36243acbddbd615082071871" have entirely different histories.
590eba79c4
...
6298d94c35
@ -1,6 +1,6 @@
|
|||||||
<!--
|
<!--
|
||||||
DrCr: Double-entry bookkeeping framework
|
DrCr: Web-based double-entry bookkeeping framework
|
||||||
Copyright (C) 2022-2025 Lee Yingtong Li (RunasSudo)
|
Copyright (C) 2022–2025 Lee Yingtong Li (RunasSudo)
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU Affero General Public License as published by
|
it under the terms of the GNU Affero General Public License as published by
|
||||||
@ -82,9 +82,8 @@
|
|||||||
editLink = `<a href="/journal/edit/${ 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 && (transaction.postings[0].account !== route.params.account || transaction.postings[1].account !== route.params.account)) {
|
if (transaction.postings.length == 2) {
|
||||||
// Simple transaction - if only 2 postings, and a transfer between this and another account
|
// Simple transaction
|
||||||
|
|
||||||
let thisAccountPosting, otherAccountPosting;
|
let thisAccountPosting, otherAccountPosting;
|
||||||
|
|
||||||
for (const posting of transaction.postings) {
|
for (const posting of transaction.postings) {
|
||||||
|
@ -18,7 +18,6 @@
|
|||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Roboto Flex";
|
font-family: "Roboto Flex";
|
||||||
font-weight: 100 1000;
|
|
||||||
src: url("/src/assets/fonts/RobotoFlex-VF.ttf");
|
src: url("/src/assets/fonts/RobotoFlex-VF.ttf");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user