diff options
| author | Mitch Jackson <mitch@freeside.biz> | 2018-06-14 14:46:38 -0500 |
|---|---|---|
| committer | Mitch Jackson <mitch@freeside.biz> | 2018-06-14 19:58:43 +0000 |
| commit | 32f42da513a6aec0cfbdaa2941bb1e97437a2822 (patch) | |
| tree | 10bc643ed24717a706eb376a1a4291a3be60fc3e | |
| parent | c7f2b1fd6325796123e2df32b3e27ff7ec466024 (diff) | |
RT# 80543 Crash creating new quotation
| -rw-r--r-- | FS/FS/Template_Mixin.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/FS/FS/Template_Mixin.pm b/FS/FS/Template_Mixin.pm index 3b8c9e136..37bc98923 100644 --- a/FS/FS/Template_Mixin.pm +++ b/FS/FS/Template_Mixin.pm @@ -3120,7 +3120,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) { |
