Add call volume report links and routes. #294
This commit is contained in:
parent
ec5b8951da
commit
e16e8a7c99
3 changed files with 23 additions and 3 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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]
|
||||||
|
|
|
||||||
|
|
@ -149,7 +149,7 @@
|
||||||
</h3>
|
</h3>
|
||||||
<ul class="m-menu__inner">
|
<ul class="m-menu__inner">
|
||||||
<li class="m-menu__item " data-redirect="true" aria-haspopup="true">
|
<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">
|
<i class="m-menu__link-bullet m-menu__link-bullet--dot">
|
||||||
<span></span>
|
<span></span>
|
||||||
</i>
|
</i>
|
||||||
|
|
@ -157,7 +157,7 @@
|
||||||
Popapp Comparison Report
|
Popapp Comparison Report
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</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">
|
<i class="m-menu__link-bullet m-menu__link-bullet--dot">
|
||||||
<span></span>
|
<span></span>
|
||||||
</i>
|
</i>
|
||||||
|
|
@ -165,7 +165,7 @@
|
||||||
RESQ MEH Customer Report
|
RESQ MEH Customer Report
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</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">
|
<i class="m-menu__link-bullet m-menu__link-bullet--dot">
|
||||||
<span></span>
|
<span></span>
|
||||||
</i>
|
</i>
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue