salix/modules/item/front/basic-data/index.html

178 lines
6.0 KiB
HTML
Raw Normal View History

2017-12-21 13:09:55 +00:00
<mg-ajax
path="Items/{{patch.params.id}}"
2017-12-21 13:09:55 +00:00
options="vnPatch"
override="{filter: {include: [{relation: 'itemType'}, {relation: 'origin'}, {relation: 'ink'}, {relation: 'producer'}, {relation: 'expense'}]}}">
2017-12-21 13:09:55 +00:00
</mg-ajax>
<vn-watcher
vn-id="watcher"
data="$ctrl.item"
form="form"
save="patch">
</vn-watcher>
2019-11-10 10:08:44 +00:00
<form name="form" ng-submit="watcher.submit()" ng-cloak class="vn-w-md">
<vn-card class="vn-pa-lg">
2018-03-01 22:38:14 +00:00
<vn-horizontal>
2019-10-09 22:47:29 +00:00
<vn-textfield
vn-one
label="Name"
ng-model="$ctrl.item.name"
rule
vn-focus>
</vn-textfield>
2018-10-15 11:20:55 +00:00
<vn-textfield
vn-one label="Full name"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.item.longName"
rule
2018-10-15 11:20:55 +00:00
info="Full name calculates based on tags 1-3. Is not recommended to change it manually">
</vn-textfield>
2018-12-17 13:15:39 +00:00
<vn-autocomplete vn-one
url="ItemTypes"
2018-03-01 22:38:14 +00:00
label="Type"
show-field="name"
value-field="id"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.item.typeFk"
initial-data="$ctrl.item.itemType"
fields="['categoryFk']"
include="'category'">
<tpl-item>
<div>{{name}}</div>
<div class="text-caption text-secondary">
{{category.name}}
</div>
</tpl-item>
2018-03-01 22:38:14 +00:00
</vn-autocomplete>
2018-12-17 13:15:39 +00:00
</vn-horizontal>
<vn-horizontal>
2018-03-01 22:38:14 +00:00
<vn-autocomplete vn-one
url="Intrastats"
2018-03-01 22:38:14 +00:00
label="Intrastat"
show-field="description"
value-field="id"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.item.intrastatFk"
2019-01-28 09:04:08 +00:00
search-function="{or: [{id: {like: $search +'%'}}, {description: {like: '%'+ $search +'%'}}]}"
2018-03-01 22:38:14 +00:00
initial-data="$ctrl.item.intrastat">
2018-05-31 12:40:42 +00:00
<tpl-item style="display: flex;">
<div style="width: 6em; text-align: right; padding-right: 1em;">{{::id}}</div>
<div>{{::description}}</div>
</tpl-item>
2020-02-17 06:22:55 +00:00
<append>
<vn-icon-button
icon="add_circle"
vn-tooltip="New intrastat"
ng-click="$ctrl.showIntrastat($event)">
</vn-icon-button>
</append>
2018-03-01 22:38:14 +00:00
</vn-autocomplete>
<vn-autocomplete vn-one
url="Expenses"
label="Expense"
ng-model="$ctrl.item.expenseFk"
initial-data="$ctrl.item.expense">
2018-03-01 22:38:14 +00:00
</vn-autocomplete>
2018-10-15 11:20:55 +00:00
<vn-autocomplete vn-one
url="Origins"
2018-10-15 11:20:55 +00:00
label="Origin"
show-field="name"
value-field="id"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.item.originFk"
2018-10-15 11:20:55 +00:00
initial-data="$ctrl.item.origin">
2020-02-17 06:22:55 +00:00
</vn-autocomplete>
2018-12-17 13:15:39 +00:00
</vn-horizontal>
<vn-horizontal>
<vn-textfield
vn-one
label="Reference"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.item.comment"
rule>
2018-12-17 13:15:39 +00:00
</vn-textfield>
<vn-input-number
vn-one
min="0"
label="Size"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.item.size"
rule>
</vn-input-number>
<vn-input-number
vn-one
min="0"
label="stems"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.item.stems"
rule>
</vn-input-number>
2018-12-17 13:15:39 +00:00
</vn-horizontal>
<vn-horizontal>
<vn-input-number
vn-one
min="0"
2019-05-30 06:04:46 +00:00
step="0.01"
label="Density"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.item.density"
rule>
</vn-input-number>
<vn-input-number
vn-one
min="0"
label="Relevancy"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.item.relevancy"
rule>
</vn-input-number>
2018-12-17 13:15:39 +00:00
</vn-horizontal>
<vn-horizontal>
2018-10-15 11:20:55 +00:00
<vn-check
vn-one
label="Active"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.item.isActive">
2018-10-15 11:20:55 +00:00
</vn-check>
<vn-check
vn-one
label="Price in kg"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.item.hasKgPrice">
</vn-check>
2019-10-09 22:47:29 +00:00
<vn-textarea
vn-one
2020-02-17 06:22:55 +00:00
label="Description"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.item.description"
rule>
</vn-textarea>
2018-03-01 22:38:14 +00:00
</vn-horizontal>
2017-12-21 13:09:55 +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="$ctrl.$scope.form.$dirty" ng-click="watcher.loadOriginalData()"></vn-button>
2017-12-21 13:09:55 +00:00
</vn-button-bar>
</form>
2020-02-17 06:22:55 +00:00
<!-- Create custom agent dialog -->
<vn-dialog class="edit"
vn-id="intrastat"
on-accept="$ctrl.onIntrastatAccept()">
<tpl-body>
<h5 class="vn-py-sm" translate>New intrastat</h5>
<vn-horizontal>
<vn-textfield vn-one vn-focus
label="Identifier"
ng-model="$ctrl.newIntrastat.id"
required="true">
</vn-textfield>
<vn-textfield vn-one
label="Description"
ng-model="$ctrl.newIntrastat.description"
required="true">
</vn-textfield>
</vn-horizontal>
<vn-horizontal>
<vn-autocomplete vn-one
url="TaxClasses"
label="Tax class"
show-field="description"
value-field="id"
ng-model="$ctrl.newIntrastat.taxClassFk"
initial-data="$ctrl.item.taxClass">
</vn-autocomplete>
</vn-horizontal>
</tpl-body>
<tpl-buttons>
<input type="button" response="cancel" translate-attr="{value: 'Cancel'}"/>
<button response="accept" translate>Create</button>
</tpl-buttons>
</vn-dialog>