<%= ob.polyT('orderDetail.summaryTab.fulfilled.heading') %>

<% if (ob.timestamp) { %> <%= ob.moment(ob.timestamp).format('lll') %> <% } %>
<% if (ob.contractType === 'PHYSICAL_GOOD') { %>
<% const physicalDelivery = ob.physicalDelivery && ob.physicalDelivery[0] || {}; %>
<% if (!ob.isLocalPickup) { %>
<%= ob.polyT('orderDetail.summaryTab.fulfilled.shippedByLabel') %> <%= physicalDelivery.shipper %>
<%= ob.polyT('orderDetail.summaryTab.fulfilled.trackingNumberLabel') %> <%= physicalDelivery.trackingNumber || ob.polyT('orderDetail.summaryTab.notApplicable') %> <% if (physicalDelivery.trackingNumber) { %> <%= ob.polyT('orderDetail.summaryTab.fulfilled.copyLink') %> <%= ob.polyT('copiedToClipboard') %> <% } %>
<% } %>
<%= ob.noteFromLabel %>
<%= ob.note ? ob.parseEmojis(ob.note) : ob.polyT('orderDetail.summaryTab.notApplicable') %>
<% } else if (ob.contractType === 'DIGITAL_GOOD') { %> <% const digitalDelivery = ob.digitalDelivery && ob.digitalDelivery[0] || {}; %>
<%= ob.polyT('orderDetail.summaryTab.fulfilled.digitalReadyForDlHeading') %>
<%= ob.polyT('orderDetail.summaryTab.fulfilled.digitalReadyForDlText') %>
<%= ob.polyT('orderDetail.summaryTab.fulfilled.urlLabel') %>
<% if (ob.showPassword) { %>
<%= ob.polyT('orderDetail.summaryTab.fulfilled.passwordLabel') %>
<%= digitalDelivery.password || ob.polyT('orderDetail.summaryTab.notApplicable') %>
<% } %>
<%= ob.noteFromLabel %>
<%= ob.note ? ob.parseEmojis(ob.note) : ob.polyT('orderDetail.summaryTab.notApplicable') %>
<% } else if (ob.contractType === 'SERVICE') { %>
<%= ob.noteFromLabel %>
<%= ob.note ? ob.parseEmojis(ob.note) : ob.polyT('orderDetail.summaryTab.notApplicable') %>
<% } else if (ob.contractType === 'CRYPTOCURRENCY') { %> <% const cryptocurrencyDelivery = ob.cryptocurrencyDelivery && ob.cryptocurrencyDelivery[0] || {}; %>
<% const coinTypeTranslationKey = `cryptoCurrencies.${ob.coinType}`; const coinTypeVerbose = ob.polyT(coinTypeTranslationKey) === coinTypeTranslationKey ? ob.coinType : ob.polyT('orderDetail.summaryTab.fulfilled.coinTypeVerbose', { coinName: ob.polyT(coinTypeTranslationKey), coinCode: ob.coinType, }) %>
<%= ob.polyT('orderDetail.summaryTab.fulfilled.cryptoSentLabel', { coinTypeVerbose: coinTypeVerbose, }) %>
<%= ob.polyT('orderDetail.summaryTab.fulfilled.transactionIdLabel') %> <%= cryptocurrencyDelivery.transactionID %> <%= ob.polyT('orderDetail.summaryTab.fulfilled.copyLink') %> <%= ob.polyT('copiedToClipboard') %>
<%= ob.noteFromLabel %>
<%= ob.note ? ob.parseEmojis(ob.note) : ob.polyT('orderDetail.summaryTab.notApplicable') %>
<% } %>