Changeset 194
- Timestamp:
- Thu Sep 7 23:13:51 2006
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
-
server/trunk/update/client/Share Changes with Server.py
r193 r194 36 36 # 060907 - fix error in LocalRowsAdded(); put get & send inside of try/finally; 37 37 # if multiple gets use server ids from first get when finding local changes 38 # 060907 - Alex - fixed display problem that occurred after two users added tasks to the same report 38 39 39 40 debug = 1 … … 213 214 v.UpdatePointers(1) 214 215 else: 216 # v.UpdatePointers() 215 217 Data.UpdateDataPointers(v.Report.table, k) 216 218 v.Report.table.UpdateRowPointers() … … 658 660 659 661 finally: 660 answer = dlg.Update( 100, "Complete")662 answer = dlg.Update(99, "Complete") 660 662 dlg.Destroy() 661 663 … … 667 669 Data.ChangedCalendar = True # force all calculations (just in case) 668 670 Data.Recalculate() # this also refreshes the reports 671 for k, v in Data.OpenReports.iteritems(): 672 if k != 1 and v: v.Report.Reset() # manually refresh grid display 669 673 if debug: print "end final clean up" 670 674
