diff --git a/class-thinking-logic-wc-sage.php b/class-thinking-logic-wc-sage.php index 3735507..12a2b06 100644 --- a/class-thinking-logic-wc-sage.php +++ b/class-thinking-logic-wc-sage.php @@ -301,7 +301,7 @@ public function createInvoices($order, $customer, $invoice_amounts) { if (count($invoices) > 0) { $message = 'Created SageOne invoices for the following dates and amounts: '; foreach ($invoices as $date_string => $invoice) { - $message .= '
  ' . $date_string . ', £' . $invoice_amounts[$date_string] . ' => ' . $invoice->invoice_number . ''; + $message .= '
  ' . $date_string . ', ' . $order->get_currency() . $invoice_amounts[$date_string] . ' => ' . $invoice->invoice_number . ''; } $message .= "
Invoice reference is '" . $this->invoiceReference($order) . "'"; $order->add_order_note($message);