Revision 864977c6
Von Moritz Bunkus vor etwa 14 Jahren hinzugefügt
bin/mozilla/ct.pl | ||
---|---|---|
|
||
use SL::CT;
|
||
use SL::CVar;
|
||
use SL::DB::Business;
|
||
use SL::ReportGenerator;
|
||
|
||
require "bin/mozilla/common.pl";
|
||
... | ... | |
push @options, $locale->text('Billing/shipping address (zipcode)') . " : $form->{zipcode}" if $form->{addr_zipcode};
|
||
push @options, $locale->text('Billing/shipping address (street)') . " : $form->{street}" if $form->{addr_street};
|
||
|
||
if ($form->{business_id}) {
|
||
my $business = SL::DB::Manager::Business->find_by(id => $form->{business_id});
|
||
if ($business) {
|
||
my $label = $form->{IS_CUSTOMER} ? $::locale->text('Customer type') : $::locale->text('Vendor type');
|
||
push @options, $label . " : " . $business->description;
|
||
}
|
||
}
|
||
|
||
my @columns = (
|
||
'id', 'name', "$form->{db}number", 'contact', 'phone',
|
||
'fax', 'email', 'taxnumber', 'street', 'zipcode' , 'city',
|
Auch abrufbar als: Unified diff
Kunden-/Lieferantensuche: Eingestellter Filter nach Kunden-/Lieferantentyp in Kopftexte anzeigen
Teil eines Fixes für Bug 1552.