Skip to content

Commit

Permalink
Update - Ajout d'informations contextuelles pour les commandes
Browse files Browse the repository at this point in the history
  • Loading branch information
noelmugnier committed Nov 8, 2020
1 parent 4e77a24 commit 7e31ec9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/routes/my-orders/MyOrderDetails.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,7 @@
{order.vendor.name}
</p>
<p class="text-base mb-2">
<span class="text-gray-600">Mail :</span>
<a href="mailto:{order.vendor.email}">{order.vendor.email}</a>
</p>
<p class="text-base mb-2">
Expand Down
2 changes: 2 additions & 0 deletions src/routes/purchase-orders/PurchaseOrderDetails.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -391,10 +391,12 @@ faFileExport
{order.sender.name}
</p>
<p class="text-base mb-2">
<span class="text-gray-600">Mail :</span>
<a href="mailto:{order.sender.email}">{order.sender.email}</a>
</p>
<p class="text-base mb-2">
{#if order.sender.phone}
<span class="text-gray-600">Tél :</span>
<a href="tel:{order.sender.phone}">{order.sender.phone}</a>
{/if}
</p>
Expand Down

0 comments on commit 7e31ec9

Please sign in to comment.