0
1
Fork 0
hedera-web-mindshore/forms/ecomerce/invoices/ui.xml

24 lines
602 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">
2015-11-19 13:57:23 +00:00
<db-model property="model" id="tickets">
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
renderer="donwloadRenderer"
target="_blank"/>
</htk-grid>
2015-09-03 23:28:07 +00:00
</div>
</vn>