WIP: Resolve "Per Rider Volume Report" #1145

Draft
korina.cordero wants to merge 3 commits from 292-per-rider-volume-report into master
3 changed files with 23 additions and 3 deletions
Showing only changes of commit e16e8a7c99 - Show all commits

View file

@ -298,6 +298,8 @@ access_keys:
label: RESQ MEH Customer Report label: RESQ MEH Customer Report
- id: report.warranty.class - id: report.warranty.class
label: Warranty Class Report label: Warranty Class Report
- id: report.call.volume
label: Call Volume Report
- id: service - id: service
label: Other Services label: Other Services

View file

@ -57,3 +57,13 @@ rep_warranty_class_export_csv:
path: /report/warranty_class_report path: /report/warranty_class_report
controller: App\Controller\ReportController::warrantyClassExportCSV controller: App\Controller\ReportController::warrantyClassExportCSV
methods: [POST] methods: [POST]
rep_call_volume_form:
path: /report/call_volume_report
controller: App\Controller\ReportController::callVolumeForm
methods: [GET]
rep_call_volume_export_csv:
path: /report/call_volume_report
controller: App\Controller\ReportController::callVolumeExportCSV
methods: [POST]

View file

@ -173,6 +173,14 @@
Warranty Class Report Warranty Class Report
</span> </span>
</a> </a>
<a href="{{ url('rep_call_volume_form') }}" class="m-menu__link">
<i class="m-menu__link-bullet m-menu__link-bullet--dot">
<span></span>
</i>
<span class="m-menu__link-text">
Call Volume Report
</span>
</a>
</li> </li>
</ul> </ul>
</li> </li>