Skip to content

Commit

Permalink
Updated Recent Shipments fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
peterrichards-lr committed Mar 1, 2022
1 parent e9d15da commit 8251619
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,17 @@
</tr>
</thead>
<tbody>
[#if shipments?has_content] [#list shipments as item] [#assign sentTo
= item.fetchCommerceAddress() /]
[#if shipments?has_content] [#list shipments as item]
<tr>
<th scope="row">${item.getCommerceShipmentId()}</th>
[#if item.fetchCommerceAddress()??] [#assign sentTo
= item.fetchCommerceAddress() /]
<td>${(sentTo.street1??)?then(sentTo.street1 + ', ' +
sentTo.street2,sentTo.street2)},<br />${sentTo.city},${sentTo.zip}
</td> [#if item.getStatus()==0]

</td>
[#else]
<td></td>
[/#if] [#if item.getStatus()==0]
<td><span class="label label-warning"> <span
class="label-item label-item-expand">Processing</span>
</span></td> [#elseif item.getStatus()==3]
Expand Down

0 comments on commit 8251619

Please sign in to comment.