diff options
| author | Christopher Burger <burgerc@freeside.biz> | 2018-10-24 08:35:18 -0400 |
|---|---|---|
| committer | Christopher Burger <burgerc@freeside.biz> | 2018-10-24 11:36:07 -0400 |
| commit | 917d2f19d6c4403e685810cc5354640c561aa0b7 (patch) | |
| tree | 695b7a8d76492d39cb8f0fa30da71f87be9f47c5 | |
| parent | c4257ec0783ad40d697c22590f804e7d8ce063cd (diff) | |
RT# 38844 - Added customer number and name to commission credit event
| -rw-r--r-- | FS/FS/part_event/Action/bill_sales_credit.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_event/Action/bill_sales_credit.pm b/FS/FS/part_event/Action/bill_sales_credit.pm index ab69375e2..e1474300a 100644 --- a/FS/FS/part_event/Action/bill_sales_credit.pm +++ b/FS/FS/part_event/Action/bill_sales_credit.pm @@ -72,7 +72,7 @@ sub do_action { my $reasonnum = $self->option('reasonnum'); - my $desc = 'from invoice #'. $cust_bill->display_invnum . + my $desc = ' for customer #'.$cust_main->display_custnum.': '.$cust_main->name.' from invoice #'. $cust_bill->display_invnum . ' ('. time2str($date_format, $cust_bill->_date) . ')'; # could also show custnum and pkgnums here? my $error = $sales_cust_main->credit( |
