From d9a2a402a67c6e878da87b8d30ac42e54daaf34c Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Thu, 31 May 2018 08:47:54 +0200 Subject: [PATCH] 0004476: Our Order No is always 0 on customer payment receipt. Fixed by empty column. --- reporting/includes/doctext.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reporting/includes/doctext.inc b/reporting/includes/doctext.inc index c9011b45..4b87fa6d 100644 --- a/reporting/includes/doctext.inc +++ b/reporting/includes/doctext.inc @@ -197,6 +197,8 @@ $this->title = _("RECEIPT"); $this->formData['document_name'] =_("Receipt No."); $Addr1['title'] = _("With thanks from"); + if ($this->formData['order_'] == "0") + $this->formData['order_'] = ""; $aux_info = array( _("Customer's Reference") => $this->formData["debtor_ref"], _("Type") =>$systypes_array[$this->formData["type"]], -- 2.30.2