X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FController%2FMebil.pm;h=570e07011884ecfd7ab063d9031b5d647f9a5699;hb=2a0cbd885790174fa0f212e6661b30362650a42c;hp=fd77ce5b0cc983e0cdbf50bbe3e91fd1739407ff;hpb=94f9e49cf0c78ea87d2148e269b9dbc679bbc41b;p=kivitendo-erp.git diff --git a/SL/Controller/Mebil.pm b/SL/Controller/Mebil.pm index fd77ce5b0..570e07011 100644 --- a/SL/Controller/Mebil.pm +++ b/SL/Controller/Mebil.pm @@ -51,6 +51,9 @@ sub action_showmap { $::lxdebug->enter_sub; my ($self) = @_; + # call model -> diese Zeile ist fraglich, war ein Konflikt + #$self->{data} = DB::MebilMapping::getMappings($::form->get_standard_dbh); + $::form->{title} = $::locale->text('Mebil Map'); my $sql = "SELECT fromacc,typ,toacc from mebil_mapping order by ordering"; @@ -62,6 +65,89 @@ sub action_showmap { $::lxdebug->leave_sub; } +sub extract_rule { + my $rule = shift; + my $part = $rule; + $part =~ s/:.*//; + if ($rule =~ /:/) { + $rule =~ s/[^:]*://; + } + else { + $rule = ""; + } + $::lxdebug->message(5, "part=$part"); + return ($part,$rule); +} + +sub rule2sql { + $::lxdebug->enter_sub; + + my $rule = shift; + my $year = shift; + $::lxdebug->message(5, "rule=$rule"); + + # a rule consists of key=value pairs seperated by colon. Possible keys are: + # - ACC: account number + # - VALUES=positive|negative: only positive or negative values are selected + # negative implies INVERT=true + # - INVERT=true: Result is multiplied by -1 + # - START=YEAR: start year. Absolute ('2020') or relative ('YEAR/PY') + # - END=YEAR: end year. Default: $year + + # supply defaults: + my $acc = "0000"; + my $values = ""; + my $invert = ""; + my $start = ""; + my $end = "AND (ac.transdate <= '31.12.$year')"; + my $py = $year - 1; + + # parse rule + (my $part,$rule) = extract_rule($rule); + $::lxdebug->message(5, "part=$part"); + while ($part) { + $part =~ /(.*)=(.*)/; + if ($1 eq "ACC") { + $acc = $2; + } + elsif ($1 eq "VALUES") { + if ($2 eq "positive") { + $values = "AND (ac.amount > 0)"; + } + elsif ($2 eq "negative") { + $values = "AND (ac.amount < 0)"; + $invert = "* (-1)"; + } + else { + die "invalid rule part: $part"; + } + } + elsif ($1 eq "INVERT") { + $invert = "* (-1)"; + } + elsif ($1 eq "START") { + $start = "AND (ac.transdate >= '01.01.$2')"; + $start =~ s/YEAR/$year/; + $start =~ s/PY/$py/; + } + elsif ($1 eq "END") { + $end = "AND (ac.transdate <= '31.12.$2')"; + $end =~ s/YEAR/$year/; + $end =~ s/PY/$py/; + } + else { + die "invalid rule part: $part"; + } + ($part,$rule) = extract_rule($rule); + } + + $::lxdebug->leave_sub; + return "SELECT SUM(ac.amount) $invert AS saldo + FROM acc_trans ac + JOIN chart c ON (c.id = ac.chart_id) + WHERE (c.accno = '$acc') $values $start $end"; +} + sub action_calcmap { $::lxdebug->enter_sub; my ($self) = @_; @@ -117,6 +203,13 @@ sub action_calcmap { # substract from other account $toacc{$mapping->{toacc}} -= $toacc{$mapping->{fromacc}}; } + elsif ($mapping->{typ} eq 'R') { + # rule based + my $sql = rule2sql($mapping->{fromacc}, $year); + $::lxdebug->message(5, "sql=$sql"); + my @result = SL::DBUtils::selectfirst_array_query($::form, $::form->get_standard_dbh, $sql); + $toacc{$mapping->{toacc}} += $result[0]; + } elsif ($mapping->{typ} eq 'C') { # constant value ; # do nothing here @@ -151,8 +244,8 @@ sub action_calcmap { $self->add_data_sorted(\%fromacc); $self->add_data_sorted(\%toacc); - return $self->report->generate_with_headers; $::lxdebug->leave_sub; + return $self->report->generate_with_headers; } sub add_data_sorted { my $self = shift;