@RGA:
'month':fields.selection([('01','January'), ('02','February'), ('03','March'), ('04','April'), ('05','May'), ('06','June'), ('07','July'), ('08','August'), ('09','September'), ('10','October'), ('11','November'), ('12','December')],'Month',readonly=True),
AFICS the x- axis is not sorted neither by the internal value 01, ..., 12 nor by the month name
I suspect it's sorted by id which are defined as min(id) and hence sort of random. we propably need a special view for grouping by month.
@RGA:
' month': fields. selection( [('01', 'January' ), ('02','February'), ('03','March'), ('04','April'), ('05','May'), ('06','June'),
(' 07','July' ), ('08','August'), ('09','September'), ('10','October'), ('11','November'), ('12',' December' )],'Month' ,readonly= True),
AFICS the x- axis is not sorted neither by the internal value 01, ..., 12 nor by the month name
I suspect it's sorted by id which are defined as min(id) and hence sort of random.
we propably need a special view for grouping by month.