diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-01-07 20:41:31 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-01-07 20:41:31 -0800 |
commit | 4386d67b6b49d2915be38ccfefae474e95849611 (patch) | |
tree | e58c3bb957e88a1dcbf315b37658141290b41641 | |
parent | 2db2d08f0196788b8ca4ae975b89c5acc001cde5 (diff) |
fix v3 existing customer quotation order, RT#31963
-rw-r--r-- | FS/FS/quotation.pm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/FS/FS/quotation.pm b/FS/FS/quotation.pm index 401711b4a..19be00670 100644 --- a/FS/FS/quotation.pm +++ b/FS/FS/quotation.pm @@ -288,6 +288,15 @@ sub order { } +=item quotation_pkg + +=cut + +sub quotation_pkg { + my $self = shift; + qsearch('quotation_pkg', { 'quotationnum' => $self->quotationnum } ); +} + =back =head1 CLASS METHODS |