aboutsummaryrefslogtreecommitdiff
path: root/src/classes
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-10-16 19:36:22 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-10-16 19:36:22 +0530
commitb1b874ba771d8dc78d6b17c320ca9993b25d93a1 (patch)
tree03807df5b991736a6fd4e83ae3d31c5a045db448 /src/classes
parent1b3702b241f02ab16c3b5366acb47cefbf089521 (diff)
Items can now strictly have whole number quantities
Diffstat (limited to 'src/classes')
-rw-r--r--src/classes/item.js1
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;
}
}