def __init__(self, price, shop_quantity, inventory, prod_category, name, size, refrig_temp, exp_date):
     Product.__init__(self, price, shop_quantity, inventory, prod_category)
     Food.__init__(self)
     self.name = name
     self.size = size
     self.refrig_temp = refrig_temp
     self.exp_date = exp_date
Exemplo n.º 2
0
 def __init__(self, price, quantity, inventory, category, name, safety_info,
              age_group):
     Toy.__init__(self)
     Product.__init__(self, price, quantity, inventory, category)
     self.name = name
     self.safety_info = safety_info
     self.age_group = age_group
Exemplo n.º 3
0
 def __init__(self, path):
     global netCdfReady
     Product.__init__(self, path)
     print " init class netCDF_Product"
     self.netCdfReady=netCDFloaded
     self.type=Product.TYPE_NETCDF
     self.dataset=None
Exemplo n.º 4
0
    def __init__(self):
        QMainWindow.__init__(self)
        Ui_MainWindow.__init__(self)
        Product.__init__(self)
        Client.__init__(self)
        Techn.__init__(self)
        self.setupUi(self)

        self.off()
        self.add_clientB.clicked.connect(self.addclient)
        self.add_productB.clicked.connect(self.addproduct)
        self.add_techB.clicked.connect(self.addtech)
        self.push_product.clicked.connect(self.pushproduct)
        self.push_client.clicked.connect(self.pushClent)
        self.push_tech.clicked.connect(self.pushtech)
Exemplo n.º 5
0
    def __init__(self):
        Problem.__init__(self)
        Product.__init__(self)
        Client.__init__(self)
        RProblem.__init__(self)
        Techn.__init__(self)
        self.Scheduling = Scheduling()
        Scheduling.__init__(self)
        QMainWindow.__init__(self)
        Ui_LoginWindow.__init__(self)
        self.setupUi(self)

        self.setFixedSize(670, 570)  # sizeofwindow
        # *****************************add image****************

        oImage = QImage("6719.jpg")
        sImage = oImage.scaled(QSize(700, 600))  # resize Image to widgets size
        palette = QPalette()
        palette.setBrush(QPalette.Window, QBrush(sImage))
        self.setPalette(palette)
        self.btn_login.setStyleSheet("background: transparent;")
        self.label.setStyleSheet("color: white;")
        self.btn_login.clicked.connect(self.redirectTo)
Exemplo n.º 6
0
 def __init__(self, path):
     Product.__init__(self, path)
     print " init class Directory_Product"
     self.type=Product.TYPE_DIR
Exemplo n.º 7
0
 def __init__(self, raw_product):
     Product.__init__(self, raw_product)
     bib_info = raw_product.get('biblio', {})
     self._parse_bib_info(bib_info)
Exemplo n.º 8
0
 def __init__(self, raw_product):
     Product.__init__(self, raw_product)
     bib_info = raw_product.get('slides', {})
     self._parse_bib_info(bib_info)
Exemplo n.º 9
0
 def __init__(self, name="unknown", manufacture="unknown", productnum=0, price=0.0, medium="unknown"):
     Product.__init__(self, name, manufacture, productnum, price)
     self.__medium = medium
Exemplo n.º 10
0
 def __init__(self, raw_product):
     Product.__init__(self, raw_product)
Exemplo n.º 11
0
 def __init__(self, name="unknown", manufacture="unknown", productnum=0, price=0.0, weight=0.0):
     Product.__init__(self, name, manufacture, productnum, price)
     self.__weight = weight
Exemplo n.º 12
0
 def __init__(self, raw_product):
     Product.__init__(self, raw_product)
 def __init__(self, name, stock_price, final_price, diskspace, ram):
     Product.__init__(self, name, stock_price, final_price)
     self.diskspace = diskspace
     self.ram = ram
 def __init__(self, name, stock_price, final_price,
              display_size, mega_pixels):
     Product.__init__(self, name, stock_price, final_price)
     self.display_size = display_size
     self.final_price = final_price
Exemplo n.º 15
0
 def __init__(self, client, *args):
     Product.__init__(self, *args)
     self.table_name = "Products"
     self.client = client