salix/modules/item/front/descriptor/index.html

94 lines
3.2 KiB
HTML
Raw Normal View History

<vn-descriptor-content module="item">
<slot-menu>
<ul class="vn-list">
<li>
<div class="vn-item"
ng-click="regularize.show()"
translate>
Regularize stock
</div>
</li>
</ul>
</slot-menu>
<slot-body>
<div>
<div style="position: relative" text-center>
<img
ng-src="{{::$root.imagePath}}/catalog/200x200/{{$ctrl.item.image}}"
zoom-image="{{::$root.imagePath}}/catalog/1600x900/{{$ctrl.item.image}}"
on-error-src
/>
<a href="//verdnatura.es/#!form=admin/items&filter={{$ctrl.item.id}}" target="_blank">
<vn-float-button
icon="edit"
style="position: absolute; margin: 1em; bottom: 0; right: 0;"
vn-visible-by="marketing, buyer">
</vn-float-button>
</a>
</div>
<vn-horizontal class="item-state">
<vn-one>
<p translate>Visible</p>
<p>{{$ctrl.visible | dashIfEmpty}}</p>
</vn-one>
<vn-one>
<p translate>Available</p>
<p>{{$ctrl.available | dashIfEmpty}}</p>
</vn-one>
</vn-horizontal>
2019-01-21 14:21:24 +00:00
</div>
<div class="attributes">
<h5>{{$ctrl.item.id}}</h5>
<vn-label-value
label="Name"
value="{{$ctrl.item.name}}">
</vn-label-value>
<vn-label-value
label="Buyer"
value="{{$ctrl.item.itemType.worker.user.nickname}}">
</vn-label-value>
<vn-label-value
ng-repeat="tag in $ctrl.item.tags | limitTo:4"
label="{{tag.tag.name}}"
value="{{tag.value}}">
</vn-label-value>
2019-01-21 14:21:24 +00:00
</div>
2019-03-04 19:00:12 +00:00
<div class="icons">
<vn-icon
vn-tooltip="Item inactive"
icon="icon-unavailable"
ng-class="{bright: $ctrl.item.isActive == false}">
</vn-icon>
</div>
<div class="quicklinks">
<div ng-transclude="btnOne"></div>
<div ng-transclude="btnTwo"></div>
<div ng-transclude="btnThree"></div>
</div>
</slot-body>
</vn-descriptor-content>
2018-11-12 12:12:25 +00:00
<vn-dialog
vn-id="regularize"
on-open="$ctrl.warehouseFk = $ctrl.vnConfig.warehouseFk"
on-close="$ctrl.clearRegularizeDialog()"
on-accept="$ctrl.saveRegularize()">
<tpl-title translate>
Regularize stock
</tpl-title>
2018-11-12 12:12:25 +00:00
<tpl-body>
<vn-textfield
label="Type the visible quantity"
ng-model="$ctrl.quantity"
vn-focus>
</vn-textfield>
<vn-autocomplete
label="Warehouse"
ng-model="$ctrl.warehouseFk"
url="Warehouses">
</vn-autocomplete>
2018-11-12 12:12:25 +00:00
</tpl-body>
<tpl-buttons>
2019-10-30 15:57:14 +00:00
<input type="button" response="cancel" translate-attr="{value: 'Cancel'}"/>
<button response="accept" translate>Save</button>
2018-11-12 12:12:25 +00:00
</tpl-buttons>
</vn-dialog>