hedera-web/web/forms/ecomerce/basket/ui.xml

59 lines
1.4 KiB
XML
Raw Normal View History

2015-03-06 23:33:54 +00:00
<vn>
<div id="title">
<h1><t>ShoppingBasket</t></h1>
</div>
2015-09-16 16:11:15 +00:00
<div id="actions">
<htk-button
image="image/dark/preferences.svg"
tip="_ConfigureOrder"
on-click="onConfigureClick"
showText="true"/>
<htk-button
image="image/dark/view-dual.svg"
tip="_Catalog"
on-click="onCatalogClick"
showText="true"/>
<htk-button
image="image/dark/ok.svg"
tip="_Checkout"
on-click="onCheckoutClick"
showText="true"/>
</div>
2015-03-06 23:33:54 +00:00
<div id="form" class="basket">
2015-09-16 16:11:15 +00:00
<div class="box">
2015-02-01 03:21:54 +00:00
<div>
2015-07-07 15:27:47 +00:00
<htk-grid show-header="false">
<db-model id="items" property="model" updatable="true">
<custom>
SELECT i.id, i.amount, i.price, a.Article, a.Categoria,
a.Medida, a.Tallos, a.Color, o.Abreviatura, a.Foto
FROM basket_item i
JOIN vn2008.Articles a ON a.Id_Article = i.item_id
LEFT JOIN vn2008.Origen o ON a.id_origen = o.id
</custom>
</db-model>
<htk-column-image
column="Foto"
directory="catalog"
subdir="50x50"
show-full="true"
full-dir="900x900"
class="icon"/>
2015-03-06 23:33:54 +00:00
<htk-column-text title="_Item" column="Article"/>
2015-07-07 15:27:47 +00:00
<htk-column-text renderer="featuresRender"/>
<htk-column-text title="_Amount" column="amount" renderer="stemsRender"/>
<htk-column-spin unit="€" digits="2" renderer="subtotalRender"/>
</htk-grid>
2015-07-07 15:27:47 +00:00
<div class="form">
<p>
<t>OrderTotal</t>
<htk-text format="%.2d€">
<db-calc-sum func="subtotal" model="items"/>
2015-07-07 15:27:47 +00:00
</htk-text>
</p>
</div>
</div>
2015-09-16 16:11:15 +00:00
</div>
</div>
2015-03-06 23:33:54 +00:00
</vn>