📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv11.demodesign.com.tr
/
propanel
/
view
/
template
/
mmstock
📝
product_list.twig
← Geri Dön
{{header}}{{column_left}} <div id="content"> <div class="page-header"> <div class="container-fluid"> <div class="pull-right"> </div> <h1>{{heading_title}}</h1> <ul class="breadcrumb"> {% for breadcrumb in breadcrumbs %} <li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li> {% endfor %} </ul> </div> </div> <div class="container-fluid"> {% if error_warning %} <div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> {{error_warning}} <button type="button" class="close" data-dismiss="alert">×</button> </div> {% endif %} {% if success %} <div class="alert alert-success"><i class="fa fa-check-circle"></i> {{success}} <button type="button" class="close" data-dismiss="alert">×</button> </div> {% endif %} <div class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title"><i class="fa fa-list"></i> {{text_list}}</h3> </div> <div class="panel-body"> <div class="well"> <div class="row"> <div class="col-sm-4"> <div class="form-group"> <label class="control-label" for="input-name">{{entry_name}}</label> <input type="text" name="filter_name" value="{{filter_name}}" placeholder="{{entry_name}}" id="input-name" class="form-control" /> </div> <div class="form-group"> <label class="control-label" for="input-status">{{ entry_status }}</label> <select name="filter_status" id="input-status" class="form-control"> {% if filter_status == '1' %} <option value="1" selected="selected">{{ text_enabled }}</option> {% else %} <option value="1">{{ text_enabled }}</option> {% endif %} {% if filter_status == '0' %} <option value="0" selected="selected">{{ text_disabled }}</option> {% else %} <option value="0">{{ text_disabled }}</option> {% endif %} </select> </div> </div> <div class="col-sm-4"> <div class="form-group"> <label class="control-label" for="input-price">{{ entry_price }}</label> <input type="text" name="filter_price" value="{{ filter_price }}" placeholder="{{ entry_price }}" id="input-price" class="form-control" /> </div> <button type="button" id="button-filter" class="btn btn-primary pull-right"><i class="fa fa-filter"></i> {{button_filter}}</button> <!--<div class="form-group"> <label class="control-label" for="input-quantity"><?php echo $entry_quantity; ?></label> <input type="text" name="filter_quantity" value="<?php echo $filter_quantity; ?>" placeholder="<?php echo $entry_quantity; ?>" id="input-quantity" class="form-control" /> </div>--> </div> <div class="col-sm-4"> <div class="form-group"> <label class="control-label" for="input-model">{{ entry_model }}</label> <input type="text" name="filter_model" value="{{ filter_model }}" placeholder="{{ entry_model }}" id="input-model" class="form-control" /> </div> </div> </div> </div> <div class="alert alert-info"> Quick Edit your Product Quantity Using Single Click. </div> <form action="{{ delete }}" method="post" enctype="multipart/form-data" id="form-product"> <div class="table-responsive"> <table class="table table-bordered table-hover" id="mmquickedit-order"> <thead> <tr> <td class="text-center">{{column_image}}</td> <td class="text-left">{% if sort == 'pd.name' %} <a href="{{ sort_name }}" class="{{ order|lower }}">{{ column_name }}</a> {% else %} <a href="{{ sort_name }}">{{ column_name }}</a> {% endif %}</td> <td class="text-left">{% if sort == 'p.model' %} <a href="{{ sort_model }}" class="{{ order|lower }}">{{ column_model }}</a> {% else %} <a href="{{ sort_model }}">{{ column_model }}</a> {% endif %}</td> <td class="text-right">{% if sort == 'p.price' %} <a href="{{ sort_price }}" class="{{ order|lower }}">{{ column_price }}</a> {% else %} <a href="{{ sort_price }}">{{ column_price }}</a> {% endif %}</td> <td class="text-right">{% if sort == 'p.quantity' %} <a href="{{ sort_quantity }}" class="{{ order|lower }}">{{ column_quantity }}</a> {% else %} <a href="{{ sort_quantity }}">{{ column_quantity }}</a> {% endif %}</td> <td class="text-left">{% if sort == 'p.status' %} <a href="{{ sort_status }}" class="{{ order|lower }}">{{ column_status }}</a> {% else %} <a href="{{ sort_status }}">{{ column_status }}</a> {% endif %}</td> <td class="text-right">{{ column_action }}</td> </tr> </thead> <tbody> {% if products %} {% for product in products %} <tr> <td class="text-center">{% if product.image %} <img src="{{ product.image }}" alt="{{ product.name }}" class="img-thumbnail" /> {% else %} <span class="img-thumbnail list"><i class="fa fa-camera fa-2x"></i></span> {% endif %}</td> <td class="text-left">{{ product.name }}</td> <td class="text-left">{{ product.model }}</td> <td class="text-right">{% if product.special %} <span style="text-decoration: line-through;">{{ product.price }}</span><br/> <div class="text-danger">{{ product.special }}</div> {% else %} {{ product.price }} {% endif %}</td> <td class="text-right" data-col="col-quantity" rel="{{product['product_id']}}" data-toggle="tooltip" data-original-title="Double click to edit"> <span class="label label-info">{{product['quantity']}}</span> </td> <td class="text-left">{{product['status']}}</td> <td class="text-right"><a href="{{ product['edit']}}" data-toggle="tooltip" title="{{button_edit}}" class="btn btn-primary"><i class="fa fa-pencil"></i></a></td> </tr> {% endfor %} {% else %} <tr> <td class="text-center" colspan="12">{{ text_no_results }}</td> </tr> {% endif %} </tbody> </table> </div> </form> <div class="row"> <div class="col-sm-6 text-left">{{pagination}}</div> <div class="col-sm-6 text-right">{{results}}</div> </div> </div> </div> </div> <script> $user_token = '{{user_token}}'; </script> <script type="text/javascript" src="view/stylesheet/mm-stock/javascript.js"></script> <script type="text/javascript"><!-- $('#button-filter').on('click', function() { var url = 'index.php?route=mmstock/product&user_token={{user_token}}'; var filter_name = $('input[name=\'filter_name\']').val(); if (filter_name) { url += '&filter_name=' + encodeURIComponent(filter_name); } var filter_model = $('input[name=\'filter_model\']').val(); if (filter_model) { url += '&filter_model=' + encodeURIComponent(filter_model); } var filter_price = $('input[name=\'filter_price\']').val(); if (filter_price) { url += '&filter_price=' + encodeURIComponent(filter_price); } var filter_quantity = $('input[name=\'filter_quantity\']').val(); if (filter_quantity) { url += '&filter_quantity=' + encodeURIComponent(filter_quantity); } var filter_status = $('select[name=\'filter_status\']').val(); if (filter_status != '*') { url += '&filter_status=' + encodeURIComponent(filter_status); } location = url; }); //--></script> <script type="text/javascript"><!-- $('input[name=\'filter_name\']').autocomplete({ 'source': function(request, response) { $.ajax({ url: 'index.php?route=catalog/product/autocomplete&user_token={{user_token}}&filter_name=' + encodeURIComponent(request), dataType: 'json', success: function(json) { response($.map(json, function(item) { return { label: item['name'], value: item['product_id'] } })); } }); }, 'select': function(item) { $('input[name=\'filter_name\']').val(item['label']); } }); $('input[name=\'filter_model\']').autocomplete({ 'source': function(request, response) { $.ajax({ url: 'index.php?route=catalog/product/autocomplete&token=<?php echo $token; ?>&filter_model=' + encodeURIComponent(request), dataType: 'json', success: function(json) { response($.map(json, function(item) { return { label: item['model'], value: item['product_id'] } })); } }); }, 'select': function(item) { $('input[name=\'filter_model\']').val(item['label']); } }); //--></script></div> {{footer}}
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula