Revision 55a380fc
Von Bernd Blessmann vor etwa 13 Jahren hinzugefügt
bin/mozilla/ap.pl | ||
---|---|---|
1079 | 1079 |
|
1080 | 1080 |
$main::auth->assert('general_ledger'); |
1081 | 1081 |
|
1082 |
my ($inline) = @_; |
|
1083 |
|
|
1082 | 1084 |
# check if there is a vendor, invoice and due date |
1083 | 1085 |
$form->isblank("transdate", $locale->text("Invoice Date missing!")); |
1084 | 1086 |
$form->isblank("duedate", $locale->text("Due Date missing!")); |
... | ... | |
1153 | 1155 |
# /saving the history |
1154 | 1156 |
remove_draft() if $form->{remove_draft}; |
1155 | 1157 |
# Dieser Text wird niemals ausgegeben: Probleme beim redirect? |
1156 |
$form->redirect($locale->text('Transaction posted!')); |
|
1158 |
$form->redirect($locale->text('Transaction posted!')) unless $inline;
|
|
1157 | 1159 |
} else { |
1158 | 1160 |
$form->error($locale->text('Cannot post transaction!')); |
1159 | 1161 |
} |
Auch abrufbar als: Unified diff
post auch als inline aufrufbar
damit es von einem Skript aus benutzt werden kann.