diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-04-06 12:11:51 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-04-06 12:11:51 -0700 |
commit | 5a0bcfa95772883f15f33ee55142a19d290b0925 (patch) | |
tree | 6d1c238f5381d922878a35d9937cb9fe9030a959 | |
parent | d68d551b33f972c792a3b47ec114ac91e03da26d (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 79f6813d8..837ef2e9f 100644 --- a/FS/FS/Template_Mixin.pm +++ b/FS/FS/Template_Mixin.pm @@ -563,6 +563,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, |