[PR #5603] [CLOSED] [WIP] Enable Make Transfer menu for child transactions #6027

Closed
opened 2026-02-28 21:22:46 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/5603
Author: @joel-jeremy
Created: 8/21/2025
Status: Closed

Base: masterHead: allow-child-transactions-make-transfer


📝 Commits (9)

  • 3fc4d1f Update packages/desktop-client/src/queries/queriesSlice.ts
  • e04d6e5 [autofix.ci] apply automated fixes
  • c2602bd Move getAccountsById to accountsSlice
  • d108b0f [autofix.ci] apply automated fixes
  • b6b19fe [Redux] Move tags states from queriesSlice to tagsSlice
  • c512bed Fix lint + release notes
  • d53b049 [Redux] Rename queriesSlice to transactionsSlice
  • 82cbb9b Fix import
  • 8c8ee88 Enable Make Transfer menu for child transactions

📊 Changes

22 files changed (+409 additions, -369 deletions)

View changed files

📝 packages/desktop-client/src/accounts/accountsSlice.ts (+92 -1)
📝 packages/desktop-client/src/components/accounts/Account.tsx (+5 -3)
📝 packages/desktop-client/src/components/mobile/transactions/TransactionEdit.jsx (+1 -1)
📝 packages/desktop-client/src/components/mobile/transactions/TransactionListItem.tsx (+3 -1)
📝 packages/desktop-client/src/components/modals/ImportTransactionsModal/ImportTransactionsModal.jsx (+4 -4)
📝 packages/desktop-client/src/components/tags/ManageTags.tsx (+1 -1)
📝 packages/desktop-client/src/components/tags/TagCreationRow.tsx (+3 -3)
📝 packages/desktop-client/src/components/tags/TagEditor.tsx (+3 -3)
📝 packages/desktop-client/src/components/tags/TagRow.tsx (+3 -3)
📝 packages/desktop-client/src/components/tags/TagsList.tsx (+2 -2)
📝 packages/desktop-client/src/hooks/useTags.ts (+3 -3)
📝 packages/desktop-client/src/index.tsx (+4 -2)
packages/desktop-client/src/queries/queriesSlice.ts (+0 -324)
📝 packages/desktop-client/src/redux/mock.tsx (+9 -4)
📝 packages/desktop-client/src/redux/store.ts (+9 -4)
packages/desktop-client/src/tags/tagsSlice.ts (+165 -0)
packages/desktop-client/src/transactions/transactionsSlice.ts (+79 -0)
📝 packages/loot-core/src/server/tags/app.ts (+9 -7)
📝 packages/loot-core/src/shared/transfer.ts (+1 -2)
📝 packages/loot-core/src/types/models/tags.ts (+1 -1)

...and 2 more files

📄 Description

Closes https://github.com/actualbudget/actual/issues/3802


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/actualbudget/actual/pull/5603 **Author:** [@joel-jeremy](https://github.com/joel-jeremy) **Created:** 8/21/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `allow-child-transactions-make-transfer` --- ### 📝 Commits (9) - [`3fc4d1f`](https://github.com/actualbudget/actual/commit/3fc4d1f85e71f12921164af74344865e71556b44) Update packages/desktop-client/src/queries/queriesSlice.ts - [`e04d6e5`](https://github.com/actualbudget/actual/commit/e04d6e5716a3d2cb8108f7094a3acb6b1cdda902) [autofix.ci] apply automated fixes - [`c2602bd`](https://github.com/actualbudget/actual/commit/c2602bd11a4c03a6fc8a588d57ad9dda31696cc6) Move getAccountsById to accountsSlice - [`d108b0f`](https://github.com/actualbudget/actual/commit/d108b0f3c570ec16b86a13545b24f9d16f0987a7) [autofix.ci] apply automated fixes - [`b6b19fe`](https://github.com/actualbudget/actual/commit/b6b19fe52ccac125c0eafc651b3f7d60063550d5) [Redux] Move tags states from queriesSlice to tagsSlice - [`c512bed`](https://github.com/actualbudget/actual/commit/c512bed7180e52dade38bf527a9185a5f011260d) Fix lint + release notes - [`d53b049`](https://github.com/actualbudget/actual/commit/d53b0499cfebd726de882762072c39f47711d34b) [Redux] Rename queriesSlice to transactionsSlice - [`82cbb9b`](https://github.com/actualbudget/actual/commit/82cbb9bffeaf1dfdf7aea4bdf6dd1491315ae58c) Fix import - [`8c8ee88`](https://github.com/actualbudget/actual/commit/8c8ee889e60d53cb85a731b24575844d87e44149) Enable Make Transfer menu for child transactions ### 📊 Changes **22 files changed** (+409 additions, -369 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/src/accounts/accountsSlice.ts` (+92 -1) 📝 `packages/desktop-client/src/components/accounts/Account.tsx` (+5 -3) 📝 `packages/desktop-client/src/components/mobile/transactions/TransactionEdit.jsx` (+1 -1) 📝 `packages/desktop-client/src/components/mobile/transactions/TransactionListItem.tsx` (+3 -1) 📝 `packages/desktop-client/src/components/modals/ImportTransactionsModal/ImportTransactionsModal.jsx` (+4 -4) 📝 `packages/desktop-client/src/components/tags/ManageTags.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/tags/TagCreationRow.tsx` (+3 -3) 📝 `packages/desktop-client/src/components/tags/TagEditor.tsx` (+3 -3) 📝 `packages/desktop-client/src/components/tags/TagRow.tsx` (+3 -3) 📝 `packages/desktop-client/src/components/tags/TagsList.tsx` (+2 -2) 📝 `packages/desktop-client/src/hooks/useTags.ts` (+3 -3) 📝 `packages/desktop-client/src/index.tsx` (+4 -2) ➖ `packages/desktop-client/src/queries/queriesSlice.ts` (+0 -324) 📝 `packages/desktop-client/src/redux/mock.tsx` (+9 -4) 📝 `packages/desktop-client/src/redux/store.ts` (+9 -4) ➕ `packages/desktop-client/src/tags/tagsSlice.ts` (+165 -0) ➕ `packages/desktop-client/src/transactions/transactionsSlice.ts` (+79 -0) 📝 `packages/loot-core/src/server/tags/app.ts` (+9 -7) 📝 `packages/loot-core/src/shared/transfer.ts` (+1 -2) 📝 `packages/loot-core/src/types/models/tags.ts` (+1 -1) _...and 2 more files_ </details> ### 📄 Description Closes https://github.com/actualbudget/actual/issues/3802 <!-- Thank you for submitting a pull request! Make sure to follow the instructions to write release notes for your PR — it should only take a minute or two: https://github.com/actualbudget/docs#writing-good-release-notes. Try running yarn generate:release-notes *before* pushing your PR for an interactive experience. --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-02-28 21:22:46 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/actual#6027