Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision de6cead5

Von Sven Schöling vor mehr als 15 Jahren hinzugefügt

  • ID de6cead5597b9a1f7491f7b73a13f824589364b5
  • Vorgänger cb0dfa9a
  • Nachfolger 0c095a8e

is form_footer: weitere exportierte variablen

Unterschiede anzeigen:

bin/mozilla/is.pl
my $form = $main::form;
my %myconfig = %main::myconfig;
my $locale = $main::locale;
my $cgi = $main::cgi;
$main::auth->assert('invoice_edit');
$form->{invtotal} = $form->{invsubtotal};
$form->{invtotal} = $form->{invsubtotal};
$form->{oldinvtotal} = $form->{invtotal};
# note rows
$form->{rows} = max 2,
$form->numtextrows($form->{notes}, 26, 8),
$form->numtextrows($form->{intnotes}, 35, 8);
my ($rows, $introws);
if (($rows = $form->numtextrows($form->{notes}, 26, 8)) < 2) { $rows = 2; }
if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) { $introws = 2; }
$form->{rows} = ($rows > $introws) ? $rows : $introws;
# tax, total and subtotal calculations
my ($tax, $subtotal);
$form->{taxaccounts_array} = [ split / /, $form->{taxaccounts} ];
......
}
}
$form->{oldinvtotal} = $form->{invtotal};
# unfortunately locales doesn't support extended syntax
if ($form->{id}) {
my $follow_ups = FU->follow_ups('trans_id' => $form->{id});
......
}
}
# payments
# payments
my $totalpaid = 0;
$form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
$form->{paid_indices} = [ 1 .. $form->{paidaccounts} ];
for my $i (1 .. $form->{paidaccounts}) {
$form->{"selectAR_paid_$i"} = $form->{selectAR_paid};
$form->{"selectAR_paid_$i"} =~ s/option>\Q$form->{"AR_paid_$i"}\E/option selected>$form->{"AR_paid_$i"}/;
# format amounts
$totalpaid += $form->{"paid_$i"};
}
$form->{print_options} = print_options(inline => 1);
print $form->parse_html_template('is/form_footer');
# print $form->parse_html_template('is/_payments'); # parser
print $form->parse_html_template('is/form_footer', {
is_type_credit_note => ($form->{type} eq "credit_note"),
totalpaid => $totalpaid,
paid_missing => $form->{invtotal} - $totalpaid,
print_options => print_options(inline => 1),
show_storno => $form->{id} && !$form->{storno} && !IS->has_storno(\%myconfig, $form, "ar") && !$totalpaid,
show_delete => ($form->current_date(\%myconfig) eq $form->{gldate}),
});
##print $form->parse_html_template('is/_payments'); # parser
templates/webpages/is/_payments_de.html
<td>
<table width="100%">
<tr class="listheading">
[% IF is_credit_note %]
[% IF is_type_credit_note %]
<th colspan="6" class="listheading">Zahlungsausg?nge</th>
[% ELSE %]
<th colspan="6" class="listheading">Zahlungseing?nge</th>
templates/webpages/is/_payments_master.html
<td>
<table width="100%">
<tr class="listheading">
[% IF is_credit_note %]
[% IF is_type_credit_note %]
<th colspan="6" class="listheading"><translate>Payments</translate></th>
[% ELSE %]
<th colspan="6" class="listheading"><translate>Incoming Payments</translate></th>
templates/webpages/is/form_footer_de.html
<input class="submit" type="submit" name="action" value="Zahlung buchen">
<input class="submit" type="submit" name="action" value="Als Vorlage verwenden">
[% IF id && is_credit_note %]
[% IF id && is_type_credit_note %]
<input class="submit" type="submit" name="action" value="Gutschrift">
[% END %]
[% IF show_delete %]
templates/webpages/is/form_footer_master.html
<input class="submit" type="submit" name="action" value="<translate>Post Payment</translate>">
<input class="submit" type="submit" name="action" value="<translate>Use As Template</translate>">
[% IF id && is_credit_note %]
[% IF id && is_type_credit_note %]
<input class="submit" type="submit" name="action" value="<translate>Credit Note</translate>">
[% END %]
[% IF show_delete %]

Auch abrufbar als: Unified diff