[PR #2335] [MERGED] Custom Reports: save reports (*new SQL table creation*) #11312

Closed
opened 2026-04-10 20:57:48 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/2335
Author: @carkom
Created: 2/5/2024
Status: Merged
Merged: 2/21/2024
Merged by: @carkom

Base: masterHead: saveReportsNew


📝 Commits (10+)

  • d219bbd updated saved work
  • de160eb Merge remote-tracking branch 'upstream/master' into saveReportsNew
  • a0ca289 Merge remote-tracking branch 'upstream/master' into saveReportsNew
  • af2a03c merge fixes
  • ab3733b Disable CREATE TABLE
  • 6646267 notes
  • 9b297cf turn on db table
  • 83a5465 Fix TableGraph recall crash
  • ec1332c table format changes
  • 33697e0 type fixes

📊 Changes

14 files changed (+404 additions, -157 deletions)

View changed files

📝 packages/desktop-client/src/components/reports/ChooseGraph.tsx (+1 -0)
📝 packages/desktop-client/src/components/reports/Overview.jsx (+22 -7)
📝 packages/desktop-client/src/components/reports/SaveReport.tsx (+39 -44)
📝 packages/desktop-client/src/components/reports/graphs/AreaGraph.tsx (+22 -25)
📝 packages/desktop-client/src/components/reports/graphs/BarGraph.tsx (+22 -25)
📝 packages/desktop-client/src/components/reports/graphs/DonutGraph.tsx (+9 -7)
📝 packages/desktop-client/src/components/reports/graphs/StackedBarGraph.tsx (+34 -29)
📝 packages/desktop-client/src/components/reports/reports/CustomReport.jsx (+1 -0)
packages/desktop-client/src/components/reports/reports/CustomReportListCards.tsx (+209 -0)
📝 packages/desktop-client/src/components/reports/spreadsheets/filterHiddenItems.ts (+3 -4)
packages/loot-core/migrations/1707267033000_reports.sql (+28 -0)
📝 packages/loot-core/src/client/data-hooks/reports.ts (+3 -14)
📝 packages/loot-core/src/server/aql/schema/index.ts (+5 -2)
upcoming-release-notes/2335.md (+6 -0)

📄 Description

WARNING: This PR includes a migration file to create a new "reports" table. Do not test this PR without first backing up your budget file.

Allows for saving custom Reports.


🔄 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/2335 **Author:** [@carkom](https://github.com/carkom) **Created:** 2/5/2024 **Status:** ✅ Merged **Merged:** 2/21/2024 **Merged by:** [@carkom](https://github.com/carkom) **Base:** `master` ← **Head:** `saveReportsNew` --- ### 📝 Commits (10+) - [`d219bbd`](https://github.com/actualbudget/actual/commit/d219bbd8d8bd541930f3a7b6dbd000e09dcc56df) updated saved work - [`de160eb`](https://github.com/actualbudget/actual/commit/de160eb5efb1b2f8f118d5537ddcd208871897ba) Merge remote-tracking branch 'upstream/master' into saveReportsNew - [`a0ca289`](https://github.com/actualbudget/actual/commit/a0ca2895fcaee247fd6aaa10bd64257e1bdb5639) Merge remote-tracking branch 'upstream/master' into saveReportsNew - [`af2a03c`](https://github.com/actualbudget/actual/commit/af2a03c5bacdfb2e1a77f0d28c126001521616dc) merge fixes - [`ab3733b`](https://github.com/actualbudget/actual/commit/ab3733bf5ff1e80f44619b822be6d6c336ba6753) Disable CREATE TABLE - [`6646267`](https://github.com/actualbudget/actual/commit/664626763b5c2ab790e524d1d71ec1193bcc242d) notes - [`9b297cf`](https://github.com/actualbudget/actual/commit/9b297cf79c0878e8f769c0962e0e416504636345) turn on db table - [`83a5465`](https://github.com/actualbudget/actual/commit/83a546546681b7185f7fc9409fd7662db9882597) Fix TableGraph recall crash - [`ec1332c`](https://github.com/actualbudget/actual/commit/ec1332cdd2b70f51e8ce97e974c9c93ab9c470ac) table format changes - [`33697e0`](https://github.com/actualbudget/actual/commit/33697e025856a72cd1883edffa7860e6e768540e) type fixes ### 📊 Changes **14 files changed** (+404 additions, -157 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/src/components/reports/ChooseGraph.tsx` (+1 -0) 📝 `packages/desktop-client/src/components/reports/Overview.jsx` (+22 -7) 📝 `packages/desktop-client/src/components/reports/SaveReport.tsx` (+39 -44) 📝 `packages/desktop-client/src/components/reports/graphs/AreaGraph.tsx` (+22 -25) 📝 `packages/desktop-client/src/components/reports/graphs/BarGraph.tsx` (+22 -25) 📝 `packages/desktop-client/src/components/reports/graphs/DonutGraph.tsx` (+9 -7) 📝 `packages/desktop-client/src/components/reports/graphs/StackedBarGraph.tsx` (+34 -29) 📝 `packages/desktop-client/src/components/reports/reports/CustomReport.jsx` (+1 -0) ➕ `packages/desktop-client/src/components/reports/reports/CustomReportListCards.tsx` (+209 -0) 📝 `packages/desktop-client/src/components/reports/spreadsheets/filterHiddenItems.ts` (+3 -4) ➕ `packages/loot-core/migrations/1707267033000_reports.sql` (+28 -0) 📝 `packages/loot-core/src/client/data-hooks/reports.ts` (+3 -14) 📝 `packages/loot-core/src/server/aql/schema/index.ts` (+5 -2) ➕ `upcoming-release-notes/2335.md` (+6 -0) </details> ### 📄 Description WARNING: This PR includes a migration file to create a new "reports" table. Do not test this PR without first backing up your budget file. Allows for saving custom Reports. --- <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-04-10 20:57:48 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/actual#11312