0
1
Fork 0
hedera-web-mindshore/forms/admin/shelves/ui.xml

112 lines
2.4 KiB
XML
Raw Normal View History

2015-09-22 07:20:47 +00:00
<vn>
2015-11-05 07:30:19 +00:00
<vn-group>
<db-model property="model" id="configs-model">
<custom>
2016-10-04 15:27:49 +00:00
SELECT c.id, c.name reportTitle, c.namePrefix, c.warehouse, c.family,
c.shelf, c.maxAmount, c.showPacking, c.stack, t.reino_id realm
FROM shelfConfig c
JOIN vn2008.Tipos t ON t.tipo_id = c.family
</custom>
2015-11-05 07:30:19 +00:00
</db-model>
2016-12-23 08:57:49 +00:00
<vn-basic-set id="set"/>
2015-11-05 07:30:19 +00:00
</vn-group>
2015-09-22 07:20:47 +00:00
<div id="title">
<h1><t>Shelves</t></h1>
</div>
2016-12-23 08:57:49 +00:00
<div id="actions">
2016-09-19 06:40:18 +00:00
<htk-bar-button
icon="print"
tip="_Preview"
on-click="onPreviewClick"/>
</div>
2015-09-22 07:20:47 +00:00
<div id="form" class="shelves">
2016-12-23 08:57:49 +00:00
<div class="card form">
<div>
<label><t>Configuration</t></label>
<htk-combo
id="config"
placeholder="_Select config"
model="configs-model"
on-changed="onConfigChange"
on-ready="onConfigChange"/>
</div>
<div>
<label><t>Date</t></label>
<htk-date-chooser id="date"/>
</div>
<div>
<label><t>Reign</t></label>
<htk-combo id="realm">
<db-model property="model" id="realms">
<custom>
SELECT id, reino FROM vn2008.reinos
WHERE display != FALSE ORDER BY reino
</custom>
</db-model>
</htk-combo>
</div>
<div>
<label><t>Family</t></label>
<htk-combo id="family">
<db-model property="model">
<custom>
SELECT tipo_id, Tipo FROM vn2008.Tipos
WHERE reino_id = #realm ORDER BY Tipo
</custom>
<sql-batch property="batch">
<custom>
2016-12-23 08:57:49 +00:00
<item name="realm" param="realm"/>
</custom>
2016-12-23 08:57:49 +00:00
</sql-batch>
</db-model>
</htk-combo>
</div>
<div>
<label><t>Store</t></label>
<htk-combo id="warehouse">
<db-model property="model">
<custom>
SELECT id, name FROM vn2008.warehouse
WHERE reserve ORDER BY name
</custom>
</db-model>
</htk-combo>
</div>
<div>
<label><t>Shelf</t></label>
<htk-combo id="shelf">
<db-model property="model">
<custom>
SELECT id, name FROM shelf
</custom>
</db-model>
</htk-combo>
</div>
<div>
<label><t>Name prefix</t></label>
<htk-entry id="namePrefix"/>
</div>
<div>
<label><t>Limit amount per item</t></label>
<htk-entry id="maxAmount"/>
</div>
<div>
<label><t>Title</t></label>
<htk-entry id="reportTitle"/>
</div>
<div>
<label><t>Show packing</t></label>
<htk-check id="showPacking"/>
</div>
<div>
<label><t>Stack different items</t></label>
<htk-check id="stack"/>
</div>
<div>
<label><t>Use ids instead of names</t></label>
<htk-check id="useIds"/>
2015-09-22 07:20:47 +00:00
</div>
</div>
</div>
</vn>