diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-12-04 14:47:49 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-12-04 14:47:49 -0800 |
commit | 7dd8215a91ca6ca4a9988a0108647ada7f2a11d8 (patch) | |
tree | 0a00d42d12a5e606995374ebe0f0464856fbd373 /httemplate/edit/cust_credit.cgi | |
parent | 61e2f89c40a50478d12b4818400caff32d20f61a (diff) |
backdate credits, RT#32320
Diffstat (limited to 'httemplate/edit/cust_credit.cgi')
-rwxr-xr-x | httemplate/edit/cust_credit.cgi | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/httemplate/edit/cust_credit.cgi b/httemplate/edit/cust_credit.cgi index 29801efef..18416c5fb 100755 --- a/httemplate/edit/cust_credit.cgi +++ b/httemplate/edit/cust_credit.cgi @@ -6,15 +6,25 @@ <INPUT TYPE="hidden" NAME="crednum" VALUE=""> <INPUT TYPE="hidden" NAME="custnum" VALUE="<% $custnum |h %>"> <INPUT TYPE="hidden" NAME="paybatch" VALUE=""> -<INPUT TYPE="hidden" NAME="_date" VALUE="<% $_date %>"> <INPUT TYPE="hidden" NAME="credited" VALUE=""> <% ntable("#cccccc", 2) %> - <TR> - <TD ALIGN="right"><% mt('Date') |h %></TD> - <TD BGCOLOR="#ffffff"><% time2str($date_format, $_date) %></TD> - </TR> +% my %date_args = ( +% 'name' => '_date', +% 'label' => emt('Date'), +% 'value' => $_date, +% 'format' => $date_format. ' %r', +% ); +% if ( $FS::CurrentUser::CurrentUser->access_right('Backdate credit') ) { + + <& /elements/tr-input-date-field.html, \%date_args &> + +% } else { + + <& /elements/tr-fixed-date.html, \%date_args &> + +% } <TR> <TD ALIGN="right"><% mt('Amount') |h %></TD> |