Revision a0f6a00c
Von Thomas Kasulke vor mehr als 17 Jahren hinzugefügt
bin/mozilla/gl.pl | ||
---|---|---|
1544 | 1544 |
if (GL->delete_transaction(\%myconfig, \%$form)){ |
1545 | 1545 |
# saving the history |
1546 | 1546 |
if(!exists $form->{addition} && $form->{id} ne "") { |
1547 |
$form->{snumber} = qq|ordnumber_| . $form->{ordnumber}; |
|
1547 | 1548 |
$form->{addition} = "DELETED"; |
1548 | 1549 |
$form->save_history($form->dbconnect(\%myconfig)); |
1549 | 1550 |
} |
... | ... | |
1737 | 1738 |
undef($form->{callback}); |
1738 | 1739 |
# saving the history |
1739 | 1740 |
if(!exists $form->{addition} && $form->{id} ne "") { |
1741 |
$form->{snumber} = qq|ordnumber_| . $form->{ordnumber}; |
|
1740 | 1742 |
$form->{addition} = "SAVED"; |
1741 | 1743 |
$form->{what_done} = $locale->text("Buchungsnummer") . " = " . $form->{id}; |
1742 | 1744 |
$form->save_history($form->dbconnect(\%myconfig)); |
... | ... | |
1763 | 1765 |
$form->{storno} = 1; |
1764 | 1766 |
# saving the history |
1765 | 1767 |
if(!exists $form->{addition} && $form->{id} ne "") { |
1768 |
$form->{snumber} = qq|ordnumber_| . $form->{ordnumber}; |
|
1766 | 1769 |
$form->{addition} = "STORNO"; |
1767 | 1770 |
$form->save_history($form->dbconnect(\%myconfig)); |
1768 | 1771 |
} |
Auch abrufbar als: Unified diff
history_search auf Buchungsnummern etcpp angepasst, so dass man auch gelöschte Daten in der Historie suchen kann.
Anpassungen innerhalb der Variablenübergabe:
$form->{snumbers} muß beim speichern der history gesetzt werden (z.B. $form->{snumbers} = qq|invnumber_| . $form->{invnumber}; )