Add PurchaseOrderModal, tasks API, SaaS UI redesign, and GitHub Actions#148
Open
mnechromancer wants to merge 15 commits into
Open
Add PurchaseOrderModal, tasks API, SaaS UI redesign, and GitHub Actions#148mnechromancer wants to merge 15 commits into
mnechromancer wants to merge 15 commits into
Conversation
…82151615611 Add Claude Code GitHub Workflow
- Add PurchaseOrderModal Vue component for creating purchase orders - Register PurchaseOrderModal in Dashboard view - Add in-memory tasks CRUD API endpoints to FastAPI backend - Document code style conventions in CLAUDE.md Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Rewrite Reports.vue with Composition API (was Options API) - Add useI18n() for full Japanese translation support - Add useFilters() + watch to respect the global filter bar - Add reports.* translation keys to en.js and ja.js - Add getReportsQuarterly/getMonthlyTrends to api.js (replaces direct axios) - Update backend report endpoints to accept warehouse/category/status/month params - Remove all console.log calls from render-path methods - Fix v-for index keys → use q.quarter and month.month - Replace custom formatNumber loop with formatCurrency utility - Replace calculateSummaryStats imperative loops with computed properties Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Replace all hardcoded English strings with t() calls using new backlog.* locale keys. Reuse existing dashboard.inventoryShortages.* keys for table columns and priority.* keys for badge labels. Add translateProductName() for item name localization. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Change sidebar to overflow: visible with z-index: 10 so dropdowns can escape the sidebar bounds and stack above the main content. Change both dropdown menus to open upward (bottom positioning) since they sit at the bottom of the sidebar. Adjust profile menu to left: 0 alignment and narrower min-width to stay within view. Hide profile name/chevron in collapsed mode to prevent overflow. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
PurchaseOrderModalVue component for creating purchase orders from the dashboardPurchaseOrderModalin Dashboard viewGET/POST /api/tasks,DELETE/PATCH /api/tasks/{id}) to FastAPI backendTest plan
cd server && uv run python main.py) and verify/api/tasksendpoints respond correctlycd client && npm run dev) and verify sidebar collapses to icons-only mode🤖 Generated with Claude Code