From: Joe Hunt Date: Wed, 17 Jul 2019 21:36:34 +0000 (+0200) Subject: 4944: The field characters size of Supplier's Reference is too short. Fixed. X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=11bd0b6c67394ca6cdb0e71078d40bad262986ca;p=fa-stable.git 4944: The field characters size of Supplier's Reference is too short. Fixed. --- diff --git a/purchasing/includes/ui/po_ui.inc b/purchasing/includes/ui/po_ui.inc index 6d74bcbe..b7135957 100644 --- a/purchasing/includes/ui/po_ui.inc +++ b/purchasing/includes/ui/po_ui.inc @@ -166,7 +166,7 @@ function display_po_header(&$order) if ($order->trans_type==ST_SUPPINVOICE) date_row(_("Due Date:"), 'due_date', '', false, 0, 0, 0, null, true); - text_row(_("Supplier's Reference:"), 'supp_ref', null, 16, 15); + text_row(_("Supplier's Reference:"), 'supp_ref', null, 20, 60); if (get_company_pref('use_dimension')) dimensions_list_row(_('Dimension').':', 'dimension', null, true, _('Default'), false, 1);