Fix LazyInitializationException when sorting project list by State

State is using the same sorter as Total Budget, change to use state name instead.
This commit is contained in:
lmann99 2017-01-07 23:40:01 -05:00
parent e274cf8a1e
commit b5d13c0824

View file

@ -34,7 +34,7 @@
<column label="${i18n:_('Customer')}" sort="auto(customerReference)" hflex="min"/>
<column label="${i18n:_('Total Budget')}" sort="auto(totalBudget)" align="right" hflex="min"/>
<column label="${i18n:_('Hours')}" sort="auto(totalHours)" align="right" hflex="min"/>
<column label="${i18n:_('State')}" sort="auto(totalBudget)" align="center" hflex="min"/>
<column label="${i18n:_('State')}" sort="auto(lower(state))" align="center" hflex="min"/>
<column label="${i18n:_('Operations')}" sclass="operations" width="120px"/>
</columns>
</grid>