blob: f14713cda12c56344c9d78cd73d75fc620acc417 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<% $refund %>
(<% "$payby$payinfo" %>)
<% "$view$delete" %>
<%init>
my( $cust_refund, %opt ) = @_;
my $curuser = $FS::CurrentUser::CurrentUser;
my $payby = $cust_refund->payby;
my $payinfo = $payby eq 'CARD'
? $cust_refund->paymask
: $cust_refund->payinfo;
$payby = translate_payby_refund($payby,$payinfo);
my $refund = emt("Refund by [_1]",$cust_refund->otaker);
$refund = '<B><FONT COLOR="#FF0000">'
. emt("Unapplied Refund by [_1]",$cust_refund->otaker)
. '</FONT></B>'
if $cust_refund->unapplied > 0;
my $view =
' ('. include('/elements/popup_link.html',
'label' => emt('view receipt'),
'action' => "${p}view/cust_refund.html?link=popup;".
'refundnum='. $cust_refund->refundnum,
'actionlabel' => emt('Payment Receipt'),
).
')';
my $delete = '';
$delete = areyousure_link("${p}misc/delete-cust_refund.cgi?".$cust_refund->refundnum,
emt('Are you sure you want to delete this refund?'),
emt('Delete this refund from the database completely - not recommended'),
emt('delete')
)
if ( $cust_refund->closed !~ /^Y/i && $opt{'deleterefunds'}
&& $curuser->access_right('Delete refund') );
</%init>
|