Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 744cfc20

Von Philip Reetz vor mehr als 18 Jahren hinzugefügt

  • ID 744cfc2096349710e763d5103eef3250c52a32db
  • Vorgänger 1182c721
  • Nachfolger ab198db3

Anpassung Dialogbuchen an neues Steuersystem

Unterschiede anzeigen:

SL/GL.pm
# insert acc_trans transactions
for $i (1 .. $form->{rowcount}) {
my $taxkey;
my $rate;
# extract accno
print(STDERR $form->{"taxchart_$i"}, "TAXCHART\n");
my ($accno) = split(/--/, $form->{"accno_$i"});
my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
($form->{"tax_id_$i"}, $NULL) = split /--/, $form->{"taxchart_$i"};
if ($form->{"tax_id_$i"} ne "") {
$query = qq|SELECT t.taxkey, t.rate
FROM tax t
WHERE t.id=$form->{"tax_id_$i"}|;
$sth = $dbh->prepare($query);
$sth->execute || $form->dberror($query);
($taxkey, $rate) =
$sth->fetchrow_array;
$sth->finish;
}
my $amount = 0;
my $debit = $form->{"debit_$i"};
my $credit = $form->{"credit_$i"};
......
VALUES
($form->{id}, (SELECT t.chart_id
FROM tax t
WHERE t.taxkey = $taxkey),
WHERE t.id = $form->{"tax_id_$i"}),
$amount, '$form->{transdate}', |
. $dbh->quote($form->{"source_$i"}) . qq|, |
. $dbh->quote($form->{"memo_$i"}) . qq|,
......
WHERE a.chart_id = c.id
AND a.trans_id = $form->{id}
ORDER BY a.oid";
$query = qq|SELECT c.accno, t.taxkey AS accnotaxkey, a.amount, a.memo,
a.transdate, a.cleared, a.project_id, p.projectnumber,(SELECT p.projectnumber FROM project p
WHERE a.project_id = p.id) AS projectnumber, a.taxkey, t.rate AS taxrate, t.id, (SELECT c1.accno FROM chart c1, tax t1 WHERE t1.id=t.id AND c1.id=t.chart_id) AS taxaccno
FROM acc_trans a
JOIN chart c ON (c.id = a.chart_id)
LEFT JOIN project p ON (p.id = a.project_id)
LEFT JOIN tax t ON (t.id=(SELECT tk.tax_id from taxkeys tk WHERE (tk.taxkey_id=a.taxkey) AND ((CASE WHEN a.chart_id IN (SELECT chart_id FROM taxkeys WHERE taxkey_id=a.taxkey) THEN tk.chart_id=a.chart_id ELSE 1=1 END) OR (c.link='%tax%')) AND startdate <=a.transdate ORDER BY startdate DESC LIMIT 1))
WHERE a.trans_id = $form->{id}
AND a.fx_transaction = '0'
ORDER BY a.oid,a.transdate|;
$sth = $dbh->prepare($query);
$sth->execute || $form->dberror($query);
......
}
$sth->finish;
my $transdate = "current_date";
if ($form->{transdate}) {
$transdate = qq|'$form->{transdate}'|;
}
# get chart of accounts
$query = qq|SELECT c.accno, c.description, c.taxkey_id
FROM chart c
WHERE c.charttype = 'A'
ORDER by c.accno|;
$query = qq|SELECT c.accno, c.description, c.link, tk.taxkey_id, tk.tax_id
FROM chart c
LEFT JOIN taxkeys tk ON (tk.id = (SELECT id from taxkeys where taxkeys.chart_id =c.id AND startdate<=$transdate ORDER BY startdate desc LIMIT 1))
ORDER BY c.accno|;
$sth = $dbh->prepare($query);
$sth->execute || $form->dberror($query);
$form->{chart} = ();
bin/mozilla/gl.pl
map {
$chart .=
"<option value=\"$_->{accno}--$_->{taxkey_id}\">$_->{accno}--$_->{description}</option>"
"<option value=\"$_->{accno}--$_->{tax_id}\">$_->{accno}--$_->{description}</option>"
} @{ $form->{chart} };
map {
$tax .=
qq|<option value="$_->{taxkey}--$_->{rate}">$_->{taxdescription} |
qq|<option value="$_->{id}--$_->{rate}">$_->{taxdescription} |
. ($_->{rate} * 100) . qq| %|
} @{ $form->{TAX} };
......
GL->transaction(\%myconfig, \%$form);
map {
$chart .=
"<option value=\"$_->{accno}--$_->{taxkey_id}\">$_->{accno}--$_->{description}</option>"
"<option value=\"$_->{accno}--$_->{tax_id}\">$_->{accno}--$_->{description}</option>"
} @{ $form->{chart} };
map {
$tax .=
qq|<option value="$_->{taxkey}--$_->{rate}">$_->{taxdescription} |
qq|<option value="$_->{id}--$_->{rate}">$_->{taxdescription} |
. ($_->{rate} * 100) . qq| %|
} @{ $form->{TAX} };
......
$j = $i - 1;
if ($tax && ($ref->{accno} eq $taxaccno)) {
$form->{"tax_$j"} = abs($ref->{amount});
$form->{"taxchart_$j"} = $ref->{taxkey} . "--" . $ref->{taxrate};
$form->{"taxchart_$j"} = $ref->{id} . "--" . $ref->{taxrate};
if ($form->{taxincluded}) {
if ($ref->{amount} < 0) {
$form->{"debit_$j"} += $form->{"tax_$j"};
......
. qq|>$accno</select></td>|;
$tax = $taxchart;
$tax_selected = $form->{"taxchart_$i"};
print(STDERR "TAX_SELCTED $tax_selected\n");
$tax =~ s/value=\"$tax_selected\"/value=\"$tax_selected\" selected/;
$tax =
qq|<td><select id="taxchart_$i" name="taxchart_$i" tabindex=|
......
<!--
function setTaxkey(accno, row) {
var taxkey = accno.options[accno.selectedIndex].value;
var reg = /--([0-9])*/;
var reg = /--([0-9]*)/;
var found = reg.exec(taxkey);
var index = found[1];
index = parseInt(index);

Auch abrufbar als: Unified diff