Add restocking workflow: Restocking tab and create-order API#190
Open
ashlesh0001 wants to merge 2 commits into
Open
Add restocking workflow: Restocking tab and create-order API#190ashlesh0001 wants to merge 2 commits into
ashlesh0001 wants to merge 2 commits into
Conversation
Adds a Restocking view where warehouse staff assemble a restock and submit it as a new order. Backend gains POST /api/orders, which stamps the order "Submitted" with a fixed 14-day lead time and computes the total server-side. Orders view surfaces submitted restock orders; en/ja locales and nav/router are wired up for the new tab. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Adds two Claude Code definitions for the inventory-management app: - debugger agent: runtime-error investigator for the Vue/FastAPI stack. Reproduces failures, localizes root cause, proposes a fix; read-only by design (hands .vue fixes to vue-expert). - vue-component-analysis skill: prioritized performance and code-reuse report for client/src components. Analysis only; no .vue edits. Co-Authored-By: Claude Opus 4.8 <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
Adds a Restocking workflow to the inventory app: warehouse staff assemble a restock and submit it as a new order.
Restocking.vueview + nav tab and router entry;Orders.vueupdated to surface submitted restock orders;en/jalocale strings added.POST /api/ordersendpoint — stamps the orderSubmitted, applies a fixed 14-day lead time, and computes the total server-side (so client-side unit price / line totals can't desync). In-memory only; resets on server restart.docs/architecture.html.Testing
🤖 Generated with Claude Code