summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorivan <ivan>2004-12-12 08:34:36 +0000
committerivan <ivan>2004-12-12 08:34:36 +0000
commit3beb53d9d87b5667c306dc4abd6cd6c0165ad852 (patch)
tree9d427e6932be5d0c2a31538a734eebd16931a561 /FS
parent53584ad7f33910f2e33764d22745d48e76f12a8c (diff)
fix customer status display for some cases with suspended accounts
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/cust_main.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm
index 27f97f30e..34ca9d4af 100644
--- a/FS/FS/cust_main.pm
+++ b/FS/FS/cust_main.pm
@@ -2917,6 +2917,7 @@ sub susp_sql { "
AND 0 = ( SELECT COUNT(*) FROM cust_pkg
WHERE cust_pkg.custnum = cust_main.custnum
AND ( cust_pkg.susp IS NULL OR cust_pkg.susp = 0 )
+ AND ( cust_pkg.cancel IS NULL OR cust_pkg.cancel = 0 )
)
"; }