salix/modules/zone/front/warehouses/index.html

58 lines
1.5 KiB
HTML
Raw Normal View History

2019-10-02 17:24:42 +00:00
<vn-data-viewer
data="data"
is-loading="!data"
class="vn-w-xs">
<vn-card>
2019-09-25 18:06:42 +00:00
<vn-table>
<vn-tbody>
<vn-tr ng-repeat="row in data | orderBy:'warehouse.name'">
<vn-td>{{::row.warehouse.name}}</vn-td>
2019-10-09 22:47:29 +00:00
<vn-td shrink>
2019-09-25 18:06:42 +00:00
<vn-icon-button
icon="delete"
translate-attr="{title: 'Delete'}"
2020-01-22 15:32:01 +00:00
ng-click="$ctrl.onDelete(row)">
2019-09-25 18:06:42 +00:00
</vn-icon-button>
</vn-td>
</vn-tr>
</vn-tbody>
</vn-table>
2019-10-02 17:24:42 +00:00
</vn-card>
</vn-data-viewer>
2019-09-25 18:06:42 +00:00
<vn-float-button
icon="add"
translate-attr="{title: 'Add'}"
vn-bind="+"
ng-click="$ctrl.onCreate()"
fixed-bottom-right>
</vn-float-button>
2020-09-17 18:12:52 +00:00
<vn-crud-model
auto-load="true"
url="Warehouses"
data="warehouses"
order="name">
</vn-crud-model>
2019-09-25 18:06:42 +00:00
<vn-dialog
vn-id="dialog"
2020-07-29 08:47:48 +00:00
on-accept="$ctrl.onSave()">
2019-09-25 18:06:42 +00:00
<tpl-body>
2020-05-06 12:38:09 +00:00
<vn-autocomplete
ng-model="$ctrl.selected.warehouseFk"
2020-09-17 18:12:52 +00:00
data="warehouses"
2020-05-06 12:38:09 +00:00
show-field="name"
value-field="id"
label="Warehouse">
</vn-autocomplete>
2019-09-25 18:06:42 +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>
2019-09-25 18:06:42 +00:00
</tpl-buttons>
</vn-dialog>
<vn-confirm
vn-id="confirm"
message="This item will be deleted"
question="Are you sure you want to continue?"
2020-01-22 15:32:01 +00:00
on-accept="$ctrl.delete()">
2019-09-25 18:06:42 +00:00
</vn-confirm>