summaryrefslogtreecommitdiff
path: root/FS/FS/quotation.pm
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2015-10-15 21:07:34 -0500
committerJonathan Prykop <jonathan@freeside.biz>2015-11-10 18:05:14 -0600
commit315f5c9e8d797046db1bc6f91ae9e9e365309514 (patch)
treea37b7cb6e955415f639a2c271f88a7be0fdd6d08 /FS/FS/quotation.pm
parent13988f1ad2e1d8ad878af12fbd455a8653309d15 (diff)
RT#34960: Quotations
Diffstat (limited to 'FS/FS/quotation.pm')
-rw-r--r--FS/FS/quotation.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/quotation.pm b/FS/FS/quotation.pm
index 5bda2d9..c400493 100644
--- a/FS/FS/quotation.pm
+++ b/FS/FS/quotation.pm
@@ -979,11 +979,12 @@ sub _items_pkg {
foreach my $quotation_pkg (@pkgs) {
my $part_pkg = $quotation_pkg->part_pkg;
+ my @details = $quotation_pkg->details;
my $setuprecur;
my $this_item = {
'pkgnum' => $quotation_pkg->quotationpkgnum,
'description' => $quotation_pkg->desc($locale),
- 'ext_description' => [],
+ 'ext_description' => \@details,
'quantity' => $quotation_pkg->quantity,
};
if ($freq eq '0') {