Revision f7f03503
Von Sven Schöling vor etwa 12 Jahren hinzugefügt
bin/mozilla/cp.pl | ||
---|---|---|
84 | 84 |
|
85 | 85 |
# Standard Konto für Umlaufvermögen |
86 | 86 |
my $accno_arap = IS->get_standard_accno_current_assets(\%myconfig, \%$form); |
87 |
# Entsprechend präventiv die Auswahlliste für Kontonummer
|
|
87 |
# Entsprechend präventiv die Auswahlliste für Kontonummer |
|
88 | 88 |
# auch mit value= zusammenbauen (s.a. oben bugfix 1771) |
89 | 89 |
# Wichtig: Auch das Template anpassen, damit hidden input korrekt die " |
90 | 90 |
# escaped. |
... | ... | |
114 | 114 |
$form->{defaultcurrency} = $form->{currency} = $form->{oldcurrency} = |
115 | 115 |
$curr[0]; |
116 | 116 |
|
117 |
# Entsprechend präventiv die Auswahlliste für Währungen
|
|
117 |
# Entsprechend präventiv die Auswahlliste für Währungen |
|
118 | 118 |
# auch mit value= zusammenbauen (s.a. oben bugfix 1771) |
119 | 119 |
$form->{selectcurrency} = ""; |
120 | 120 |
map { $form->{selectcurrency} .= "<option value=\"$_\">$_</option>\n" } @curr; |
... | ... | |
168 | 168 |
|
169 | 169 |
$arap = lc $form->{ARAP}; |
170 | 170 |
$onload = qq|focus()|; |
171 |
$onload .= qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|; |
|
172 |
$onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|; |
|
173 | 171 |
|
174 | 172 |
print $::form->parse_html_template('cp/form_header', { |
175 | 173 |
is_customer => $form->{vc} eq 'customer', |
... | ... | |
278 | 276 |
$form->{customer_id} = $form->{AR}[0]{customer_id}; |
279 | 277 |
} |
280 | 278 |
|
281 |
# search by invoicenumber,
|
|
282 |
if ($form->{invnumber}) {
|
|
279 |
# search by invoicenumber, |
|
280 |
if ($form->{invnumber}) { |
|
283 | 281 |
$form->{open} ='Y'; # only open invoices |
284 | 282 |
if ($form->{ARAP} eq 'AR'){ |
285 | 283 |
# ar_transactions automatically searches by $form->{customer_id} or else |
Auch abrufbar als: Unified diff
setupPoints und setupDateFormat in ein partial Layout verschoben