From: Joe Hunt Date: Mon, 25 May 2009 16:02:30 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=dc53c11cac1408be3855cadd15f289768a763629;p=textcart.git *** empty log message *** --- diff --git a/reporting/rep303.php b/reporting/rep303.php index a1f70d8..4b87d6b 100644 --- a/reporting/rep303.php +++ b/reporting/rep303.php @@ -89,19 +89,25 @@ function print_stock_check() else $loc = $location; if ($shortage) + { $short = _('Yes'); - else + $available = _('Shortage'); + } + else + { $short = _('No'); + $available = _('Available'); + } if ($check) { $cols = array(0, 100, 250, 295, 345, 390, 445, 515); - $headers = array(_('Stock ID'), _('Description'), _('Quantity'), _('Check'), _('Demand'), _('Available'), _('On Order')); + $headers = array(_('Stock ID'), _('Description'), _('Quantity'), _('Check'), _('Demand'), $available, _('On Order')); $aligns = array('left', 'left', 'right', 'right', 'right', 'right', 'right'); } else { $cols = array(0, 100, 250, 315, 380, 445, 515); - $headers = array(_('Stock ID'), _('Description'), _('Quantity'), _('Demand'), _('Available'), _('On Order')); + $headers = array(_('Stock ID'), _('Description'), _('Quantity'), _('Demand'), $available, _('On Order')); $aligns = array('left', 'left', 'right', 'right', 'right', 'right'); }