Add call volume report links and routes. #294

This commit is contained in:
Korina Cordero 2020-01-06 08:40:23 +00:00
parent ec5b8951da
commit e16e8a7c99
3 changed files with 23 additions and 3 deletions

View file

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

View file

@ -57,3 +57,13 @@ rep_warranty_class_export_csv:
path: /report/warranty_class_report
controller: App\Controller\ReportController::warrantyClassExportCSV
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

@ -149,7 +149,7 @@
</h3>
<ul class="m-menu__inner">
<li class="m-menu__item " data-redirect="true" aria-haspopup="true">
<a href="{{ url('rep_popapp_comp_form') }}" class="m-menu__link">
<a href="{{ url('rep_popapp_comp_form') }}" class="m-menu__link">
<i class="m-menu__link-bullet m-menu__link-bullet--dot">
<span></span>
</i>
@ -157,7 +157,7 @@
Popapp Comparison Report
</span>
</a>
<a href="{{ url('rep_resq_meh_form') }}" class="m-menu__link">
<a href="{{ url('rep_resq_meh_form') }}" class="m-menu__link">
<i class="m-menu__link-bullet m-menu__link-bullet--dot">
<span></span>
</i>
@ -165,7 +165,7 @@
RESQ MEH Customer Report
</span>
</a>
<a href="{{ url('rep_warranty_class_form') }}" class="m-menu__link">
<a href="{{ url('rep_warranty_class_form') }}" class="m-menu__link">
<i class="m-menu__link-bullet m-menu__link-bullet--dot">
<span></span>
</i>
@ -173,6 +173,14 @@
Warranty Class Report
</span>
</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>
</ul>
</li>