def open_new_creditee(self): # register new creditee account a = NewCrediteeDialog(self) a.exec_() self.widget.listWidget_all_creditees.clear() self.load_creditees()
def update_account(self): no = int(self.widget.mobileNoLabel.text()) ui = NewCrediteeDialog(self) ui.populate(no) ui.exec_() self.daddy.load_crediteeaccounts()
def open_newcreditee(self): # open create new creditee account new = NewCrediteeDialog(self) new.exec_()
def new_crediteeAccount(self): # For creating a new creditee account ui = NewCrediteeDialog(self) ui.exec_() self.load_crediteeaccounts()
def new_crediteeAccount(self): ui = NewCrediteeDialog(self) ui.exec_() self.load_crediteeaccounts()