Revision a1486b4e
Von Moritz Bunkus vor etwa 17 Jahren hinzugefügt
sql/Pg-upgrade/Pg-upgrade-2.2.0.33-2.2.0.34.pl | ||
---|---|---|
302 | 302 |
$entry->{"eur"} = $main::eur; |
303 | 303 |
} |
304 | 304 |
|
305 |
# $form->parse_html_template("dbupgrade/buchungsgruppen_parts") |
|
306 |
# $form->parse_html_template("dbupgrade/buchungsgruppen_services") |
|
307 |
# $form->parse_html_template("dbupgrade/buchungsgruppen_assemblies") |
|
308 |
|
|
309 |
print($form->parse_html_template("dbupgrade/buchungsgruppen_${type}", |
|
310 |
{ "LIST" => $list, |
|
311 |
"BUCHUNGSGRUPPEN" => $buchungsgruppen, |
|
312 |
})); |
|
305 |
# $form->parse_html_template2("dbupgrade/buchungsgruppen_parts")
|
|
306 |
# $form->parse_html_template2("dbupgrade/buchungsgruppen_services")
|
|
307 |
# $form->parse_html_template2("dbupgrade/buchungsgruppen_assemblies")
|
|
308 |
|
|
309 |
print($form->parse_html_template2("dbupgrade/buchungsgruppen_${type}",
|
|
310 |
{ "LIST" => $list,
|
|
311 |
"BUCHUNGSGRUPPEN" => $buchungsgruppen,
|
|
312 |
}));
|
|
313 | 313 |
} |
314 | 314 |
|
315 | 315 |
sub create_buchungsgruppen { |
... | ... | |
459 | 459 |
|
460 | 460 |
my ($acc_inventory, $acc_income, $acc_expense) = retrieve_accounts(); |
461 | 461 |
|
462 |
print($form->parse_html_template("dbupgrade/buchungsgruppen_header")); |
|
462 |
print($form->parse_html_template2("dbupgrade/buchungsgruppen_header"));
|
|
463 | 463 |
|
464 | 464 |
if (scalar(@{$parts})) { |
465 | 465 |
display_create_bgs_dialog("parts", $parts, |
... | ... | |
467 | 467 |
$buchungsgruppen); |
468 | 468 |
return 2; |
469 | 469 |
} else { |
470 |
print($form->parse_html_template("dbupgrade/buchungsgruppen_parts_done")); |
|
470 |
print($form->parse_html_template2("dbupgrade/buchungsgruppen_parts_done"));
|
|
471 | 471 |
} |
472 | 472 |
|
473 | 473 |
if (scalar(@{$services})) { |
... | ... | |
476 | 476 |
$buchungsgruppen); |
477 | 477 |
return 2; |
478 | 478 |
} else { |
479 |
print($form->parse_html_template("dbupgrade/buchungsgruppen_services_done")); |
|
479 |
print($form->parse_html_template2("dbupgrade/buchungsgruppen_services_done"));
|
|
480 | 480 |
} |
481 | 481 |
|
482 | 482 |
if (scalar(@{$assemblies})) { |
... | ... | |
485 | 485 |
$buchungsgruppen); |
486 | 486 |
return 2; |
487 | 487 |
} else { |
488 |
print($form->parse_html_template("dbupgrade/buchungsgruppen_assemblies_done")); |
|
488 |
print($form->parse_html_template2("dbupgrade/buchungsgruppen_assemblies_done"));
|
|
489 | 489 |
} |
490 | 490 |
|
491 |
print($form->parse_html_template("dbupgrade/buchungsgruppen_footer")); |
|
491 |
print($form->parse_html_template2("dbupgrade/buchungsgruppen_footer"));
|
|
492 | 492 |
|
493 | 493 |
return 1; |
494 | 494 |
} |
Auch abrufbar als: Unified diff
Umstellung der Vorlagen aus templates/webpages/dbupgrade von HTML::Template auf Template.