| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <!-- BEGIN CONTAINER -->
- <div class="page-container">
- <!-- BEGIN CONTENT -->
- <div class="page-content-wrapper">
- <!-- BEGIN CONTENT BODY -->
- <!-- BEGIN PAGE HEAD-->
- <div class="page-head">
- <div class="container-fluid">
- <!-- BEGIN PAGE TITLE -->
- <div class="page-title">
- <h1>Productos </h1>
- </div>
- <!-- END PAGE TITLE -->
- </div>
- </div>
- <!-- END PAGE HEAD-->
- <!-- BEGIN PAGE CONTENT BODY -->
- <div class="page-content">
- <div class="container-fluid">
- <!-- BEGIN PAGE BREADCRUMBS -->
- <ul class="page-breadcrumb breadcrumb">
- <%= render_breadcrumbs :tag => :li, :separator => ' <i class="fa fa-circle"></i> ' %>
- </ul>
- <!-- END PAGE BREADCRUMBS -->
- <!-- BEGIN PAGE CONTENT INNER -->
- <div class="page-content-inner">
- <div id="notice">
- <% if success %>
- <div class="alert alert-success">
- <p><%= success %></p>
- </div>
- <% elsif warning %>
- <div class="alert alert-warning">
- <p><%= warning %></p>
- </div>
- <% end %>
- </div>
- <div class="row">
- <div class="col-md-12">
- <div class="portlet light ">
- <div class="portlet-title">
- <div class="caption">
- <i class="fa fa-list "></i>
- <span class="caption-subject bold uppercase">Lista de productos</span>
- </div>
- <div class="actions">
- <% if can? :create, Product %>
- <%= link_to new_product_path(:filter => @filter, :current_page => @current_page), {:class=>"btn bold green pull-right filtros"} do %>
- Nuevo Producto <i class="fa fa-plus"></i>
- <% end %>
- <% end %>
- </div>
- </div>
- <div class="portlet-body">
- <%= hidden_field_tag 'columns_definition', @column_definition %>
- <input type='hidden' name='filter' id='filter' value='<%= @filter %>' >
- <input type='hidden' name='current_page' id='current_page' value='<%= @current_page %>' >
- <table id='la_tabla' class="table table-striped table-bordered table-hover tableadvancedAjax" data-source="<%= products_url(format: "json") %>">
- <thead>
- <tr>
- <th>#</th>
- <th>Imagen</th>
- <th>Producto</th>
- <% if current_user.usertype == "A" || current_user.usertype == "SS" %>
- <th>Precio compra</th>
- <% end %>
- <th>Precio venta</th>
- <th>Línea</th>
- <th>Status</th>
- <th width="15%">Acciones</th>
- </tr>
- </thead>
- <tbody>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- END PAGE CONTENT INNER -->
- </div>
- </div>
- <!-- END PAGE CONTENT BODY -->
- <!-- END CONTENT BODY -->
- </div>
- <!-- END CONTENT -->
- </div>
- <!-- END CONTAINER -->
|