diff options
author | Christopher Burger <burgerc@freeside.biz> | 2018-03-29 11:54:44 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2018-03-29 13:49:42 -0400 |
commit | 152303bf6bd828d3554c3df8d8348aace7af1fec (patch) | |
tree | 77096a95b095149675493833c7a5484415f0423f | |
parent | 536d7450419afc3dc38fa5de273d5984ac006e76 (diff) |
RT# 78356 - fixed error where no export existed.
-rw-r--r-- | FS/FS/part_export/saisei.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_export/saisei.pm b/FS/FS/part_export/saisei.pm index 1c95081bd..922a347b6 100644 --- a/FS/FS/part_export/saisei.pm +++ b/FS/FS/part_export/saisei.pm @@ -799,7 +799,7 @@ sub export_provisioned_services { 'table' => 'cust_svc', 'addl_from' => 'LEFT JOIN svc_broadband USING ( svcnum ) ', 'extra_sql' => " WHERE svcpart in ('".$parts."')", - }); + }) unless !$parts; my $svc_count = scalar @svcs; |