2017-12-20 11:40:29 +00:00
|
|
|
<mg-ajax path="/item/api/Items" options="vnPost"></mg-ajax>
|
|
|
|
<vn-watcher
|
|
|
|
vn-id="watcher"
|
|
|
|
data="$ctrl.item"
|
|
|
|
form="form"
|
|
|
|
save="post">
|
|
|
|
</vn-watcher>
|
|
|
|
<form name="form" ng-submit="$ctrl.onSubmit()" margin-medium>
|
2018-05-31 11:34:48 +00:00
|
|
|
<div style="max-width: 50em; margin: 0 auto;">
|
2018-03-01 22:38:14 +00:00
|
|
|
<vn-card pad-large>
|
|
|
|
<vn-title>New item</vn-title>
|
|
|
|
<vn-horizontal>
|
|
|
|
<vn-textfield vn-one label="Name" field="$ctrl.item.name" vn-focus></vn-textfield>
|
|
|
|
</vn-horizontal>
|
|
|
|
<vn-horizontal>
|
|
|
|
<vn-autocomplete vn-one
|
|
|
|
url="/item/api/ItemTypes"
|
|
|
|
label="Type"
|
2018-03-21 07:59:18 +00:00
|
|
|
select-fields=["code","name"]
|
2018-03-01 22:38:14 +00:00
|
|
|
value-field="id"
|
2018-03-21 07:59:18 +00:00
|
|
|
field="$ctrl.item.typeFk"
|
|
|
|
where="{or: [{code: {regexp: 'search'}}, {name: {regexp: 'search'}}]}">
|
|
|
|
<tpl-item>{{code}} : {{name}}</tpl-item>
|
2018-03-01 22:38:14 +00:00
|
|
|
</vn-autocomplete>
|
|
|
|
<vn-autocomplete vn-one
|
2018-03-22 17:02:48 +00:00
|
|
|
url="/item/api/Intrastats"
|
|
|
|
label="Intrastat"
|
|
|
|
show-field="description"
|
|
|
|
value-field="id"
|
|
|
|
field="$ctrl.item.intrastatFk"
|
|
|
|
where="{or: [{id: {regexp: 'search'}}, {description: {regexp: 'search'}}]}">
|
2018-03-21 07:59:18 +00:00
|
|
|
<tpl-item>{{id}} : {{description}}</tpl-item>
|
2018-03-22 17:02:48 +00:00
|
|
|
</vn-autocomplete>
|
2018-03-01 22:38:14 +00:00
|
|
|
</vn-horizontal>
|
|
|
|
<vn-horizontal>
|
|
|
|
<vn-autocomplete vn-one
|
|
|
|
url="/item/api/Origins"
|
|
|
|
label="Origin"
|
|
|
|
show-field="name"
|
|
|
|
value-field="id"
|
|
|
|
field="$ctrl.item.originFk">
|
|
|
|
</vn-autocomplete>
|
|
|
|
</vn-horizontal>
|
2017-12-20 11:40:29 +00:00
|
|
|
</vn-card>
|
|
|
|
<vn-button-bar>
|
|
|
|
<vn-submit label="Create"></vn-submit>
|
2018-04-22 14:25:44 +00:00
|
|
|
<button
|
|
|
|
class="mdl-button mdl-button--raised mdl-button--colored"
|
|
|
|
translate
|
|
|
|
ui-sref="item.index"
|
|
|
|
>Cancel
|
|
|
|
</button>
|
2017-12-20 11:40:29 +00:00
|
|
|
</vn-button-bar>
|
|
|
|
</div>
|
|
|
|
</form>
|