Use booking_payment_complete flag in report
This commit is contained in:
@@ -148,7 +148,8 @@ function booking_report_summary() {
|
||||
$this_row[] = t('!email', array('!email' => $person->booking_email));
|
||||
$this_row[] = t('!payment', array('!payment' => $person->booking_amount_paid));
|
||||
$this_row[] = t('!payment', array('!payment' => $amount_owing == 0 ? $person->booking_total_pay_reqd : _booking_total_due($person)));
|
||||
$this_row[] = t('!fullypaid', array('!fullypaid' => $amount_owing == 0 ? 'Yes' : 'No'));
|
||||
//$this_row[] = t('!fullypaid', array('!fullypaid' => $amount_owing == 0 ? 'Yes' : 'No'));
|
||||
$this_row[] = t('!fullypaid', array('!fullypaid' => $person->booking_payment_complete == 'Y' ? 'Yes' : 'No'));
|
||||
$this_row[] = t('!reqd', array('!reqd' => $person->booking_refund_processed == 'Y' ? 'Yes' : 'No'));
|
||||
$this_row[] = t('!payment', array('!payment' => $person->booking_refund_due));
|
||||
$this_row[] = t($person->booking_welfare_required == 'Y' ? 'Yes' : 'No');
|
||||
|
Reference in New Issue
Block a user