91 lines
2.0 KiB
XML
Executable File
91 lines
2.0 KiB
XML
Executable File
<vn>
|
|
<vn-group>
|
|
<db-model id="debt-model" result-index="1">
|
|
<custom>
|
|
CALL customer_get_debt_by_company ();
|
|
SELECT -amount amount FROM t_customer_debt;
|
|
DROP TEMPORARY TABLE t_customer_debt;
|
|
</custom>
|
|
</db-model>
|
|
</vn-group>
|
|
<div id="title">
|
|
<h1><t>LastOrders</t></h1>
|
|
</div>
|
|
<div id="actions">
|
|
<htk-button
|
|
image="image/dark/basket.svg"
|
|
tip="_ShoppingBasket"
|
|
on-click="onBasketClick"/>
|
|
<htk-button
|
|
id="pay-button"
|
|
image="image/dark/pay.svg"
|
|
tip="_MakePayment"
|
|
on-click="onPayButtonClick"/>
|
|
<div class="balance">
|
|
<span class="label">
|
|
<t>Balance:</t>
|
|
</span>
|
|
<span class="amount" id="balance">
|
|
<htk-text
|
|
format="%.2d€"
|
|
conditional-func="balanceConditionalFunc">
|
|
<db-calc-sum
|
|
property="param"
|
|
model="debt-model"
|
|
column-name="amount"
|
|
id="debt"/>
|
|
</htk-text>
|
|
</span>
|
|
<img
|
|
src="image/dark/info.svg"
|
|
title="_PaymentInfo"
|
|
class="info"
|
|
alt="Info"/>
|
|
</div>
|
|
</div>
|
|
<div id="form" class="orders">
|
|
<div class="box confirmed">
|
|
<htk-repeater form-id="iter" renderer="repeaterFunc">
|
|
<db-model property="model" id="tickets">
|
|
<custom>
|
|
CALL ticket_list ();
|
|
</custom>
|
|
</db-model>
|
|
<custom>
|
|
<a id="link" class="item" title="_SeeOrder">
|
|
<p class="important total">
|
|
<htk-text form="iter" column="total" format="%.2d€"/>
|
|
</p>
|
|
<p class="important">
|
|
<htk-text form="iter" column="date" format="%D"/>
|
|
</p>
|
|
<p>
|
|
<htk-text form="iter" column="consignee"/>
|
|
</p>
|
|
<p>
|
|
<htk-text form="iter" column="type"/>
|
|
</p>
|
|
<div class="clear"/>
|
|
</a>
|
|
</custom>
|
|
</htk-repeater>
|
|
</div>
|
|
</div>
|
|
<htk-popup id="error-dialog" modal="true">
|
|
<div property="child-node" class="dialog">
|
|
<div>
|
|
<img src="image/error.svg" alt="_Error"/>
|
|
<p><t>An error has been in the payment</t></p>
|
|
<div class="clear"/>
|
|
</div>
|
|
<button class="thin" on-click="onRetryPay">
|
|
<t>Retry</t>
|
|
</button>
|
|
<button class="thin" on-click="onCancelPay">
|
|
<t>Accept</t>
|
|
</button>
|
|
<div class="clear"/>
|
|
</div>
|
|
</htk-popup>
|
|
</vn>
|