55 lines
1.8 KiB
HTML
55 lines
1.8 KiB
HTML
|
<mg-ajax path="Entries" options="vnPost"></mg-ajax>
|
||
|
<vn-watcher
|
||
|
vn-id="watcher"
|
||
|
data="$ctrl.entry"
|
||
|
form="form"
|
||
|
save="post">
|
||
|
</vn-watcher>
|
||
|
<form name="form" ng-submit="$ctrl.onSubmit()" class="vn-w-md">
|
||
|
<vn-card class="vn-pa-lg">
|
||
|
<vn-horizontal>
|
||
|
<vn-autocomplete
|
||
|
vn-one
|
||
|
ng-model="$ctrl.entry.supplierFk"
|
||
|
url="Suppliers"
|
||
|
show-field="nickname"
|
||
|
search-function="{or: [{id: $search}, {name: {like: '%'+ $search +'%'}}]}"
|
||
|
value-field="id"
|
||
|
order="nickname"
|
||
|
label="Supplier">
|
||
|
<tpl-item>
|
||
|
{{::id}} - {{::nickname}}
|
||
|
</tpl-item>
|
||
|
</vn-autocomplete>
|
||
|
</vn-horizontal>
|
||
|
<vn-horizontal>
|
||
|
<vn-autocomplete
|
||
|
vn-one
|
||
|
ng-model="$ctrl.entry.travelFk"
|
||
|
url="Travels/filter"
|
||
|
search-function="$ctrl.searchFunction($search)"
|
||
|
value-field="t.id"
|
||
|
order="t.id"
|
||
|
label="Travel">
|
||
|
<tpl-item>
|
||
|
{{::agencyModeName}} - {{::warehouseInName}} ({{::shipped | date: 'dd/MM/yyyy'}}) →
|
||
|
{{::warehouseOutName}} ({{::landed | date: 'dd/MM/yyyy'}})
|
||
|
</tpl-item>
|
||
|
</vn-autocomplete>
|
||
|
</vn-horizontal>
|
||
|
<vn-horizontal>
|
||
|
<vn-autocomplete
|
||
|
url="Companies"
|
||
|
label="Company"
|
||
|
show-field="code"
|
||
|
value-field="id"
|
||
|
ng-model="$ctrl.entry.companyFk">
|
||
|
</vn-autocomplete>
|
||
|
</vn-horizontal>
|
||
|
</vn-card>
|
||
|
<vn-button-bar>
|
||
|
<vn-submit label="Create"></vn-submit>
|
||
|
<vn-button ui-sref="entry.index" label="Cancel"></vn-button>
|
||
|
</vn-button-bar>
|
||
|
</form>
|