refs #5122 Pending orders: Show taxable base instead of total
gitea/hedera-web/pipeline/head This commit looks good
Details
gitea/hedera-web/pipeline/head This commit looks good
Details
This commit is contained in:
parent
9bfd42eaf8
commit
f47e7e07a7
|
@ -1,4 +1,4 @@
|
|||
hedera-web (23.6.5) stable; urgency=low
|
||||
hedera-web (23.6.6) stable; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
class="htk-list box confirmed vn-w-sm"
|
||||
form-id="iter">
|
||||
<db-model property="model" id="orders">
|
||||
SELECT o.id, o.sent, o.deliveryMethodFk, o.total,
|
||||
SELECT o.id, o.sent, o.deliveryMethodFk, o.taxableBase,
|
||||
a.nickname, am.description agency
|
||||
FROM myOrder o
|
||||
JOIN myAddress a ON a.id = o.addressFk
|
||||
|
@ -33,7 +33,7 @@
|
|||
<p>#{{iter.id}}</p>
|
||||
<p>{{iter.nickname}}</p>
|
||||
<p>{{iter.agency}}</p>
|
||||
<p>{{Vn.Value.format(iter.total, '%.2d€')}}</p>
|
||||
<p>{{Vn.Value.format(iter.taxableBase, '%.2d€')}}</p>
|
||||
</div>
|
||||
<div
|
||||
class="actions"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hedera-web",
|
||||
"version": "23.6.5",
|
||||
"version": "23.6.6",
|
||||
"description": "Verdnatura web page",
|
||||
"license": "GPL-3.0",
|
||||
"repository": {
|
||||
|
|
Loading…
Reference in New Issue