[PR #58] [MERGED] feat: beta import function #139

Closed
opened 2025-12-28 23:26:29 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/eitchtee/WYGIWYH/pull/58
Author: @eitchtee
Created: 1/23/2025
Status: Merged
Merged: 1/23/2025
Merged by: @eitchtee

Base: mainHead: 41-import-export-function


📝 Commits (10+)

  • c171e04 feat: add import app boilerplate
  • fbb26b8 feat: rename app, some work on schema
  • 86dac63 feat(import): improve schema definition
  • a94e0b4 docs(requirements): add django_ace
  • 238f205 docker: add temp volume
  • 3ccb0e1 feat(transactions): soft delete
  • f96d8d2 feat(transactions): soft delete
  • 2d88647 feat(import): disable cache when running
  • ba0c547 feat(import): add migrations
  • 3ef6b0a feat(settings): add KEEP_DELETED_TRANSACTIONS_FOR variable

📊 Changes

46 files changed (+2190 additions, -4 deletions)

View changed files

📝 .env.example (+6 -0)
📝 app/WYGIWYH/settings.py (+4 -0)
📝 app/WYGIWYH/urls.py (+1 -0)
app/apps/common/templatetags/json.py (+11 -0)
app/apps/import_app/__init__.py (+0 -0)
app/apps/import_app/admin.py (+6 -0)
app/apps/import_app/apps.py (+6 -0)
app/apps/import_app/forms.py (+64 -0)
app/apps/import_app/migrations/0001_initial.py (+51 -0)
app/apps/import_app/migrations/0002_alter_importprofile_name_and_more.py (+23 -0)
app/apps/import_app/migrations/__init__.py (+0 -0)
app/apps/import_app/models.py (+87 -0)
app/apps/import_app/schemas.py (+0 -0)
app/apps/import_app/schemas/__init__.py (+1 -0)
app/apps/import_app/schemas/v1.py (+406 -0)
app/apps/import_app/services/__init__.py (+3 -0)
app/apps/import_app/services/presets.py (+45 -0)
app/apps/import_app/services/v1.py (+547 -0)
app/apps/import_app/tasks.py (+18 -0)
app/apps/import_app/tests.py (+3 -0)

...and 26 more files

📄 Description

No description provided


🔄 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/58 **Author:** [@eitchtee](https://github.com/eitchtee) **Created:** 1/23/2025 **Status:** ✅ Merged **Merged:** 1/23/2025 **Merged by:** [@eitchtee](https://github.com/eitchtee) **Base:** `main` ← **Head:** `41-import-export-function` --- ### 📝 Commits (10+) - [`c171e04`](https://github.com/eitchtee/WYGIWYH/commit/c171e0419ad0b55936df5abb8871288c74e12870) feat: add import app boilerplate - [`fbb26b8`](https://github.com/eitchtee/WYGIWYH/commit/fbb26b8442c744438388fb6544a7477256fdd187) feat: rename app, some work on schema - [`86dac63`](https://github.com/eitchtee/WYGIWYH/commit/86dac632c4bc9edd949aef294844563fb207fa46) feat(import): improve schema definition - [`a94e0b4`](https://github.com/eitchtee/WYGIWYH/commit/a94e0b4904fbd2d6f8cbc54a6939a816469783e5) docs(requirements): add django_ace - [`238f205`](https://github.com/eitchtee/WYGIWYH/commit/238f205513344f50f5d7568a810597a91d4f6922) docker: add temp volume - [`3ccb0e1`](https://github.com/eitchtee/WYGIWYH/commit/3ccb0e19eb3070a47b760e2a297a666d9558178f) feat(transactions): soft delete - [`f96d8d2`](https://github.com/eitchtee/WYGIWYH/commit/f96d8d286298902791263d15973b5699c261596d) feat(transactions): soft delete - [`2d88647`](https://github.com/eitchtee/WYGIWYH/commit/2d8864773ce13d6cc18abd3a73e89a88c9fe2d03) feat(import): disable cache when running - [`ba0c547`](https://github.com/eitchtee/WYGIWYH/commit/ba0c54767c405806f93f1a0eb7526948529435cd) feat(import): add migrations - [`3ef6b0a`](https://github.com/eitchtee/WYGIWYH/commit/3ef6b0ac5ce1702394ad23eddde17cf63e0d7129) feat(settings): add KEEP_DELETED_TRANSACTIONS_FOR variable ### 📊 Changes **46 files changed** (+2190 additions, -4 deletions) <details> <summary>View changed files</summary> 📝 `.env.example` (+6 -0) 📝 `app/WYGIWYH/settings.py` (+4 -0) 📝 `app/WYGIWYH/urls.py` (+1 -0) ➕ `app/apps/common/templatetags/json.py` (+11 -0) ➕ `app/apps/import_app/__init__.py` (+0 -0) ➕ `app/apps/import_app/admin.py` (+6 -0) ➕ `app/apps/import_app/apps.py` (+6 -0) ➕ `app/apps/import_app/forms.py` (+64 -0) ➕ `app/apps/import_app/migrations/0001_initial.py` (+51 -0) ➕ `app/apps/import_app/migrations/0002_alter_importprofile_name_and_more.py` (+23 -0) ➕ `app/apps/import_app/migrations/__init__.py` (+0 -0) ➕ `app/apps/import_app/models.py` (+87 -0) ➕ `app/apps/import_app/schemas.py` (+0 -0) ➕ `app/apps/import_app/schemas/__init__.py` (+1 -0) ➕ `app/apps/import_app/schemas/v1.py` (+406 -0) ➕ `app/apps/import_app/services/__init__.py` (+3 -0) ➕ `app/apps/import_app/services/presets.py` (+45 -0) ➕ `app/apps/import_app/services/v1.py` (+547 -0) ➕ `app/apps/import_app/tasks.py` (+18 -0) ➕ `app/apps/import_app/tests.py` (+3 -0) _...and 26 more files_ </details> ### 📄 Description _No description provided_ --- <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-28 23:26:29 +01:00
adam closed this issue 2025-12-28 23:26:30 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/WYGIWYH#139