From: Thomas Heck Date: Mon, 22 Apr 2013 14:05:54 +0000 (+0200) Subject: Die Einzelteil-Tabelle für Erzeugnisse richtig ausrichten X-Git-Tag: release-3.1.0beta1~481 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=ec6d648501c6f0aad5a5998548603190ab5dc76b;p=kivitendo-erp.git Die Einzelteil-Tabelle für Erzeugnisse richtig ausrichten fixt #2230 --- diff --git a/bin/mozilla/ic.pl b/bin/mozilla/ic.pl index c0841cfa9..222a4d1d5 100644 --- a/bin/mozilla/ic.pl +++ b/bin/mozilla/ic.pl @@ -1675,15 +1675,15 @@ sub assembly_row { } my %header = ( - runningnumber => { text => $locale->text('No.'), nowrap => 1, width => '5%' }, - qty => { text => $locale->text('Qty'), nowrap => 1, width => '10%' }, - unit => { text => $locale->text('Unit'), nowrap => 1, width => '5%' }, - partnumber => { text => $locale->text('Part Number'), nowrap => 1, width => '20%' }, - description => { text => $locale->text('Part Description'), nowrap => 1, width => '50%' }, - lastcost => { text => $locale->text('Purchase Prices'), nowrap => 1, width => '50%' }, - total => { text => $locale->text('Sale Prices'), nowrap => 1, }, - bom => { text => $locale->text('BOM'), }, - partsgroup => { text => $locale->text('Group'), }, + runningnumber => { text => $locale->text('No.'), nowrap => 1, width => '5%', align => 'left',}, + qty => { text => $locale->text('Qty'), nowrap => 1, width => '10%', align => 'left',}, + unit => { text => $locale->text('Unit'), nowrap => 1, width => '5%', align => 'left',}, + partnumber => { text => $locale->text('Part Number'), nowrap => 1, width => '20%', align => 'left',}, + description => { text => $locale->text('Part Description'), nowrap => 1, width => '50%', align => 'left',}, + lastcost => { text => $locale->text('Purchase Prices'), nowrap => 1, width => '50%', align => 'right',}, + total => { text => $locale->text('Sale Prices'), nowrap => 1, align => 'right',}, + bom => { text => $locale->text('BOM'), align => 'center',}, + partsgroup => { text => $locale->text('Group'), align => 'left',}, ); my @ROWS;