X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep304.php;h=7dbe339afbeef53b8743aae6f60130e9c96dbcad;hb=80dd97a37f674cc3691fa04af4c29607067566b2;hp=40b875844a912dfe883d8c92e640ce0d8b5655d2;hpb=5e645e8c7492625677178e8b52da9456299a7411;p=fa-stable.git diff --git a/reporting/rep304.php b/reporting/rep304.php index 40b87584..7dbe339a 100644 --- a/reporting/rep304.php +++ b/reporting/rep304.php @@ -90,21 +90,21 @@ function print_inventory_sales() $dec = user_price_dec(); - if ($category == reserved_words::get_all_numeric()) + if ($category == ALL_NUMERIC) $category = 0; if ($category == 0) $cat = _('All'); else $cat = get_category_name($category); - if ($location == reserved_words::get_all()) + if ($location == ALL_TEXT) $location = 'all'; if ($location == 'all') $loc = _('All'); else $loc = get_location_name($location); - if ($fromcust == reserved_words::get_all_numeric()) + if ($fromcust == ALL_NUMERIC) $fromc = _('All'); else $fromc = get_customer_name($fromcust); @@ -112,7 +112,7 @@ function print_inventory_sales() $cols = array(0, 75, 175, 250, 300, 375, 450, 515); $headers = array(_('Category'), _('Description'), _('Customer'), _('Qty'), _('Sales'), _('Cost'), _('Contribution')); - if ($fromcust != reserved_words::get_all_numeric()) + if ($fromcust != ALL_NUMERIC) $headers[2] = ''; $aligns = array('left', 'left', 'left', 'right', 'right', 'right', 'right'); @@ -163,7 +163,7 @@ function print_inventory_sales() $rep->NewLine(); $rep->fontsize -= 2; $rep->TextCol(0, 1, $trans['stock_id']); - if ($fromcust == reserved_words::get_all_numeric()) + if ($fromcust == ALL_NUMERIC) { $rep->TextCol(1, 2, $trans['description']); $rep->TextCol(2, 3, $trans['debtor_name']);