Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
365 changes: 238 additions & 127 deletions client/src/App.vue

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions client/src/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,10 @@ export const api = {
async getPurchaseOrderByBacklogItem(backlogItemId) {
const response = await axios.get(`${API_BASE_URL}/purchase-orders/${backlogItemId}`)
return response.data
},

async submitRestockingOrder(items) {
const response = await axios.post(`${API_BASE_URL}/restocking`, { items })
return response.data
}
}
10 changes: 1 addition & 9 deletions client/src/components/FilterBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,18 +102,10 @@ export default {

<style scoped>
.filters-bar {
background: #f8fafc;
border-bottom: 1px solid #e2e8f0;
padding: 0.75rem 0;
position: sticky;
top: 70px;
z-index: 90;
padding: 1rem 2rem;
}

.filters-container {
max-width: 1600px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
align-items: center;
gap: 1rem;
Expand Down
Loading