Edgewall Software

Ticket #7269: order_by.patch

File order_by.patch, 486 bytes (added by izekia@…, 4 years ago)

reports.py patch

  • report.py

     
    548548                               (str(cols), sort_col)) 
    549549            order_cols = [] 
    550550            try: 
    551                 group_idx = cols.index('__group__') 
     551                group_idx = cols.index('__group__') + 1 
    552552                order_cols.append(str(group_idx)) 
    553553            except ValueError: 
    554554                pass