예제 #1
0
파일: main.py 프로젝트: skyscribe/financial
 def _addRecord(self):
     dlg = EditDlg(self, 'add')
     dlg.exec_()
     if dlg.hasUpdates:
         self._hasDataChanges = True
예제 #2
0
파일: main.py 프로젝트: skyscribe/financial
 def _modifyRecord(self):
     dlg = EditDlg(self, 'modify')
     dlg.exec_()
     if dlg.hasUpdates:
         self._hasDataChanges = True