salix/modules/order/front/catalog/index.html

103 lines
4.1 KiB
HTML
Raw Normal View History

2019-02-01 16:11:14 +00:00
<vn-crud-model
2018-08-21 11:38:16 +00:00
vn-id="model"
url="/order/api/Orders/CatalogFilter"
2018-09-14 07:10:30 +00:00
filter="$ctrl.filter"
limit="50"
2019-02-01 16:11:14 +00:00
data="items"
2019-02-22 13:34:11 +00:00
on-data-change="$ctrl.onDataChange()">
2018-08-21 11:38:16 +00:00
</vn-crud-model>
2019-02-01 16:11:14 +00:00
<div class="main-with-right-menu">
2019-01-30 22:47:06 +00:00
<vn-card>
<vn-horizontal class="catalog-header" pad-medium-h>
<vn-one ng-if="model.moreRows">
<span translate>More than</span> {{model.limit}} <span translate>results</span>
</vn-one>
<vn-one>
<vn-horizontal>
<vn-autocomplete vn-id="field" vn-one
data="$ctrl.fieldList"
initial-data="$ctrl.field"
field="$ctrl.field"
translate-fields="['name']"
2019-02-19 14:13:27 +00:00
order="name"
2019-01-30 22:47:06 +00:00
show-field="name"
value-field="field"
label="Order by">
</vn-autocomplete>
<vn-autocomplete vn-one
data="$ctrl.wayList"
initial-data="$ctrl.way"
field="$ctrl.way"
translate-fields="['name']"
show-field="name"
value-field="way"
label="Order">
</vn-autocomplete>
2018-08-21 11:38:16 +00:00
</vn-horizontal>
2019-01-30 22:47:06 +00:00
</vn-one>
</vn-horizontal>
<vn-horizontal class="catalog-list" pad-small>
<section class="product" ng-repeat="item in items">
2019-02-22 13:34:11 +00:00
<div>
<div class="image">
<img
ng-src="//verdnatura.es/vn-image-data/catalog/200x200/{{::item.image}}"
zoom-image="//verdnatura.es/vn-image-data/catalog/1600x900/{{::item.image}}"
on-error-src/>
</div>
<div class="description">
<h3>
{{::item.name}}
</h3>
<h4 class="ellipsize">
<span translate-attr="::{title: item.subName}">{{::item.subName}}</span>
</h4>
<div class="tags">
<vn-label-value
ng-if="::item.value5"
label="{{::item.tag5}}"
value="{{::item.value5}}">
</vn-label-value>
<vn-label-value
ng-if="::item.value6"
label="{{::item.tag6}}"
value="{{::item.value6}}">
</vn-label-value>
<vn-label-value
ng-if="::item.value7"
label="{{::item.tag7}}"
value="{{::item.value7}}">
</vn-label-value>
</div>
<div class="footer">
<div class="price">
<span>{{::item.available}}</span>
<span translate>from</span>
<span>{{::item.price | currency: 'EUR': 2}}</span>
</div>
<vn-icon-button
icon="add_circle"
ng-click="$ctrl.preview($event, item)"
vn-tooltip="Add">
</vn-icon-button>
</div>
</div>
</div>
2019-01-30 22:47:06 +00:00
</section>
</vn-horizontal>
<vn-horizontal ng-if="!model.data || model.data.length == 0">
<vn-one pad-small translate style="text-align: center">
No results
</vn-one>
</vn-horizontal>
</vn-card>
<vn-pagination margin-small-v model="model"></vn-pagination>
</div>
2019-02-05 08:13:15 +00:00
<vn-side-menu side="right">
<vn-catalog-filter order="$ctrl.order"></vn-catalog-filter>
</vn-side-menu>
2018-08-21 11:38:16 +00:00
<vn-order-prices-popover
2018-09-17 12:30:39 +00:00
vn-id="pricesPopover"
order="$ctrl.order">
2018-08-21 11:38:16 +00:00
</vn-order-prices-popover>