Revision 49ec3bd3
Von Thomas Heck vor mehr als 11 Jahren hinzugefügt
SL/Controller/CustomerVendor.pm | ||
---|---|---|
291 | 291 |
$self->action_edit(); |
292 | 292 |
} |
293 | 293 |
|
294 |
|
|
295 |
sub action_search { |
|
296 |
my ($self) = @_; |
|
297 |
|
|
298 |
my $url = 'ct.pl?action=search&db='. ($self->is_vendor() ? 'vendor' : 'customer'); |
|
299 |
|
|
300 |
if ( $::form->{callback} ) { |
|
301 |
$url .= '&callback='. $::from->escape($::form->{callback}); |
|
302 |
} |
|
303 |
|
|
304 |
print $::form->redirect_header($url); |
|
305 |
} |
|
306 |
|
|
307 |
|
|
308 |
sub action_search_contact { |
|
309 |
my ($self) = @_; |
|
310 |
|
|
311 |
my $url = 'ct.pl?action=search_contact&db=customer'; |
|
312 |
|
|
313 |
if ( $::form->{callback} ) { |
|
314 |
$url .= '&callback='. $::from->escape($::form->{callback}); |
|
315 |
} |
|
316 |
|
|
317 |
print $::form->redirect_header($url); |
|
318 |
} |
|
319 |
|
|
320 |
|
|
294 | 321 |
sub action_get_delivery { |
295 | 322 |
my ($self) = @_; |
296 | 323 |
|
Auch abrufbar als: Unified diff
Customer/Vendor-Pfade angepasst