projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
238d4f5
)
Projektnummern in Dialogbuchen mitschleifen wenn show_details aus ist.
author
Sven Schöling
<s.schoeling@linet-services.de>
Tue, 23 Mar 2010 11:53:43 +0000
(12:53 +0100)
committer
Sven Schöling
<s.schoeling@linet-services.de>
Tue, 23 Mar 2010 11:53:43 +0000
(12:53 +0100)
Fix für Bug 1377.
bin/mozilla/gl.pl
patch
|
blob
|
history
diff --git
a/bin/mozilla/gl.pl
b/bin/mozilla/gl.pl
index
f5f8460
..
5834a48
100644
(file)
--- a/
bin/mozilla/gl.pl
+++ b/
bin/mozilla/gl.pl
@@
-965,6
+965,8
@@
sub display_rows {
'-values' => \@project_values,
'-labels' => \%project_labels,
'-default' => $form->{"project_id_$i"} ));
+ my $projectnumber_hidden = qq|
+ <input type="hidden" name="project_id_$i" value="$form->{"project_id_$i"}">|;
my $copy2credit = 'onkeyup="copy_debit_to_credit()"' if $i == 1;
@@
-983,10
+985,14
@@
sub display_rows {
$memo
<td>$projectnumber</td>
|;
- }
+ }
else {
print qq|
$source_hidden
$memo_hidden
+ $projectnumber_hidden
+ |;
+ }
+ print qq|
</tr>
|;
}