diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-06-15 23:37:48 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-06-15 23:37:48 -0500 |
commit | 8f82d54c3b3bd30c8f8451ea24bcdab70ff37327 (patch) | |
tree | 20a6265c2cd7b6ec40d9aa0ddcde8ec22a1c8cde /httemplate/view | |
parent | d2e0e83c3cb0caf1d1a958eee1717934e8b5176f (diff) |
RT#30705 Change contract end date when changing packages
Diffstat (limited to 'httemplate/view')
-rw-r--r-- | httemplate/view/cust_main/packages/status.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/httemplate/view/cust_main/packages/status.html b/httemplate/view/cust_main/packages/status.html index 8057d8c3a..81156c927 100644 --- a/httemplate/view/cust_main/packages/status.html +++ b/httemplate/view/cust_main/packages/status.html @@ -417,6 +417,10 @@ sub pkg_status_row_expire { } elsif ( $cust_pkg->change_to_pkg->locationnum != $cust_pkg->locationnum ) { $title = mt('Will <b>change location</b> on'); + } elsif (( $cust_pkg->change_to_pkg->quantity != $cust_pkg->quantity ) || + ( $cust_pkg->change_to_pkg->contract_end != $cust_pkg->contract_end )) + { + $title = mt('Will change on'); } else { # FS::cust_pkg->change_later should have prevented this, but # just so that we can display _something_ |