diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-10-16 19:36:22 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-10-16 19:36:22 +0530 |
commit | b1b874ba771d8dc78d6b17c320ca9993b25d93a1 (patch) | |
tree | 03807df5b991736a6fd4e83ae3d31c5a045db448 /src/classes/item.js | |
parent | 1b3702b241f02ab16c3b5366acb47cefbf089521 (diff) |
Items can now strictly have whole number quantities
Diffstat (limited to 'src/classes/item.js')
-rw-r--r-- | src/classes/item.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/classes/item.js b/src/classes/item.js index 65e8fed..aa0dd0c 100644 --- a/src/classes/item.js +++ b/src/classes/item.js @@ -39,6 +39,7 @@ export class Item { this.GSTPercentage = 0.00; this.MinQuantity = 0.00; this.MaxQuantity = 0.00; + this.HasDecimalQuantity = false; } } |