mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-03-12 05:53:22 -04:00
Finish time entry delete JS/html
This commit is contained in:
parent
d94c436ba5
commit
5e0d678ea1
@ -59,21 +59,18 @@ $(document).ready(function(){
|
|||||||
});
|
});
|
||||||
|
|
||||||
$("#confirmation_delete").click(function(){
|
$("#confirmation_delete").click(function(){
|
||||||
console.log($(this).data("entry_id"));
|
entry_id = $(this).data("entry_id");
|
||||||
/**
|
url = $("#confirmation_delete").data("url") + entry_id;
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: $("#confirmation_delete").data("url"),
|
url: url,
|
||||||
type: "delete",
|
type: "delete",
|
||||||
data: JSON.stringify(json_data),
|
|
||||||
contentType: 'application/json',
|
contentType: 'application/json',
|
||||||
dataType: "json",
|
|
||||||
success: function(data, status, xhr){
|
success: function(data, status, xhr){
|
||||||
window.location = forward;
|
location.reload();
|
||||||
},
|
},
|
||||||
error: function(data, status ){
|
error: function(data, status ){
|
||||||
displayFormErrors(data.responseJSON);
|
displayFormErrors(data.responseJSON);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
*/
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -20,4 +20,8 @@ class TimeEntry < ActsAsLoggable::Log
|
|||||||
def duration_in_hours
|
def duration_in_hours
|
||||||
(duration / 1.hour).round(2)
|
(duration / 1.hour).round(2)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def type
|
||||||
|
log_action.action
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
"data-start_date" => entry.start_date.to_date.to_formatted_s(:rfc822)}
|
"data-start_date" => entry.start_date.to_date.to_formatted_s(:rfc822)}
|
||||||
%td #{entry.start_date.to_date.to_formatted_s(:rfc822)}
|
%td #{entry.start_date.to_date.to_formatted_s(:rfc822)}
|
||||||
%td #{entry.duration_in_hours}
|
%td #{entry.duration_in_hours}
|
||||||
|
%td #{entry.type}
|
||||||
%td #{truncate(entry.description)}
|
%td #{truncate(entry.description)}
|
||||||
%td
|
%td
|
||||||
%button{ class: "btn icon-remove btn-danger work_entry-delete-btn", role: "button", "data-toggle" => "modal", "data-target" => "#confirmation" }
|
%button{ class: "btn icon-remove btn-danger work_entry-delete-btn", role: "button", "data-toggle" => "modal", "data-target" => "#confirmation" }
|
||||||
@ -37,7 +38,7 @@
|
|||||||
Description
|
Description
|
||||||
.modal-footer
|
.modal-footer
|
||||||
%button{ class: "btn", "data-dismiss" => "modal", "aria-hidden" => "true"} Close
|
%button{ class: "btn", "data-dismiss" => "modal", "aria-hidden" => "true"} Close
|
||||||
%button{ id: "confirmation_delete", class: "btn btn-primary" } Delete
|
%button{ id: "confirmation_delete", class: "btn btn-primary", "data-url" => "api/v1/time_entries/" } Delete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user