diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-04-06 12:11:55 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-04-06 12:11:55 -0700 |
commit | 38e4d0297f45363d7b95d503bd0892b994d67e4e (patch) | |
tree | 197dde2dc093493b726e90c43899a2e6f9b3d59d | |
parent | cd806feccf2a67aa73de7f38ca9d2bf8b129b0a1 (diff) |
add duedate_long to invoice template substitutions, RT#75066
-rw-r--r-- | FS/FS/Template_Mixin.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/Template_Mixin.pm b/FS/FS/Template_Mixin.pm index 0246c02d9..eb14db00b 100644 --- a/FS/FS/Template_Mixin.pm +++ b/FS/FS/Template_Mixin.pm @@ -566,6 +566,7 @@ sub print_generic { 'notice_name' => $notice_name, # escape? 'current_charges' => sprintf("%.2f", $self->charged), 'duedate' => $self->due_date2str('rdate'), #date_format? + 'duedate_long' => $self->due_date2str('long'), #customer info 'custnum' => $cust_main->display_custnum, |