don't link to deleted attachments if there aren't any
authorIvan Kohler <ivan@freeside.biz>
Fri, 18 Nov 2016 17:24:36 +0000 (09:24 -0800)
committerIvan Kohler <ivan@freeside.biz>
Fri, 18 Nov 2016 17:24:36 +0000 (09:24 -0800)
FS/FS/cust_main.pm

index 55a31f8..747776b 100644 (file)
@@ -3406,6 +3406,22 @@ sub charge_postal_fee {
   $error ? $error : $cust_pkg;
 }
 
+=item num_cust_attachment_deleted
+
+Returns the number of deleted attachments for this customer (see
+L<FS::num_cust_attachment>).
+
+=cut
+
+sub num_cust_attachments_deleted {
+  my $self = shift;
+  $self->scalar_sql(
+    " SELECT COUNT(*) FROM cust_attachment ".
+      " WHERE custnum = ? AND disabled IS NOT NULL AND disabled > 0",
+    $self->custnum
+  );
+}
+
 =item cust_bill [ OPTION => VALUE... | EXTRA_QSEARCH_PARAMS_HASHREF ]
 
 Returns all the invoices (see L<FS::cust_bill>) for this customer.