2018-11-30 10:45:17 +00:00
|
|
|
<mg-ajax path="/order/api/Orders/{{patch.params.id}}/updateBasicData" options="vnPatch"></mg-ajax>
|
|
|
|
<vn-watcher
|
|
|
|
vn-id="watcher"
|
|
|
|
data="$ctrl.order"
|
|
|
|
form="form"
|
|
|
|
save="patch">
|
|
|
|
</vn-watcher>
|
2018-12-14 11:56:21 +00:00
|
|
|
<form name="form" ng-submit="watcher.submit()" compact>
|
2018-11-30 10:45:17 +00:00
|
|
|
<vn-card pad-large>
|
|
|
|
<vn-title>Basic data</vn-title>
|
|
|
|
<vn-horizontal>
|
|
|
|
<vn-autocomplete
|
|
|
|
vn-one
|
|
|
|
url="/api/Clients"
|
|
|
|
label="Client"
|
|
|
|
search-function="{or: [{id: {regexp: $search}}, {name: {regexp: $search}}]}"
|
|
|
|
show-field="name"
|
|
|
|
value-field="id"
|
2019-01-11 07:03:36 +00:00
|
|
|
field="$ctrl.order.clientFk"
|
|
|
|
order="id">
|
2018-11-30 10:45:17 +00:00
|
|
|
<tpl-item>{{id}}: {{name}}</tpl-item>
|
|
|
|
</vn-autocomplete>
|
|
|
|
<vn-autocomplete
|
|
|
|
vn-one
|
|
|
|
url="/api/Companies"
|
|
|
|
label="Company"
|
|
|
|
show-field="code"
|
|
|
|
value-field="id"
|
|
|
|
field="$ctrl.order.companyFk">
|
|
|
|
</vn-autocomplete>
|
|
|
|
<vn-date-picker
|
|
|
|
vn-one
|
|
|
|
label="Landed"
|
|
|
|
model="$ctrl.order.landed"
|
|
|
|
ini-options="{enableTime: false}">
|
|
|
|
</vn-date-picker>
|
|
|
|
</vn-horizontal>
|
|
|
|
<vn-horizontal>
|
|
|
|
<vn-textarea
|
|
|
|
vn-three
|
|
|
|
label="Observation"
|
|
|
|
field="$ctrl.order.note">
|
|
|
|
</vn-textarea>
|
|
|
|
</vn-horizontal>
|
|
|
|
</vn-card>
|
|
|
|
<vn-button-bar>
|
2019-01-07 15:53:34 +00:00
|
|
|
<vn-submit label="Save"></vn-submit>
|
2018-11-30 10:45:17 +00:00
|
|
|
</vn-button-bar>
|
|
|
|
</form>
|