28 lines
981 B
Plaintext
28 lines
981 B
Plaintext
<div class="row">
|
|
<div class="col-lg-10 col-md-10 col-sm-10">
|
|
<%= render 'inventory_list' %>
|
|
</div>
|
|
<div class="col-lg-2 col-md-2 col-sm-2">
|
|
<% if current_login_employee.role == "administrator" || current_login_employee.role == 'manager' %>
|
|
<button id="back" type="button" class="btn btn-block btn-primary"> Back</button>
|
|
<% end %>
|
|
<button id="stock_taking" type="button" class="btn btn-block btn-primary"> New Stock Taking</button>
|
|
<button id="stock_check_report" type="button" class="btn btn-block btn-primary"> Stock Check Report</button>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
$('#stock_taking').on('click', function () {
|
|
window.location.href = '<%= inventory_stock_checks_path %>';
|
|
});
|
|
|
|
$('#stock_check_report').on('click', function () {
|
|
window.location.href = '<%= reports_stock_check_index_path %>';
|
|
});
|
|
|
|
$('#back').on('click', function () {
|
|
window.location.href = '<%= dashboard_path %>';
|
|
});
|
|
|
|
</script>
|