mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-06 21:06:04 +00:00
Merge pull request #661 in FS/freeswitch from ~ANDEE/freeswitch:bugfix/FS-8424-commit-8f343939dc7f63f6a1686941e7d34e1cbf27a1c3 to master
* commit '92ac448c951e575a8b9b417f5e8e5ed05341b586': FS-8424 fix for default rounding values
This commit is contained in:
commit
caff4d8b4e
@ -457,7 +457,7 @@ static switch_status_t do_billing(switch_core_session_t *session)
|
|||||||
double lowbal_amt = globals.lowbal_amt;
|
double lowbal_amt = globals.lowbal_amt;
|
||||||
double balance;
|
double balance;
|
||||||
double minimum_charge = 0;
|
double minimum_charge = 0;
|
||||||
double rounding_factor = 1;
|
double rounding_factor = 0;
|
||||||
double excess = 0;
|
double excess = 0;
|
||||||
double rounded_billed = 0;
|
double rounded_billed = 0;
|
||||||
int billsecs = 0;
|
int billsecs = 0;
|
||||||
@ -609,7 +609,7 @@ static switch_status_t do_billing(switch_core_session_t *session)
|
|||||||
/* we're going to make an assumption that final billing is done here. So we'll see how this goes. */
|
/* we're going to make an assumption that final billing is done here. So we'll see how this goes. */
|
||||||
/* round total billed up as required */
|
/* round total billed up as required */
|
||||||
|
|
||||||
rounded_billed = ceilf((float)(nibble_data->total * rounding_factor)) / rounding_factor;
|
rounded_billed = rounding_factor > 0 ? ceilf((float)(nibble_data->total * rounding_factor)) / rounding_factor : nibble_data->total;
|
||||||
|
|
||||||
if (rounded_billed < minimum_charge)
|
if (rounded_billed < minimum_charge)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user