From: Ivan Kohler Date: Sat, 1 Jun 2013 05:26:51 +0000 (-0700) Subject: add raw date to invoice templates, RT#21007 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=5c70d9af4f7b07ccd9b67c203abd23f25218293e add raw date to invoice templates, RT#21007 --- diff --git a/FS/FS/Template_Mixin.pm b/FS/FS/Template_Mixin.pm index be9d68a88..e4db2eeda 100644 --- a/FS/FS/Template_Mixin.pm +++ b/FS/FS/Template_Mixin.pm @@ -449,6 +449,7 @@ sub print_generic { 'invnum' => ( $params{'no_number'} ? '' : $self->invnum ), 'quotationnum' => $self->quotationnum, 'no_date' => $params{'no_date'}, + '_date' => ( $params{'no_date'} ? '' : $self->_date ), 'date' => ( $params{'no_date'} ? '' : time2str($date_format, $self->_date)