mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
Expanded checkin/checkout buttons formatter
This commit is contained in:
parent
2892e32095
commit
959fafe04b
|
@ -117,23 +117,41 @@ $('.snipe-table').bootstrapTable({
|
||||||
// Make the edit/delete buttons
|
// Make the edit/delete buttons
|
||||||
function genericActionsFormatter(destination) {
|
function genericActionsFormatter(destination) {
|
||||||
return function (value,row) {
|
return function (value,row) {
|
||||||
return '<nobr><a href="{{ url('/') }}/' + destination + '/' + row.id + '/edit" class="btn btn-sm btn-warning"><i class="fa fa-pencil"></i></a> '
|
|
||||||
+ '<a data-html="false" class="btn delete-asset btn-danger btn-sm" ' +
|
var actions = '<nobr>';
|
||||||
|
|
||||||
|
if (row.available_actions.update === true) {
|
||||||
|
actions += '<a href="{{ url('/') }}/' + destination + '/' + row.id + '/edit" class="btn btn-sm btn-warning"><i class="fa fa-pencil"></i></a> ';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (row.available_actions.delete === true) {
|
||||||
|
actions += '<a data-html="false" class="btn delete-asset btn-danger btn-sm" ' +
|
||||||
+ 'data-toggle="modal" href="" data-content="Are you sure you wish to delete this?" '
|
+ 'data-toggle="modal" href="" data-content="Are you sure you wish to delete this?" '
|
||||||
+ 'data-title="{{ trans('general.delete') }}?" onClick="return false;">'
|
+ 'data-title="{{ trans('general.delete') }}?" onClick="return false;">'
|
||||||
+ '<i class="fa fa-trash"></i></a></nobr>';
|
+ '<i class="fa fa-trash"></i></a></nobr>';
|
||||||
|
}
|
||||||
|
return actions;
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
function genericCheckinCheckoutFormatter(destination) {
|
function genericCheckinCheckoutFormatter(destination) {
|
||||||
return function (value,row) {
|
return function (value,row) {
|
||||||
if (row.can_checkout === true) {
|
|
||||||
|
// The user is allowed to check items out, AND the item is deployable
|
||||||
|
if ((row.available_actions.checkout === true) && (row.can_checkout === true)) {
|
||||||
|
|
||||||
return '<a href="{{ url('/') }}/' + destination + '/' + row.id + '/checkout" class="btn btn-sm btn-primary">{{ trans('general.checkout') }}</a>';
|
return '<a href="{{ url('/') }}/' + destination + '/' + row.id + '/checkout" class="btn btn-sm btn-primary">{{ trans('general.checkout') }}</a>';
|
||||||
} else if (((row.can_checkout === false)) && (row.assigned_to == null)) {
|
|
||||||
|
// The user is allowed to check items out, but the item is not deployable
|
||||||
|
} else if (((row.can_checkout == 'true')) && (row.available_actions.checkout == 'false') && (row.assigned_to == null)) {
|
||||||
return '<a class="btn btn-sm btn-primary disabled">{{ trans('general.checkout') }}</a>';
|
return '<a class="btn btn-sm btn-primary disabled">{{ trans('general.checkout') }}</a>';
|
||||||
} else {
|
|
||||||
|
// The user is allowed to check items in
|
||||||
|
} else if (row.available_actions.checkin === true) {
|
||||||
return '<nobr><a href="{{ url('/') }}/' + destination + '/' + row.id + '/checkin" class="btn btn-sm btn-primary">{{ trans('general.checkin') }}</a>';
|
return '<nobr><a href="{{ url('/') }}/' + destination + '/' + row.id + '/checkin" class="btn btn-sm btn-primary">{{ trans('general.checkin') }}</a>';
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue