From 497ea6033084a0ee18eabdccdd533d54a5ffba96 Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Thu, 18 Jul 2019 10:56:07 +0200 Subject: [PATCH] Supplier Invoice. Wrong alignment i 2 first columns when selecting items to invoice. Fixed. --- purchasing/includes/ui/invoice_ui.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/purchasing/includes/ui/invoice_ui.inc b/purchasing/includes/ui/invoice_ui.inc index ef4b8128..fc779227 100644 --- a/purchasing/includes/ui/invoice_ui.inc +++ b/purchasing/includes/ui/invoice_ui.inc @@ -525,12 +525,12 @@ function display_grn_items(&$supp_trans, $mode=0) alt_table_row_color($k); $grn_batch = get_grn_batch_from_item($entered_grn->id); - label_cell(get_trans_view_str(ST_SUPPRECEIVE, $grn_batch)); + label_cell(get_trans_view_str(ST_SUPPRECEIVE, $grn_batch), "nowrap align='right'"); if ($mode == 1) { // label_cell($entered_grn->id); $row = get_grn_batch($grn_batch); - label_cell(get_trans_view_str(ST_PURCHORDER, $row["purch_order_no"])); // PO + label_cell(get_trans_view_str(ST_PURCHORDER, $row["purch_order_no"]), "nowrap align='right'"); // PO } label_cell($entered_grn->item_code); label_cell($entered_grn->item_description); -- 2.30.2