Skip to content

Instantly share code, notes, and snippets.

Created August 21, 2017 04:30
Show Gist options
  • Save anonymous/b15bc2b4e733dc80776913ee66f06944 to your computer and use it in GitHub Desktop.
Save anonymous/b15bc2b4e733dc80776913ee66f06944 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