}
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>
-
-</body>
-</html>
-|;
+ $::lxdebug->enter_sub;
+ $::auth->assert('config');
+
+ 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;
+ $::lxdebug->enter_sub;
+ $::auth->assert('config');
- $main::auth->assert('config');
-
- AM->lead(\%myconfig, \%$form);
-
- $form->{callback} = "am.pl?action=list_lead";
-
- my $callback = $form->escape($form->{callback});
+ AM->lead(\%::myconfig, $::form);
- $form->{title} = $locale->text('Lead');
+ $::form->{callback} = "am.pl?action=list_lead";
+ $::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;
+ $::form->header;
+ print $::form->parse_html_template('am/lead_list');
- 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>
-
-<input name=callback type=hidden value="$form->{callback}">
-
-<input type=hidden name=type value=lead>
-
-<input class=submit type=submit name=action value="|
- . $locale->text('Add') . qq|">
-
- </form>
-
- </body>
- </html>
-|;
-
- $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 {
}
sub list_language {
- $main::lxdebug->enter_sub();
-
- my $form = $main::form;
- my %myconfig = %main::myconfig;
- my $locale = $main::locale;
-
- $main::auth->assert('config');
-
- AM->language(\%myconfig, \%$form);
-
- $form->{callback} = "am.pl?action=list_language";
-
- my $callback = $form->escape($form->{callback});
-
- $form->{title} = $locale->text('Languages');
-
- my @column_index = qw(description template_code article_code output_numberformat output_dateformat output_longdates);
- my %column_header;
- $column_header{description} =
- qq|<th class=listheading width=60%>|
- . $locale->text('Description')
- . qq|</th>|;
- $column_header{template_code} =
- qq|<th class=listheading width=10%>|
- . $locale->text('Template Code')
- . qq|</th>|;
- $column_header{article_code} =
- qq|<th class=listheading>|
- . $locale->text('Article Code')
- . qq|</th>|;
- $column_header{output_numberformat} =
- qq|<th class=listheading>|
- . $locale->text('Number Format')
- . qq|</th>|;
- $column_header{output_dateformat} =
- qq|<th class=listheading>|
- . $locale->text('Date Format')
- . qq|</th>|;
- $column_header{output_longdates} =
- qq|<th class=listheading>|
- . $locale->text('Long Dates')
- . qq|</th>|;
-
- $form->header;
-
- print qq|
-<body>
-
-<table width=100%>
- <tr>
- <th class=listtop>$form->{title}</th>
- </tr>
- <tr height="5"></tr>
- <tr>
- <td>
- <table width=100%>
- <tr class=listheading>
-|;
+ $::lxdebug->enter_sub;
+ $::auth->assert('config');
- map { print "$column_header{$_}\n" } @column_index;
+ AM->language(\%::myconfig, $::form);
- print qq|
- </tr>
-|;
+ $::form->{callback} = "am.pl?action=list_language";
+ $::form->{title} = $::locale->text('Languages');
- my ($i, %column_data);
- foreach my $ref (@{ $form->{ALL} }) {
+ $::form->header;
- $i++;
- $i %= 2;
+ print $::form->parse_html_template('am/language_list');
- print qq|
- <tr valign=top class=listrow$i>
-|;
-
-
- $column_data{description} =
- qq|<td><a href="am.pl?action=edit_language&id=$ref->{id}&callback=$callback">$ref->{description}</td>|;
- $column_data{template_code} = qq|<td align=right>$ref->{template_code}</td>|;
- $column_data{article_code} =
- qq|<td align=right>$ref->{article_code}</td>|;
- $column_data{output_numberformat} =
- "<td nowrap>" .
- ($ref->{output_numberformat} ? $ref->{output_numberformat} :
- $locale->text("use program settings")) .
- "</td>";
- $column_data{output_dateformat} =
- "<td nowrap>" .
- ($ref->{output_dateformat} ? $ref->{output_dateformat} :
- $locale->text("use program settings")) .
- "</td>";
- $column_data{output_longdates} =
- "<td nowrap>" .
- ($ref->{output_longdates} ? $locale->text("Yes") : $locale->text("No")) .
- "</td>";
-
- map { print "$column_data{$_}\n" } @column_index;
-
- print qq|
- </tr>
-|;
- }
-
- print qq|
- </table>
- </td>
- </tr>
- <tr>
- <td><hr size=3 noshade></td>
- </tr>
-</table>
-
-<br>
-<form method=post action=am.pl>
-
-<input name=callback type=hidden value="$form->{callback}">
-
-<input type=hidden name=type value=language>
-
-<input class=submit type=submit name=action value="|
- . $locale->text('Add') . qq|">
-
- </form>
-
- </body>
- </html>
-|;
-
- $main::lxdebug->leave_sub();
+ $::lxdebug->leave_sub;
}
sub language_header {
- $main::lxdebug->enter_sub();
-
- my $form = $main::form;
- my $locale = $main::locale;
-
- $main::auth->assert('config');
-
- $form->{title} = $locale->text("$form->{title} Language");
+ $::lxdebug->enter_sub;
+ $::auth->assert('config');
# $locale->text('Add Language')
# $locale->text('Edit Language')
+ $::form->{title} = $::locale->text("$::form->{title} Language");
- $form->{description} =~ s/\"/"/g;
- $form->{template_code} =~ s/\"/"/g;
- $form->{article_code} =~ s/\"/"/g;
-
-
- $form->header;
-
- my $numberformat =
- qq|<option value="">| . $locale->text("use program settings") .
- qq|</option>|;
- foreach my $item (('1,000.00', '1000.00', '1.000,00', '1000,00')) {
- $numberformat .=
- ($item eq $form->{output_numberformat})
- ? "<option selected>$item"
- : "<option>$item"
- . "</option>";
- }
+ $::form->header;
- my $dateformat =
- qq|<option value="">| . $locale->text("use program settings") .
- qq|</option>|;
- foreach my $item (qw(mm-dd-yy mm/dd/yy dd-mm-yy dd/mm/yy dd.mm.yy yyyy-mm-dd)) {
- $dateformat .=
- ($item eq $form->{output_dateformat})
- ? "<option selected>$item"
- : "<option>$item"
- . "</option>";
- }
-
- print qq|
-<body>
-
-<form method=post action=am.pl>
-
-<input type=hidden name=id value=$form->{id}>
-<input type=hidden name=type value=language>
-
-<table width=100%>
- <tr>
- <th class=listtop colspan=2>$form->{title}</th>
- </tr>
- <tr height="5"></tr>
- <tr>
- <th align=right>| . $locale->text('Language') . qq|</th>
- <td><input name=description size=30 value="| . $form->quote($form->{description}) . qq|"></td>
- <tr>
- <tr>
- <th align=right>| . $locale->text('Template Code') . qq|</th>
- <td><input name=template_code size=5 value="| . $form->quote($form->{template_code}) . qq|"></td>
- </tr>
- <tr>
- <th align=right>| . $locale->text('Article Code') . qq|</th>
- <td><input name=article_code size=10 value="| . $form->quote($form->{article_code}) . qq|"></td>
- </tr>
- <tr>
- <th align=right>| . $locale->text('Number Format') . qq|</th>
- <td><select name="output_numberformat">$numberformat</select></td>
- </tr>
- <tr>
- <th align=right>| . $locale->text('Date Format') . qq|</th>
- <td><select name="output_dateformat">$dateformat</select></td>
- </tr>
- <tr>
- <th align=right>| . $locale->text('Long Dates') . qq|</th>
- <td><input type="radio" name="output_longdates" value="1"| .
- ($form->{output_longdates} ? " checked" : "") .
- qq|>| . $locale->text("Yes") .
- qq|<input type="radio" name="output_longdates" value="0"| .
- ($form->{output_longdates} ? "" : " checked") .
- qq|>| . $locale->text("No") .
- qq|</td>
- </tr>
- <td colspan=2><hr size=3 noshade></td>
- </tr>
-</table>
-|;
+ print $::form->parse_html_template('am/language_header', {
+ numberformats => [ '1,000.00', '1000.00', '1.000,00', '1000,00' ],
+ dateformats => [ qw(mm-dd-yy mm/dd/yy dd-mm-yy dd/mm/yy dd.mm.yy yyyy-mm-dd) ],
+ });
- $main::lxdebug->leave_sub();
+ $::lxdebug->leave_sub;
}
sub save_language {
}
my $linkaccounts;
- if ( $::instance_conf->get_inventory_system eq 'perpetual' ) { # was !$::lx_office_conf{system}->{eur}) {
+ if ( $::instance_conf->get_inventory_system eq 'perpetual' ) { # was !$::lx_office_conf{system}->{eur}) { }
$linkaccounts = qq|
<tr>
<th align=right>| . $locale->text('Inventory') . qq|</th>