diff --git a/site/views/customers/receipt.ctp b/site/views/customers/receipt.ctp index 6e92f15..11c458c 100644 --- a/site/views/customers/receipt.ctp +++ b/site/views/customers/receipt.ctp @@ -157,7 +157,10 @@ function onRowSelect(grid_id, customer_id) { $("#customer-id").val(customer_id); // Set the customer name, so the user knows who the receipt is for - $("#receipt-customer-name").html($(grid_id).getCell(customer_id, 'Customer-name')); + $("#receipt-customer-name") + .html('' + + $(grid_id).getCell(customer_id, 'Customer-name') + + ''); // Hide the "no customer" message and show the current customer $(".customer-selection-invalid").hide();