diff options
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/phone_avail.pm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/FS/FS/phone_avail.pm b/FS/FS/phone_avail.pm index 967d7179e..92286abb7 100644 --- a/FS/FS/phone_avail.pm +++ b/FS/FS/phone_avail.pm @@ -162,6 +162,17 @@ sub cust_svc { qsearchs('cust_svc', { 'svcnum' => $self->svcnum }); } +=item part_export + +=cut + +sub part_export { + my $self = shift; + return '' unless $self->exportnum; + qsearchs('part_export', { 'exportnum' => $self->exportnum }); +} + + sub process_batch_import { my $job = shift; |