[PR #179] [MERGED] feat: export and restore #243

Closed
opened 2025-12-29 00:19:20 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/eitchtee/WYGIWYH/pull/179
Author: @eitchtee
Created: 2/19/2025
Status: Merged
Merged: 2/19/2025
Merged by: @eitchtee

Base: mainHead: export


📝 Commits (4)

📊 Changes

27 files changed (+857 additions, -1 deletions)

View changed files

📝 app/WYGIWYH/settings.py (+2 -0)
📝 app/WYGIWYH/urls.py (+1 -0)
app/apps/export_app/__init__.py (+0 -0)
app/apps/export_app/admin.py (+3 -0)
app/apps/export_app/apps.py (+6 -0)
app/apps/export_app/forms.py (+189 -0)
app/apps/export_app/migrations/__init__.py (+0 -0)
app/apps/export_app/models.py (+3 -0)
app/apps/export_app/resources/__init__.py (+0 -0)
app/apps/export_app/resources/accounts.py (+26 -0)
app/apps/export_app/resources/currencies.py (+47 -0)
app/apps/export_app/resources/dca.py (+26 -0)
app/apps/export_app/resources/import_app.py (+8 -0)
app/apps/export_app/resources/rules.py (+25 -0)
app/apps/export_app/resources/transactions.py (+124 -0)
app/apps/export_app/tests.py (+3 -0)
app/apps/export_app/urls.py (+8 -0)
app/apps/export_app/views.py (+284 -0)
app/apps/export_app/widgets/__init__.py (+0 -0)
app/apps/export_app/widgets/foreign_key.py (+11 -0)

...and 7 more files

📄 Description

Closes #48


🔄 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/eitchtee/WYGIWYH/pull/179 **Author:** [@eitchtee](https://github.com/eitchtee) **Created:** 2/19/2025 **Status:** ✅ Merged **Merged:** 2/19/2025 **Merged by:** [@eitchtee](https://github.com/eitchtee) **Base:** `main` ← **Head:** `export` --- ### 📝 Commits (4) - [`3080df9`](https://github.com/eitchtee/WYGIWYH/commit/3080df9b6683e69c9c4c94bbc7b30fa24e5865f0) feat: export (WIP) - [`069f1b4`](https://github.com/eitchtee/WYGIWYH/commit/069f1b450cae5f2b8956c0531c01cbff144ed0d8) feat: export (WIP) - [`201ccea`](https://github.com/eitchtee/WYGIWYH/commit/201ccea842ff36c761b6fe56e52a1076401076c7) feat: export (WIP) - [`c89b07e`](https://github.com/eitchtee/WYGIWYH/commit/c89b07ed93ee8a781c7d64914b8053e92d042ebb) Merge branch 'main' into export ### 📊 Changes **27 files changed** (+857 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `app/WYGIWYH/settings.py` (+2 -0) 📝 `app/WYGIWYH/urls.py` (+1 -0) ➕ `app/apps/export_app/__init__.py` (+0 -0) ➕ `app/apps/export_app/admin.py` (+3 -0) ➕ `app/apps/export_app/apps.py` (+6 -0) ➕ `app/apps/export_app/forms.py` (+189 -0) ➕ `app/apps/export_app/migrations/__init__.py` (+0 -0) ➕ `app/apps/export_app/models.py` (+3 -0) ➕ `app/apps/export_app/resources/__init__.py` (+0 -0) ➕ `app/apps/export_app/resources/accounts.py` (+26 -0) ➕ `app/apps/export_app/resources/currencies.py` (+47 -0) ➕ `app/apps/export_app/resources/dca.py` (+26 -0) ➕ `app/apps/export_app/resources/import_app.py` (+8 -0) ➕ `app/apps/export_app/resources/rules.py` (+25 -0) ➕ `app/apps/export_app/resources/transactions.py` (+124 -0) ➕ `app/apps/export_app/tests.py` (+3 -0) ➕ `app/apps/export_app/urls.py` (+8 -0) ➕ `app/apps/export_app/views.py` (+284 -0) ➕ `app/apps/export_app/widgets/__init__.py` (+0 -0) ➕ `app/apps/export_app/widgets/foreign_key.py` (+11 -0) _...and 7 more files_ </details> ### 📄 Description Closes #48 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 00:19:20 +01:00
adam closed this issue 2025-12-29 00:19:21 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/WYGIWYH#243