Include notes in custom asset report

This commit is contained in:
snipe 2017-02-03 02:16:37 -08:00
parent f1592aa63f
commit 729b709de2
2 changed files with 18 additions and 0 deletions

View file

@ -502,6 +502,10 @@ class ReportsController extends Controller
$header[] = trans('admin/hardware/form.expected_checkin');
}
if (e(Input::get('notes')) == '1') {
$header[] = 'Notes';
}
foreach ($customfields as $customfield) {
if (e(Input::get($customfield->db_column_name())) == '1') {
@ -638,6 +642,14 @@ class ReportsController extends Controller
}
}
if (e(Input::get('notes')) == '1') {
if ($asset->notes) {
$row[] = '"' .$asset->notes. '"';
} else {
$row[] = ''; // Empty string if unassigned
}
}
foreach ($customfields as $customfield) {
$column_name = $customfield->db_column_name();
if (e(Input::get($customfield->db_column_name())) == '1') {

View file

@ -150,6 +150,12 @@
{{ trans('admin/hardware/form.expected_checkin') }}
</label>
</div>
<div class="checkbox col-md-12">
<label>
{{ Form::checkbox('notes', '1') }}
{{ trans('general.notes') }}
</label>
</div>
@foreach ($customfields as $customfield)
<div class="checkbox col-md-12">