summaryrefslogtreecommitdiff
path: root/FS/FS/Template_Mixin.pm
diff options
context:
space:
mode:
authorMitch Jackson <mitch@freeside.biz>2018-06-14 14:46:38 -0500
committerMitch Jackson <mitch@freeside.biz>2018-06-14 14:46:38 -0500
commit965826f80175e6e09b851bdd119e955b6c3783d4 (patch)
tree8d1002401fac986e763967435f851d2b50d04a17 /FS/FS/Template_Mixin.pm
parent381992561d7b1a88e05d49d3e474a2fad25873c7 (diff)
RT# 80543 Crash creating new quotation
Diffstat (limited to 'FS/FS/Template_Mixin.pm')
-rw-r--r--FS/FS/Template_Mixin.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/FS/FS/Template_Mixin.pm b/FS/FS/Template_Mixin.pm
index b9514fe..578e5a1 100644
--- a/FS/FS/Template_Mixin.pm
+++ b/FS/FS/Template_Mixin.pm
@@ -3139,7 +3139,9 @@ sub _items_fee {
my @cust_bill_pkg = grep { $_->feepart } $self->cust_bill_pkg;
my $escape_function = $options{escape_function};
- my $locale = $self->cust_main->locale;
+ my $locale = $self->quotationnum
+ ? $self->prospect_main->locale
+ : $self->cust_main->locale;
my @items;
foreach my $cust_bill_pkg (@cust_bill_pkg) {