Lines 110-116
if ( $total_paid and $total_paid ne '0.00' ) {
Link Here
|
110 |
error_collected_less => 1, |
110 |
error_collected_less => 1, |
111 |
); |
111 |
); |
112 |
} |
112 |
} |
113 |
elsif ($total_paid > $total_due) { |
113 |
elsif ($total_paid >= $total_due and $total_collected ne $total_paid) { |
114 |
$template->param( |
114 |
$template->param( |
115 |
amount_paid => sprintf('%.2f', $total_due), |
115 |
amount_paid => sprintf('%.2f', $total_due), |
116 |
amount_collected => sprintf('%.2f', $total_collected), |
116 |
amount_collected => sprintf('%.2f', $total_collected), |
117 |
- |
|
|