diff options
| author | Mark Wells <mark@freeside.biz> | 2013-03-11 21:16:32 -0700 |
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2013-03-11 21:16:32 -0700 |
| commit | fc3df6cd7abe065e4db7e4fe47015619080c7ec1 (patch) | |
| tree | 12a0af997fe4048b6b0c36da1a6030e340ba0c0c | |
| parent | 5a1b5212056dc5f4f497aae8339bed8dde50cb8c (diff) | |
adjust IPifony download to show quantity/unit price in package desc, #18333
| -rwxr-xr-x | FS/bin/freeside-ipifony-download | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/bin/freeside-ipifony-download b/FS/bin/freeside-ipifony-download index e2d7e972d..36d3e8e75 100755 --- a/FS/bin/freeside-ipifony-download +++ b/FS/bin/freeside-ipifony-download @@ -188,7 +188,8 @@ FILE: foreach my $filename (@$files) { amount => $amount, quantity => $hash{quantity}, start_date => $cust_main->next_bill_date, - pkg => $hash{date_desc}, + pkg => $hash{date_desc} . + ' (' . $hash{quantity} . ' @ $' . $hash{unit_price} . ' ea)', taxclass => $TAXCLASSES{ $hash{taxclass} }, ); if (my $classname = $hash{classname}) { |
