2018-02-23 12:04:44 +00:00
|
|
|
<form name="form" ng-submit="$ctrl.submit()">
|
2018-03-01 22:38:14 +00:00
|
|
|
<vn-card pad-large>
|
|
|
|
<vn-title>Item tax</vn-title>
|
|
|
|
<vn-horizontal ng-repeat="tax in $ctrl.taxes track by $index">
|
|
|
|
<vn-textfield vn-one
|
|
|
|
label="Country"
|
|
|
|
model="tax.country.country"
|
|
|
|
disabled="true">
|
|
|
|
</vn-textfield>
|
|
|
|
<vn-autocomplete vn-one
|
|
|
|
label="Class"
|
|
|
|
field="tax.taxClassFk"
|
|
|
|
initial-data="tax.taxClass"
|
|
|
|
data="$ctrl.classes"
|
|
|
|
value-field="id"
|
|
|
|
show-field="description">
|
|
|
|
</vn-autocomplete>
|
|
|
|
</vn-horizontal>
|
2018-02-23 12:04:44 +00:00
|
|
|
</vn-card>
|
|
|
|
<vn-button-bar>
|
|
|
|
<vn-submit label="Save"></vn-submit>
|
|
|
|
</vn-button-bar>
|
|
|
|
</form>
|