Yes, you are right. There is a bug in line 173 of sales/inquiry/customer_inquiry.php which is:
if ($_POST['customer_id'] != ALL_TEXT && $_POST['filterType'] == '2')
and it should be:
if ($_POST['customer_id'] != "" && $_POST['customer_id'] != ALL_TEXT)
There is no use in checking for filterType=2 (Unsettled Transactions) to deny display of summary info of customer. Reverting it to the sane code as in FA 2.3 rectifies it as above.
Yes the same exists in line 156 in purchasing/inquiry/supplier_inquiry.php:
if ($_POST['supplier_id'] != ALL_TEXT && $_POST['filterType'] == '2')
and it should be:
if (($_POST['supplier_id'] != "") && ($_POST['supplier_id'] != ALL_TEXT))
@joe: can commit it.
Post's attachmentsCust_Supp_Inquiry_Fixes.zip 61.5 kb, 3 downloads since 2017-11-01
You don't have the permssions to download the attachments of this post.