fix: activate/inactivate item.

This commit is contained in:
Ahmed Bouhuolia
2020-11-29 13:04:00 +02:00
parent ea39eb17a7
commit 130aa6a400
4 changed files with 9 additions and 2 deletions

View File

@@ -22,6 +22,7 @@ export interface IItem{
quantityOnHand: number,
note: string,
active: boolean,
categoryId: number,
userId: number,
@@ -52,6 +53,7 @@ export interface IItemDTO {
quantityOnHand: number,
note: string,
active: boolean,
categoryId: number,
}