mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2025-05-14 10:31:07 +08:00
Added quantity editing to inventory
This commit is contained in:
parent
fa9931c948
commit
1bdf7356d8
5 changed files with 168 additions and 81 deletions
|
@ -6,6 +6,7 @@ export interface Product {
|
|||
id: number;
|
||||
name: string;
|
||||
date_added: string;
|
||||
quantity: number;
|
||||
}
|
||||
|
||||
// Redux Interfaces
|
||||
|
@ -63,5 +64,5 @@ export interface AddProductParams {
|
|||
export interface UpdateProductParams {
|
||||
id: number;
|
||||
name: string;
|
||||
quantity: string;
|
||||
quantity: number;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue