{{ @root.__ "Orders" }}
{{#unless orders}}
There are no orders for this account. Order here
{{/unless}} {{#each orders}}

OrderId: {{this._id}} - Date: {{formatDate this.orderDate "DD/MM/YYYY hh:mmA"}}

  • Order status: {{this.orderStatus}}
  • {{ @root.__ "Order date" }}: {{formatDate result.orderDate "DD/MM/YYYY hh:mmA"}}
  • {{ @root.__ "Order ID" }}: {{this._id}}
  • {{#if result.orderExpectedBtc }}
  • {{ @root.__ "Order Expected BTC" }}: {{this.orderExpectedBtc}}
  • {{/if}} {{#if this.orderReceivedBtc }}
  • {{ @root.__ "Order Received BTC" }}: {{this.orderReceivedBtc}}
  • {{/if}} {{#if this.orderBlockonomicsTxid }}
  • {{ @root.__ "Order Blockonomics Txid" }}: {{this.orderBlockonomicsTxid}}
  • {{/if}}
  • {{ @root.__ "Order net amount" }}: {{currencySymbol config.currencySymbol}}{{formatAmount (math this.orderTotal '-' this.orderShipping)}}
  • {{ @root.__ "Order shipping amount" }}: {{currencySymbol config.currencySymbol}}{{formatAmount this.orderShipping}}
  • {{ @root.__ "Order total amount" }}: {{currencySymbol config.currencySymbol}}{{formatAmount this.orderTotal}}
  • {{ @root.__ "Email address" }}: {{this.orderEmail}}
  • {{ @root.__ "Company" }}: {{this.orderCompany}}
  • {{ @root.__ "First name" }}: {{this.orderFirstname}}
  • {{ @root.__ "Last name" }}: {{this.orderLastname}}
  • {{ @root.__ "Address 1" }}: {{this.orderAddr1}}
  • {{ @root.__ "Address 2" }}: {{this.orderAddr2}}
  • {{ @root.__ "Country" }}: {{this.orderCountry}}
  • {{ @root.__ "State" }}: {{this.orderState}}
  • {{ @root.__ "Postcode" }}: {{this.orderPostcode}}
  • {{ @root.__ "Phone number" }}: {{this.orderPhoneNumber}}
  •  
  • {{ @root.__ "Products ordered" }}
  • {{#each this.orderProducts}}
  • {{this.quantity}} x {{this.title}} {{#if this.options}}   >   {{ @root.__ "Options" }}: ( {{#each this.options}} {{#if @last}} {{#upperFirst this.name}}{{/upperFirst}}: {{this.value}} {{else}} {{#upperFirst this.name}}{{/upperFirst}}: {{this.value}} / {{/if}} {{/each}} ) {{/if}}
    {{currencySymbol @root.config.currencySymbol}}{{formatAmount this.totalItemPrice}}
    {{#if productComment}}

    Comment: {{this.productComment}}

    {{/if}}
  • {{/each}}
{{/each}}