Django accounting software.

2023-01-12 Thread KEMAL TK.
It will be used to track customer, inventory, financial affairs. Django accounting software. There are examples on githup. perfexcrm this application can be referenced. -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itse

Re: Inconsistent pagination when sorting by non-unique columns (ticket 34251)

2023-01-12 Thread Jörg Breitbart
We had a similar issue in table views, where users can highly customize the output (like switching on/off columns, complex filtering and custom multilevel ordering). For the ordering issue at hand the solution was to append the pk as n-th order directive on the queryset, if all previous fields

Re: Inconsistent pagination when sorting by non-unique columns (ticket 34251)

2023-01-12 Thread Adrian Torres
I've been bitten by this once before as well but I think it's the kind of mistake you make once and never again, and if you happen to encounter it again you immediately know what it is (duplicated/missing items across pages? must be a non-unique ordering). I don't think implicitly adding an ext