kivitendo/bin/mozilla/common.pl @ 915cb1a4
ed42de15 | Moritz Bunkus | #=====================================================================
|
||
# LX-Office ERP
|
||||
# Copyright (C) 2004
|
||||
# Based on SQL-Ledger Version 2.1.9
|
||||
# Web http://www.lx-office.org
|
||||
######################################################################
|
||||
#
|
||||
# Stuff that can be used from other modules
|
||||
#
|
||||
######################################################################
|
||||
54e4131e | Moritz Bunkus | use SL::Common;
|
||
1e513d1d | Moritz Bunkus | use SL::DB::Helper::Mappings;
|
||
d1090a8c | Sven Schöling | use SL::DB;
|
||
8f56a7e6 | Sven Schöling | use SL::DBUtils qw(do_query);
|
||
8c7e4493 | Moritz Bunkus | use SL::Form;
|
||
87949627 | Sven Schöling | use SL::MoreCommon qw(restore_form save_form);
|
||
54e4131e | Moritz Bunkus | |||
9257ca9a | Sven Schöling | use strict;
|
||
828bd683 | Moritz Bunkus | sub build_std_url {
|
||
9257ca9a | Sven Schöling | $main::lxdebug->enter_sub(2);
|
||
my $form = $main::form;
|
||||
828bd683 | Moritz Bunkus | |||
0c27df9b | Moritz Bunkus | my $script = $form->{script};
|
||
my @parts;
|
||||
8c7e4493 | Moritz Bunkus | foreach my $key (@_) {
|
||
828bd683 | Moritz Bunkus | next unless ($key);
|
||
0c27df9b | Moritz Bunkus | if ($key =~ /(.*?)=(.*)/) {
|
||
if ($1 eq 'script') {
|
||||
$script = $2;
|
||||
} else {
|
||||
push @parts, $key;
|
||||
}
|
||||
828bd683 | Moritz Bunkus | } else {
|
||
8c7e4493 | Moritz Bunkus | foreach my $var ($form->flatten_variables($key)) {
|
||
push @parts, E($var->{key}) . '=' . E($var->{value});
|
||||
}
|
||||
828bd683 | Moritz Bunkus | }
|
||
}
|
||||
0c27df9b | Moritz Bunkus | my $url = "${script}?" . join('&', @parts);
|
||
9257ca9a | Sven Schöling | $main::lxdebug->leave_sub(2);
|
||
828bd683 | Moritz Bunkus | |||
return $url;
|
||||
}
|
||||
8c7e4493 | Moritz Bunkus | # -------------------------------------------------------------------------
|
||
ed42de15 | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | sub delivery_customer_selection {
|
||
9257ca9a | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
54e4131e | Moritz Bunkus | |||
9257ca9a | Sven Schöling | my $order_by = "name";
|
||
54e4131e | Moritz Bunkus | $order_by = $form->{"order_by"} if (defined($form->{"order_by"}));
|
||
9257ca9a | Sven Schöling | my $order_dir = 1;
|
||
54e4131e | Moritz Bunkus | $order_dir = $form->{"order_dir"} if (defined($form->{"order_dir"}));
|
||
9257ca9a | Sven Schöling | my $delivery = Common->retrieve_delivery_customer(\%myconfig, $form, $order_by, $order_dir);
|
||
54e4131e | Moritz Bunkus | map({ $delivery->[$_]->{"selected"} = $_ ? 0 : 1; } (0..$#{$delivery}));
|
||
9257ca9a | Sven Schöling | |||
54e4131e | Moritz Bunkus | if (0 == scalar(@{$delivery})) {
|
||
$form->show_generic_information($locale->text("No Customer was found matching the search parameters."));
|
||||
} elsif (1 == scalar(@{$delivery})) {
|
||||
18407da4 | Sven Schöling | $::request->{layout}->add_javascripts_inline("customer_selected('1')");
|
||
54e4131e | Moritz Bunkus | }
|
||
my $callback = "$form->{script}?action=delivery_customer_selection&";
|
||||
map({ $callback .= "$_=" . $form->escape($form->{$_}) . "&" }
|
||||
8c7e4493 | Moritz Bunkus | (qw(name input_name input_id), grep({ /^[fl]_/ } keys %$form)));
|
||
54e4131e | Moritz Bunkus | |||
my @header_sort = qw(name customernumber address);
|
||||
my %header_title = ( "name" => $locale->text("Name"),
|
||||
"customernumber" => $locale->text("Customer Number"),
|
||||
"address" => $locale->text("Address"),
|
||||
);
|
||||
my @header =
|
||||
map(+{ "column_title" => $header_title{$_},
|
||||
"column" => $_,
|
||||
"callback" => $callback . "order_by=${_}&order_dir=" . ($order_by eq $_ ? 1 - $order_dir : $order_dir),
|
||||
},
|
||||
@header_sort);
|
||||
$form->{"title"} = $locale->text("Select a Customer");
|
||||
ddb162b6 | Sven Schöling | $form->header(no_layout => 1);
|
||
9aaca433 | Moritz Bunkus | print $form->parse_html_template("generic/select_delivery_customer", { "HEADER" => \@header,
|
||
18407da4 | Sven Schöling | "DELIVERY" => $delivery, });
|
||
54e4131e | Moritz Bunkus | |||
9257ca9a | Sven Schöling | $main::lxdebug->leave_sub();
|
||
54e4131e | Moritz Bunkus | }
|
||
8c7e4493 | Moritz Bunkus | # -------------------------------------------------------------------------
|
||
54e4131e | Moritz Bunkus | sub vendor_selection {
|
||
9257ca9a | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
54e4131e | Moritz Bunkus | |||
9257ca9a | Sven Schöling | my $order_by = "name";
|
||
54e4131e | Moritz Bunkus | $order_by = $form->{"order_by"} if (defined($form->{"order_by"}));
|
||
9257ca9a | Sven Schöling | my $order_dir = 1;
|
||
54e4131e | Moritz Bunkus | $order_dir = $form->{"order_dir"} if (defined($form->{"order_dir"}));
|
||
9257ca9a | Sven Schöling | my $vendor = Common->retrieve_vendor(\%myconfig, $form, $order_by, $order_dir);
|
||
54e4131e | Moritz Bunkus | map({ $vendor->[$_]->{"selected"} = $_ ? 0 : 1; } (0..$#{$vendor}));
|
||
9257ca9a | Sven Schöling | |||
54e4131e | Moritz Bunkus | if (0 == scalar(@{$vendor})) {
|
||
$form->show_generic_information($locale->text("No Vendor was found matching the search parameters."));
|
||||
} elsif (1 == scalar(@{$vendor})) {
|
||||
18407da4 | Sven Schöling | $::request->{layout}->add_javascripts_inline("vendor_selected('1')");
|
||
54e4131e | Moritz Bunkus | }
|
||
my $callback = "$form->{script}?action=vendor_selection&";
|
||||
map({ $callback .= "$_=" . $form->escape($form->{$_}) . "&" }
|
||||
8c7e4493 | Moritz Bunkus | (qw(name input_name input_id), grep({ /^[fl]_/ } keys %$form)));
|
||
54e4131e | Moritz Bunkus | |||
my @header_sort = qw(name customernumber address);
|
||||
my %header_title = ( "name" => $locale->text("Name"),
|
||||
"customernumber" => $locale->text("Customer Number"),
|
||||
"address" => $locale->text("Address"),
|
||||
);
|
||||
my @header =
|
||||
map(+{ "column_title" => $header_title{$_},
|
||||
"column" => $_,
|
||||
"callback" => $callback . "order_by=${_}&order_dir=" . ($order_by eq $_ ? 1 - $order_dir : $order_dir),
|
||||
},
|
||||
@header_sort);
|
||||
$form->{"title"} = $locale->text("Select a Customer");
|
||||
ddb162b6 | Sven Schöling | $form->header(no_layout => 1);
|
||
9aaca433 | Moritz Bunkus | print $form->parse_html_template("generic/select_vendor", { "HEADER" => \@header,
|
||
18407da4 | Sven Schöling | "VENDOR" => $vendor, });
|
||
54e4131e | Moritz Bunkus | |||
9257ca9a | Sven Schöling | $main::lxdebug->leave_sub();
|
||
54e4131e | Moritz Bunkus | }
|
||
8c7e4493 | Moritz Bunkus | # -------------------------------------------------------------------------
|
||
54e4131e | Moritz Bunkus | sub calculate_qty {
|
||
9257ca9a | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my $locale = $main::locale;
|
||||
54e4131e | Moritz Bunkus | |||
$form->{formel} =~ s/\r\n//g;
|
||||
my ($variable_string, $formel) = split /###/,$form->{formel};
|
||||
9257ca9a | Sven Schöling | my @variable;
|
||
54e4131e | Moritz Bunkus | |||
9257ca9a | Sven Schöling | foreach my $item (split m/;/, $variable_string) {
|
||
3bd1773c | Sven Schöling | next unless $item =~ m/^ \s* (\w+) \s* = \s* (\w+) \s* (\w+) \s* $/x;
|
||
push @variable, {
|
||||
description => $1,
|
||||
name => $2,
|
||||
unit => $3,
|
||||
};
|
||||
54e4131e | Moritz Bunkus | }
|
||
my @header_sort = qw(variable value unit);
|
||||
3bd1773c | Sven Schöling | my %header_title = (
|
||
variable => $locale->text("Variable"),
|
||||
value => $locale->text("Value"),
|
||||
unit => $locale->text("Unit"),
|
||||
);
|
||||
my @header = map +{
|
||||
column_title => $header_title{$_},
|
||||
column => $_,
|
||||
}, @header_sort;
|
||||
54e4131e | Moritz Bunkus | |||
8c7e4493 | Moritz Bunkus | $form->{formel} = $formel;
|
||
6770b19a | Bernd Bleßmann | my $html = $form->parse_html_template("generic/calculate_qty", { "HEADER" => \@header,
|
||
"VARIABLES" => \@variable, });
|
||||
print $::form->ajax_response_header, $html;
|
||||
54e4131e | Moritz Bunkus | |||
9257ca9a | Sven Schöling | $main::lxdebug->leave_sub();
|
||
54e4131e | Moritz Bunkus | }
|
||
8c7e4493 | Moritz Bunkus | # -------------------------------------------------------------------------
|
||
aacd5750 | Moritz Bunkus | sub H {
|
||
9257ca9a | Sven Schöling | return $main::locale->quote_special_chars('HTML', $_[0]);
|
||
aacd5750 | Moritz Bunkus | }
|
||
4826a1d1 | Moritz Bunkus | sub Q {
|
||
9257ca9a | Sven Schöling | return $main::locale->quote_special_chars('URL@HTML', $_[0]);
|
||
4826a1d1 | Moritz Bunkus | }
|
||
828bd683 | Moritz Bunkus | sub E {
|
||
9257ca9a | Sven Schöling | return $main::form->escape($_[0]);
|
||
828bd683 | Moritz Bunkus | }
|
||
cfc6a60d | Moritz Bunkus | sub NTI {
|
||
my ($element) = @_;
|
||||
$element =~ s/tabindex\s*=\s*"\d+"//;
|
||||
return $element;
|
||||
}
|
||||
acc2b53b | Moritz Bunkus | sub format_dates {
|
||
bc433711 | Moritz Bunkus | return $::form->format_dates(@_);
|
||
acc2b53b | Moritz Bunkus | }
|
||
sub reformat_numbers {
|
||||
463ea852 | Moritz Bunkus | return $::form->reformat_numbers(@_);
|
||
ebef09a8 | Thomas Kasulke | }
|
||
8c7e4493 | Moritz Bunkus | # -------------------------------------------------------------------------
|
||
9484d564 | Moritz Bunkus | sub show_history {
|
||
$main::lxdebug->enter_sub();
|
||||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
my $dbh = $form->dbconnect(\%myconfig);
|
||||
my ($sort, $sortby) = split(/\-\-/, $form->{order});
|
||||
$sort =~ s/.*\.(.*)/$1/;
|
||||
$form->{title} = $locale->text("History");
|
||||
ddb162b6 | Sven Schöling | $form->header(no_layout => 1);
|
||
fd8bde53 | Geoffrey Richardson | |||
387cb8fa | Bernd Bleßmann | my $callback = build_std_url(qw(action longdescription trans_id_type input_name));
|
||
fd8bde53 | Geoffrey Richardson | my $restriction;
|
||
if ( $form->{trans_id_type} eq 'glid' ) {
|
||||
3d8c8e2f | Martin Helmling | $restriction = "AND ( snumbers LIKE 'invnumber%' OR what_done LIKE '%Buchungsnummer%' OR snumbers LIKE 'gltransaction%' OR snumbers LIKE 'emailjournal%' ) ";
|
||
fd8bde53 | Geoffrey Richardson | } elsif ( $form->{trans_id_type} eq 'id' ) {
|
||
3d8c8e2f | Martin Helmling | $restriction = " AND ( snumbers NOT LIKE 'invnumber_%' AND snumbers NOT LIKE 'gltransaction%' AND snumbers NOT LIKE 'emailjournal%' AND (what_done NOT LIKE '%Buchungsnummer%' OR what_done IS null))";
|
||
fd8bde53 | Geoffrey Richardson | } else {
|
||
$restriction = '';
|
||||
};
|
||||
9484d564 | Moritz Bunkus | print $form->parse_html_template( "common/show_history", {
|
||
fd8bde53 | Geoffrey Richardson | "DATEN" => $form->get_history($dbh,$form->{input_name},$restriction,$form->{order}),
|
||
9484d564 | Moritz Bunkus | "SUCCESS" => ($form->get_history($dbh,$form->{input_name}) ne "0"),
|
||
uc($sort) => 1,
|
||||
ddb162b6 | Sven Schöling | uc($sort)."BY" => $sortby,
|
||
387cb8fa | Bernd Bleßmann | callback => $callback,
|
||
9484d564 | Moritz Bunkus | } );
|
||
$dbh->disconnect();
|
||||
$main::lxdebug->leave_sub();
|
||||
}
|
||||
# -------------------------------------------------------------------------
|
||||
40782548 | Moritz Bunkus | sub call_sub {
|
||
9257ca9a | Sven Schöling | $main::lxdebug->enter_sub();
|
||
40782548 | Moritz Bunkus | |||
my $name = shift;
|
||||
9257ca9a | Sven Schöling | my $form = $main::form;
|
||
my $locale = $main::locale;
|
||||
40782548 | Moritz Bunkus | if (!$name) {
|
||
$form->error($locale->text("Trying to call a sub without a name"));
|
||||
}
|
||||
$name =~ s/[^a-zA-Z0-9_]//g;
|
||||
if (!defined(&{ $name })) {
|
||||
$form->error(sprintf($locale->text("Attempt to call an undefined sub named '%s'"), $name));
|
||||
}
|
||||
9257ca9a | Sven Schöling | {
|
||
no strict "refs";
|
||||
&{ $name }(@_);
|
||||
}
|
||||
40782548 | Moritz Bunkus | |||
9257ca9a | Sven Schöling | $main::lxdebug->leave_sub();
|
||
40782548 | Moritz Bunkus | }
|
||
8c7e4493 | Moritz Bunkus | # -------------------------------------------------------------------------
|
||
fb4d2ffa | Moritz Bunkus | sub show_vc_details {
|
||
b65a230d | Sven Schöling | $main::lxdebug->enter_sub();
|
||
9257ca9a | Sven Schöling | |||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
fb4d2ffa | Moritz Bunkus | |||
$form->{vc} = $form->{vc} eq "customer" ? "customer" : "vendor";
|
||||
$form->isblank("vc_id",
|
||||
$form->{vc} eq "customer" ?
|
||||
$locale->text("No customer has been selected yet.") :
|
||||
$locale->text("No vendor has been selected yet."));
|
||||
Common->get_vc_details(\%myconfig, $form, $form->{vc}, $form->{vc_id});
|
||||
c853dd6e | Thomas Heck | $form->{discount_as_percent} = $form->format_amount(\%::myconfig, $form->parse_amount(\%::myconfig, $form->{discount}) * 100, 2);
|
||
fb4d2ffa | Moritz Bunkus | |||
$form->{title} = $form->{vc} eq "customer" ?
|
||||
$locale->text("Customer details") : $locale->text("Vendor details");
|
||||
ddb162b6 | Sven Schöling | $form->header(no_layout => 1);
|
||
9aaca433 | Moritz Bunkus | print $form->parse_html_template("common/show_vc_details", { "is_customer" => $form->{vc} eq "customer" });
|
||
fb4d2ffa | Moritz Bunkus | |||
b65a230d | Sven Schöling | $main::lxdebug->leave_sub();
|
||
fb4d2ffa | Moritz Bunkus | }
|
||
8c7e4493 | Moritz Bunkus | # -------------------------------------------------------------------------
|
||
sub retrieve_partunits {
|
||||
9257ca9a | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
8c7e4493 | Moritz Bunkus | |||
my @part_ids = grep { $_ } map { $form->{"id_${_}"} } (1..$form->{rowcount});
|
||||
if (@part_ids) {
|
||||
my %partunits = IO->retrieve_partunits('part_ids' => \@part_ids);
|
||||
foreach my $i (1..$form->{rowcount}) {
|
||||
next unless ($form->{"id_${i}"});
|
||||
$form->{"partunit_${i}"} = $partunits{$form->{"id_${i}"}};
|
||||
}
|
||||
}
|
||||
9257ca9a | Sven Schöling | $main::lxdebug->leave_sub();
|
||
8c7e4493 | Moritz Bunkus | }
|
||
# -------------------------------------------------------------------------
|
||||
91ab1ef6 | Sven Schöling | |||
ea2e84cc | Philip Reetz | |||
# Functions to call add routines beneath different reports
|
||||
sub sales_invoice {
|
||||
9257ca9a | Sven Schöling | $main::lxdebug->enter_sub();
|
||
ea2e84cc | Philip Reetz | |||
2827b2dc | Moritz Bunkus | print $::form->redirect_header('is.pl?action=add&type=invoice');
|
||
ea2e84cc | Philip Reetz | |||
9257ca9a | Sven Schöling | $main::lxdebug->leave_sub();
|
||
ea2e84cc | Philip Reetz | }
|
||
sub ar_transaction {
|
||||
9257ca9a | Sven Schöling | $main::lxdebug->enter_sub();
|
||
ea2e84cc | Philip Reetz | |||
2827b2dc | Moritz Bunkus | print $::form->redirect_header('ar.pl?action=add');
|
||
ea2e84cc | Philip Reetz | |||
9257ca9a | Sven Schöling | $main::lxdebug->leave_sub();
|
||
ea2e84cc | Philip Reetz | }
|
||
sub vendor_invoice {
|
||||
9257ca9a | Sven Schöling | $main::lxdebug->enter_sub();
|
||
ea2e84cc | Philip Reetz | |||
2827b2dc | Moritz Bunkus | print $::form->redirect_header('ir.pl?action=add&type=invoice');
|
||
ea2e84cc | Philip Reetz | |||
9257ca9a | Sven Schöling | $main::lxdebug->leave_sub();
|
||
ea2e84cc | Philip Reetz | }
|
||
sub ap_transaction {
|
||||
9257ca9a | Sven Schöling | $main::lxdebug->enter_sub();
|
||
ea2e84cc | Philip Reetz | |||
2827b2dc | Moritz Bunkus | print $::form->redirect_header('ap.pl?action=add');
|
||
ea2e84cc | Philip Reetz | |||
9257ca9a | Sven Schöling | $main::lxdebug->leave_sub();
|
||
ea2e84cc | Philip Reetz | }
|
||
sub gl_transaction {
|
||||
9257ca9a | Sven Schöling | $main::lxdebug->enter_sub();
|
||
ea2e84cc | Philip Reetz | |||
2827b2dc | Moritz Bunkus | print $::form->redirect_header('gl.pl?action=add');
|
||
ea2e84cc | Philip Reetz | |||
9257ca9a | Sven Schöling | $main::lxdebug->leave_sub();
|
||
ea2e84cc | Philip Reetz | }
|
||
1e513d1d | Moritz Bunkus | sub db {
|
||
goto &SL::DB::Helper::Mappings::db;
|
||||
f97b0778 | Sven Schöling | }
|
||
46b5ee69 | Moritz Bunkus | sub continue { call_sub($::form->{nextsub}); }
|
||
ed42de15 | Moritz Bunkus | 1;
|