blob: f044fc0d47efce75602c987ed8e735505f5da3fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<I><% mt('Payment attempt') |h %> <% $info |h %></I>
<%init>
my( $cust_pay_pending, %opt ) = @_;
my ($payby,$payinfo) = translate_payinfo($cust_pay_pending);
$payby = translate_payby($payby,$payinfo);
my $info = $payby ? "($payby$payinfo)" : '';
if ( $opt{'pkg-balances'} && $cust_pay_pending->pkgnum ) {
my $cust_pkg = qsearchs('cust_pkg', { 'pkgnum'=>$cust_pay_pending->pkgnum } );
$info .= ' for '. $cust_pkg->pkg_label_long;
}
$info .= ': '. $cust_pay_pending->statustext
if length($cust_pay_pending->statustext);
</%init>
|