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

25 lines
627 B
XML
Raw Normal View History

2015-09-03 23:28:07 +00:00
<vn>
<div id="title">
<h1><t>Invoices</t></h1>
</div>
2023-01-16 13:18:07 +00:00
<div id="form" class="hedera-invoices">
2022-05-26 06:08:31 +00:00
<htk-grid
class="box vn-w-sm"
show-header="false">
<db-model property="model" id="invoices">
2019-08-02 10:48:41 +00:00
SELECT id, ref, issued, amount, hasPdf
2018-05-11 14:50:43 +00:00
FROM myInvoice
ORDER BY issued DESC
LIMIT 100
</db-model>
2018-05-11 14:50:43 +00:00
<htk-column-text title="_Serial" column="ref"/>
<htk-column-date title="_Date" column="issued" format="_%e %b %Y"/>
<htk-column-spin title="_Import" column="amount" unit="€" digits="2"/>
<htk-column-button
icon="download"
tip="_Download PDF"
on-clicked="onDownloadClick"/>
</htk-grid>
2015-09-03 23:28:07 +00:00
</div>
</vn>