salix/modules/item/front/botanical/index.html

47 lines
1.5 KiB
HTML
Raw Normal View History

2018-02-20 07:53:06 +00:00
<mg-ajax
2018-02-21 10:10:00 +00:00
path="/item/api/ItemBotanicals"
2018-02-20 07:53:06 +00:00
options="vnPatch">
</mg-ajax>
<vn-watcher
vn-id="watcher"
2018-02-20 13:30:02 +00:00
data="$ctrl.botanical"
2018-02-21 10:10:00 +00:00
id-field="itemFk"
2018-02-20 07:53:06 +00:00
form="form"
save="patch">
</vn-watcher>
2018-12-14 11:56:21 +00:00
<form name="form" ng-submit="watcher.submit()" ng-cloak compact>
<vn-card class="vn-pa-lg">
2018-03-01 22:38:14 +00:00
<vn-horizontal>
<vn-textfield
vn-one
label="Botanical"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.botanical.botanical"
2018-12-13 11:17:50 +00:00
vn-focus>
2018-03-01 22:38:14 +00:00
</vn-textfield>
</vn-horizontal>
<vn-horizontal>
<vn-autocomplete
vn-one
initial-data="$ctrl.botanical.genus"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.botanical.genusFk"
2018-03-01 22:38:14 +00:00
url="/item/api/genera"
show-field="latin_genus_name"
value-field="genus_id"
label="Genus">
</vn-autocomplete>
<vn-autocomplete
vn-one
initial-data="$ctrl.botanical.specie"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.botanical.specieFk"
2018-03-01 22:38:14 +00:00
url="/item/api/species"
show-field="latin_species_name"
value-field="specie_id"
label="Species">
</vn-autocomplete>
</vn-horizontal>
2018-02-20 07:53:06 +00:00
</vn-card>
<vn-button-bar>
<vn-submit label="Save"></vn-submit>
2019-09-18 07:41:25 +00:00
<vn-button label="Undo changes" ng-if="watcher.dataChanged()" ng-click="watcher.loadOriginalData()"></vn-button>
2018-02-20 07:53:06 +00:00
</vn-button-bar>
</form>