diff options
author | jeff <jeff> | 2007-06-26 15:36:54 +0000 |
---|---|---|
committer | jeff <jeff> | 2007-06-26 15:36:54 +0000 |
commit | 1e3b7968c86bf8c7e17e9044ed6d41a954b943a7 (patch) | |
tree | 0dbc1976a78752af013f412cbd0afa58227fafec /httemplate/edit/REAL_cust_pkg.cgi | |
parent | 9ae653f3798685d160b7f9bc44d8b62430afd6d8 (diff) |
suspend later just like expire (#1487)
Diffstat (limited to 'httemplate/edit/REAL_cust_pkg.cgi')
-rwxr-xr-x | httemplate/edit/REAL_cust_pkg.cgi | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/httemplate/edit/REAL_cust_pkg.cgi b/httemplate/edit/REAL_cust_pkg.cgi index 69bbb9b22..7a9e030e9 100755 --- a/httemplate/edit/REAL_cust_pkg.cgi +++ b/httemplate/edit/REAL_cust_pkg.cgi @@ -50,8 +50,9 @@ % % %#print info -%my($susp,$cancel,$expire)=( +%my($susp,$adjourn,$cancel,$expire)=( % $cust_pkg->getfield('susp'), +% $cust_pkg->getfield('adjourn'), % $cust_pkg->getfield('cancel'), % $cust_pkg->getfield('expire'), %); @@ -134,6 +135,14 @@ <IMG SRC="../images/calendar.png" ID="bill_button" STYLE="cursor: pointer" TITLE="Select date"> </TD> </TR> + <TR> + <TD ALIGN="right">Adjournment date</TD> + <TD> + <INPUT TYPE="text" NAME="adjourn" SIZE=32 ID="adjourn_text" VALUE="<% ( $adjourn ? time2str($format, $adjourn) : "" ) %>"> + <IMG SRC="../images/calendar.png" ID="adjourn_button" STYLE="cursor: pointer" TITLE="Select date"> + <BR><FONT SIZE=-1>(will <b>suspend</b> this package when the date is reached)</FONT> + </TD> + </TR> % if ( $susp ) { <TR> |