diff options
author | Ivan Kohler <ivan@freeside.biz> | 2018-01-24 17:49:00 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2018-01-24 17:49:00 -0800 |
commit | 66ce0d96048636c55a7f7e5b4965bbe68565bde2 (patch) | |
tree | af43b57192ff83de49e1b1e50c78a8b677a0318e | |
parent | f4209091a9f7120f1961ab2d2efd4d3a00b94268 (diff) |
fix billing error with intro rate packages when billing dates have been edited non-sensically (bill date set even though package is not billing yet), RT#78349
-rw-r--r-- | FS/FS/part_pkg/prorate_Mixin.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_pkg/prorate_Mixin.pm b/FS/FS/part_pkg/prorate_Mixin.pm index 1a7b1efc0..9e97cc593 100644 --- a/FS/FS/part_pkg/prorate_Mixin.pm +++ b/FS/FS/part_pkg/prorate_Mixin.pm @@ -205,7 +205,7 @@ sub prorate_setup { # For some reason (probably user override), the bill date has been set even # though the package isn't billing yet. Start billing as though that was the # start date. - $sdate = $cust_pkg->bill; + $$sdate = $cust_pkg->bill; $cust_pkg->setup($cust_pkg->bill); } # Now figure the start and end of the period that contains the start date. |