}
sub form_footer {
- $main::lxdebug->enter_sub();
-
- my $form = $main::form;
- my $locale = $main::locale;
-
- $main::auth->assert('config');
-
- print qq|
-
-<input name=callback type=hidden value="| . H($form->{callback}) . qq|">
-
-<br>|;
- if ((!$form->{id}) || ($form->{id} && $form->{orphaned}) || (($form->{type} eq "account") && (!$form->{new_chart_valid}))) {
- print qq|
-<input type=submit class=submit name=action value="|
- . $locale->text('Save') . qq|">
-|;
-}
-
- if ($form->{id} && $form->{orphaned}) {
- print qq|<input type=submit class=submit name=action value="|
- . $locale->text('Delete') . qq|">|;
- }
-
- if ($form->{id} && $form->{type} eq "account") {
- print qq|
- <input class=submit type=submit name=action value="|
- . $locale->text('Save as new') . qq|">|;
- }
-
- print qq|
-</form>
+ $::lxdebug->enter_sub;
+ $::auth->assert('config');
-</body>
-</html>
-|;
+ print $::form->parse_html_template('am/form_footer', {
+ show_save => !$::form->{id}
+ || ($::form->{id} && $::form->{orphaned})
+ || ($::form->{type} eq "account" && !$::form->{new_chart_valid}),
+ show_delete => $::form->{id} && $::form->{orphaned},
+ show_save_as_new => $::form->{id} && $::form->{type} eq "account",
+ });
- $main::lxdebug->leave_sub();
+ $::lxdebug->leave_sub;
}
sub save_account {
}
sub list_lead {
- $main::lxdebug->enter_sub();
-
- my $form = $main::form;
- my %myconfig = %main::myconfig;
- my $locale = $main::locale;
-
- $main::auth->assert('config');
-
- AM->lead(\%myconfig, \%$form);
-
- $form->{callback} = "am.pl?action=list_lead";
-
- my $callback = $form->escape($form->{callback});
-
- $form->{title} = $locale->text('Lead');
-
- my @column_index = qw(description cost profit);
- my %column_header;
- $column_header{description} =
- qq|<th class=listheading width=100%>|
- . $locale->text('Description')
- . qq|</th>|;
-
- $form->header;
-
- print qq|
-<body>
-
-<table width=100%>
- <tr>
- <th class=listtop>$form->{title}</th>
- </tr>
- <tr height="5"></tr>
- <tr class=listheading>
-|;
-
- map { print "$column_header{$_}\n" } @column_index;
-
- print qq|
- </tr>
-|;
-
- my ($i, %column_data);
- foreach my $ref (@{ $form->{ALL} }) {
-
- $i++;
- $i %= 2;
-
- print qq|
- <tr valign=top class=listrow$i>
-|;
-
-# $lead = $ref->{lead};
-
- $column_data{description} = qq|<td><a href="am.pl?action=edit_lead&id=$ref->{id}&callback=$callback">$ref->{lead}</td>|;
-
- map { print "$column_data{$_}\n" } @column_index;
-
- print qq|
- </tr>
-|;
- }
-
- print qq|
- <tr>
- <td><hr size=3 noshade></td>
- </tr>
-</table>
-
-<br>
-<form method=post action=am.pl>
+ $::lxdebug->enter_sub;
+ $::auth->assert('config');
-<input name=callback type=hidden value="$form->{callback}">
+ AM->lead(\%::myconfig, $::form);
-<input type=hidden name=type value=lead>
+ $::form->{callback} = "am.pl?action=list_lead";
+ $::form->{title} = $::locale->text('Lead');
-<input class=submit type=submit name=action value="|
- . $locale->text('Add') . qq|">
-
- </form>
-
- </body>
- </html>
-|;
+ $::form->header;
+ print $::form->parse_html_template('am/lead_list');
- $main::lxdebug->leave_sub();
+ $::lxdebug->leave_sub;
}
sub lead_header {
- $main::lxdebug->enter_sub();
-
- my $form = $main::form;
- my $locale = $main::locale;
-
- $main::auth->assert('config');
-
- $form->{title} = $locale->text("$form->{title} Lead");
+ $::lxdebug->enter_sub;
+ $::auth->assert('config');
# $locale->text('Add Lead')
# $locale->text('Edit Lead')
+ $::form->{title} = $::locale->text("$::form->{title} Lead");
- $form->{description} =~ s/\"/"/g;
-
- my $description =
- qq|<input name=description size=50 value="$form->{lead}">|;
-
- $form->header;
-
- print qq|
-<body>
-
-<form method=post action=am.pl>
-
-<input type=hidden name=id value=$form->{id}>
-<input type=hidden name=type value=lead>
-
-<table width=100%>
- <tr>
- <th class=listtop colspan=2>$form->{title}</th>
- </tr>
- <tr height="5"></tr>
- <tr>
- <th align=right>| . $locale->text('Description') . qq|</th>
- <td>$description</td>
- </tr>
- <td colspan=2><hr size=3 noshade></td>
- </tr>
-</table>
-|;
+ $::form->header;
+ print $::form->parse_html_template('am/lead_header');
- $main::lxdebug->leave_sub();
+ $::lxdebug->leave_sub;
}
sub save_lead {