Skip to content

Commit

Permalink
update metadata when save ordered item
Browse files Browse the repository at this point in the history
  • Loading branch information
trieu committed Jun 28, 2024
1 parent dcddf99 commit e4460ad
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
Binary file modified leo-data-processing-starter-v_0.9.0.jar
Binary file not shown.
Binary file modified leo-main-starter-v_0.9.0.jar
Binary file not shown.
Binary file modified leo-observer-starter-v_0.9.0.jar
Binary file not shown.
Binary file modified leo-scheduler-starter-v_0.9.0.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,11 @@ <h5 class="media-heading"> <a target="_blank" rel="noreferrer" href="<%- srcTouc
<span class="small" > <b><i class="fa fa-info-circle" aria-hidden="true"></i> Ordered Items:</b> <br>
<div>
<% _.forOwn(orderedItems, function(item) { %>
<div style="padding:10px">
<div style="padding:20px">
<b> Name </b> : <mark> <%- item.name %> </mark> <br>
<b> Original Price </b> : <mark> <%- item.originalPrice %> <%- item.currency %></mark> <br>
<b> Sale Price </b> : <mark> <%- item.salePrice %> <%- item.currency %> </mark> <br>
<b> Quantity </b> : <mark> <%- item.quantity %> </mark> <br>
</div>
<% }) %>
<div>
Expand Down Expand Up @@ -257,7 +260,7 @@ <h5 class="media-heading"> <a target="_blank" rel="noreferrer" href="<%- srcTouc
<div class="text-nowrap " >
<span class="small" > <b><i class="fa fa-info-circle" aria-hidden="true"></i> Transaction Data:</b> <br>
<i class="fa fa-usd" aria-hidden="true"></i> ID Code: <mark> <%- transactionId %> </mark> <br>
<i class="fa fa-usd" aria-hidden="true"></i> Transaction Value: <mark> <%- formatCurrency(transactionValue) %> <%- transactionCurrency %> </mark>
<i class="fa fa-usd" aria-hidden="true"></i> Transaction Value: <mark> <%- transactionValue %> <%- transactionCurrency %> </mark>
</div>
<div class="text-nowrap " >
<i class="fa fa-link" aria-hidden="true"></i> <span class="small" ><%- srcTouchpoint.truncatedUrl %></span> <br>
Expand All @@ -282,8 +285,11 @@ <h5 class="media-heading"> <a target="_blank" rel="noreferrer" href="<%- srcTouc
<span class="small" > <b><i class="fa fa-info-circle" aria-hidden="true"></i> Ordered Items:</b> <br>
<div>
<% _.forOwn(orderedItems, function(item) { %>
<div style="padding:10px">
<div style="padding:20px">
<b> Name </b> : <mark> <%- item.name %> </mark> <br>
<b> Original Price </b> : <mark> <%- item.originalPrice %> <%- item.currency %></mark> <br>
<b> Sale Price </b> : <mark> <%- item.salePrice %> <%- item.currency %> </mark> <br>
<b> Quantity </b> : <mark> <%- item.quantity %> </mark> <br>
</div>
<% }) %>
<div>
Expand Down

0 comments on commit e4460ad

Please sign in to comment.