Skip to content

Instantly share code, notes, and snippets.

@lunaroyster
Forked from anonymous/ITEMINFO.py
Created August 21, 2017 11:13
Show Gist options
  • Save lunaroyster/15f2f9f103ef7aba2b892a527599c1a8 to your computer and use it in GitHub Desktop.
Save lunaroyster/15f2f9f103ef7aba2b892a527599c1a8 to your computer and use it in GitHub Desktop.
class ITEMINFO:
def __init__(self, ICode, Item, Price, Qty, Discount):
self.ICode = ICode
self.Item = Item
self.Price = Price
self.Qty = Qty
self.Discount = Discount
# self.Netprice =
def FindDisc(self):
pass;
def Buy(self):
pass;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment