Fixed bug in gam report <ActivityApplictionName>

This commit is contained in:
Ross Scroggs 2025-04-15 07:01:36 -07:00
parent 8eed07cb2e
commit a55f065cfb
No known key found for this signature in database
GPG Key ID: 54585EA0887857D5
4 changed files with 10 additions and 18 deletions

View File

@ -1,11 +1,7 @@
7.06.04
Fixed bug in `gam report <ActivityApplictionName ... shownoactivities` where an event with no activities
was not properly displaying the following:
```
name
NoActivities
```
Fixed bug in `gam report <ActivityApplictionName>` where a report with no activities
was not displaying any output.
7.06.03

View File

@ -14145,6 +14145,7 @@ def doReport():
startDateTime += oneDay
csvPF.writeCSVfile(f'Customer Report - {tryDate}')
else: # activityReports
csvPF.SetTitles('name')
if addCSVData:
csvPF.AddTitles(sorted(addCSVData.keys()))
if select:
@ -14304,7 +14305,6 @@ def doReport():
if addCSVData:
row.update(addCSVData)
csvPF.WriteRowTitles(row)
csvPF.SetSortTitles(['name'])
else:
if eventRowFilter:
csvPF.SetRowFilter([], GC.Values[GC.CSV_OUTPUT_ROW_FILTER_MODE])

View File

@ -3,12 +3,12 @@ cryptography
distro; sys_platform=='linux'
filelock
google-api-python-client>=2.166.0
google-auth-httplib2
google-auth-httplib2>-0.2.0
google-auth-oauthlib>=1.2.1
google-auth>=2.3.2
httplib2>=0.17.0
google-auth>=2.38.0
httplib2>=0.22.0
lxml
passlib>=1.7.2
passlib>=1.7.4
pathvalidate
python-dateutil
yubikey-manager[yubikey]>=5.2.0
yubikey-manager[yubikey]>=5.6.1

View File

@ -12,12 +12,8 @@ See [Downloads-Installs-GAM7](https://github.com/GAM-team/GAM/wiki/Downloads-Ins
### 7.06.04
Fixed bug in `gam report <ActivityApplictionName> ... shownoactivities` where an event with no activities
was not properly displaying the following:
```
name
NoActivities
```
Fixed bug in `gam report <ActivityApplictionName>` where a report with no activities
was not displaying any output.
### 7.06.03