X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/0a076aab24a128483e595e58ec06bc2e298cf7cb..4341dfafb3e017d00a843496a4c671fe5601db74:/bin/mozilla/ct.pl diff --git a/bin/mozilla/ct.pl b/bin/mozilla/ct.pl index c9d6539e3..555768d84 100644 --- a/bin/mozilla/ct.pl +++ b/bin/mozilla/ct.pl @@ -174,10 +174,12 @@ sub list_names { }; my @columns = ( - 'id', 'name', "$form->{db}number", 'contact', 'phone', 'discount', + 'id', 'name', "$form->{db}number", 'contact', 'main_contact_person', + 'phone', 'discount', 'fax', 'email', 'taxnumber', 'street', 'zipcode' , 'city', 'business', 'payment', 'invnumber', 'ordnumber', 'quonumber', 'salesman', - 'country', 'gln', 'insertdate', 'pricegroup', 'contact_origin', 'invoice_mail' + 'country', 'gln', 'insertdate', 'pricegroup', 'contact_origin', 'invoice_mail', + 'creditlimit', 'ustid', 'commercial_court' ); my @includeable_custom_variables = grep { $_->{includeable} } @{ $cvar_configs }; @@ -191,6 +193,7 @@ sub list_names { "$form->{db}number" => { 'text' => $locale->text('Number'), }, 'name' => { 'text' => $form->{IS_CUSTOMER} ? $::locale->text('Customer Name') : $::locale->text('Vendor Name'), }, 'contact' => { 'text' => $locale->text('Contact'), }, + 'main_contact_person' => { 'text' => $locale->text('Main Contact Person'), }, 'phone' => { 'text' => $locale->text('Phone'), }, 'fax' => { 'text' => $locale->text('Fax'), }, 'email' => { 'text' => $locale->text('E-mail'), }, @@ -212,6 +215,9 @@ sub list_names { 'pricegroup' => { 'text' => $locale->text('Pricegroup'), }, 'invoice_mail' => { 'text' => $locale->text('Email of the invoice recipient'), }, 'contact_origin' => { 'text' => $locale->text('Origin of personal data'), }, + 'creditlimit' => { 'text' => $locale->text('Credit Limit'), }, + 'ustid' => { 'text' => $locale->text('VAT ID'), }, + 'commercial_court' => { 'text' => $locale->text('Commercial court'), }, %column_defs_cvars, ); @@ -281,6 +287,7 @@ sub list_names { if ($ref->{id} ne $previous_id) { $previous_id = $ref->{id}; $ref->{discount} = $form->format_amount(\%myconfig, $ref->{discount} * 100.0, 2); + $ref->{creditlimit} = $form->format_amount(\%myconfig, $ref->{creditlimit}, 2); map { $row->{$_}->{data} = $ref->{$_} } @columns; $row->{name}->{link} = build_std_url('script=controller.pl', 'action=CustomerVendor/edit', 'id=' . E($ref->{id}), 'callback', @hidden_nondefault);